@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #f0f9ff;
    --primary-dark: #075985;
    --accent: #0ea5e9;
    --accent-glow: rgba(14, 165, 233, 0.2);
    --gold: #f59e0b;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-blur: blur(20px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--primary);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Elements */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
}

.ocean-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.05) 0%, transparent 100%);
}

/* Premium Bright Waves */
.waves {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
    z-index: 3;
    pointer-events: none;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background-size: 50% 100%;
    filter: blur(1px);
}

.wave-1 {
    animation: waveMove 20s linear infinite;
    opacity: 0.4;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path fill="%237dd3fc" d="M0,60 C150,90 350,30 600,60 C850,90 1050,30 1200,60 L1200,120 L0,120 Z"/></svg>');
}

.wave-2 {
    animation: waveMove 25s linear infinite reverse;
    opacity: 0.3;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path fill="%23bae6fd" d="M0,60 C150,30 350,90 600,60 C850,30 1050,90 1200,60 L1200,120 L0,120 Z"/></svg>');
}

@keyframes waveMove {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Hero Section */
.hero {
    position: relative;
    z-index: 10;
    padding: 2.5rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.glass-card {
    background: var(--glass);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 4.5rem 3rem;
    max-width: 650px;
    width: 100%;
    text-align: center;
    box-shadow: 0 30px 60px -15px rgba(14, 165, 233, 0.1), 0 10px 20px -5px rgba(0, 0, 0, 0.05);
    animation: cardAppear 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes cardAppear {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.logo-container {
    margin-bottom: 2.5rem;
}

.logo-container img {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.hero-title span {
    display: block;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 0.75rem;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto 3.5rem;
    font-weight: 400;
}

/* Coming Soon Indicator */
.coming-soon-indicator {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: white;
    padding: 12px 28px;
    border-radius: 100px;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.1);
}

.coming-soon-indicator span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-dark);
    letter-spacing: 0.5px;
}

.pulse {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.5);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 12px rgba(14, 165, 233, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(14, 165, 233, 0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .glass-card {
        padding: 3.5rem 1.5rem;
        border-radius: 32px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
}
