/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    overflow-x: hidden;
}

.container {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #1e293b 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Animated background elements */
.background-elements {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    z-index: 1;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse 4s ease-in-out infinite;
}

.bg-circle-1 {
    top: 80px;
    left: 80px;
    width: 288px;
    height: 288px;
    background: #60a5fa;
}

.bg-circle-2 {
    bottom: 80px;
    right: 80px;
    width: 384px;
    height: 384px;
    background: #22d3ee;
    animation-delay: 1s;
}

.bg-circle-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background: #3b82f6;
    animation-delay: 0.5s;
}

/* Grid pattern overlay */
.grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: 
        linear-gradient(90deg, #60a5fa 1px, transparent 1px),
        linear-gradient(0deg, #60a5fa 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 2;
}

/* Main content */
.main-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    width: 100%;
}

/* Security icons */
.security-icons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
}

.icon-container {
    padding: 16px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(96, 165, 250, 0.2);
    animation: bounce 2s ease-in-out infinite;
}

.icon-bounce-1 {
    animation-delay: 0s;
}

.icon-bounce-2 {
    animation-delay: 0.2s;
}

.icon-bounce-3 {
    animation-delay: 0.4s;
}

.icon {
    width: 32px;
    height: 32px;
    color: #60a5fa;
}

/* Typography */
.main-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #22d3ee 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.subtitle-text {
    color: #e5e7eb;
}

.description {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Coming soon card */
.coming-soon-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(34, 211, 238, 0.1) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 16px;
    padding: 48px;
    margin-bottom: 64px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.coming-soon-description {
    font-size: 1.125rem;
    color: #d1d5db;
    line-height: 1.6;
}

/* Features grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 64px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(96, 165, 250, 0.1);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(96, 165, 250, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(34, 211, 238, 0.2) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: #60a5fa;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.feature-card p {
    color: #d1d5db;
    line-height: 1.6;
}

/* Contact info */
.contact-info {
    text-align: center;
    margin-top: 48px;
}

.contact-text {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 24px;
}

.contact-details {
    display: flex;
    justify-content: center;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #60a5fa;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #22d3ee;
    transform: translateY(-2px);
}

.contact-icon {
    width: 20px;
    height: 20px;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.15;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 16px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .coming-soon-title {
        font-size: 2rem;
    }
    
    .coming-soon-card {
        padding: 32px 24px;
    }
    
    .security-icons {
        gap: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .coming-soon-title {
        font-size: 1.75rem;
    }
    
    .description {
        font-size: 1.125rem;
    }
    
    .security-icons {
        gap: 12px;
    }
    
    .icon-container {
        padding: 12px;
    }
    
    .icon {
        width: 24px;
        height: 24px;
    }
}