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

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

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0f;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.glow-bg {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    z-index: 0;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.logo-container {
    text-align: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.logo-bg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 50%;
    border: 2px solid rgba(99, 102, 241, 0.4);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.2), inset 0 0 20px rgba(99, 102, 241, 0.1);
    animation: logoGlow 3s ease-in-out infinite;
}

.logo {
    max-width: 90px;
    height: auto;
}

@keyframes logoGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(99, 102, 241, 0.2), inset 0 0 20px rgba(99, 102, 241, 0.1); }
    50% { box-shadow: 0 0 50px rgba(6, 182, 212, 0.4), inset 0 0 30px rgba(6, 182, 212, 0.15); }
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #a1a1aa;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #6366f1;
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7); }
    50% { opacity: 0.8; box-shadow: 0 0 0 10px rgba(99, 102, 241, 0); }
}

.main-title {
    font-size: clamp(1.5rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, #6366f1, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: clamp(0.875rem, 2vw, 1.1rem);
    color: #a1a1aa;
    font-weight: 300;
    max-width: 500px;
}

.progress-section {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #6366f1, #06b6d4);
    border-radius: 10px;
    transition: width 1.5s ease-out;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
}

.progress-text {
    font-size: 14px;
    color: #71717a;
    font-weight: 500;
}

.countdown {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 20px;
    border-radius: 12px;
    min-width: 75px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.4);
}

.number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #a1a1aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #71717a;
    font-weight: 500;
}

.footer {
    margin-top: auto;
    text-align: center;
    flex-shrink: 0;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin-bottom: 20px;
}

.contact-info {
    margin-bottom: 16px;
}

.get-in-touch {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #71717a;
    margin-bottom: 20px;
    font-weight: 500;
}

.contact-links {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a1a1aa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #6366f1;
}

.contact-link .icon {
    font-size: 18px;
}

.copyright {
    font-size: 13px;
    color: #52525b;
}

.copyright-link {
    color: #71717a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright-link:hover {
    color: #6366f1;
}

@media (max-width: 600px) {
    .container {
        padding: 16px;
    }
    
    .logo-bg {
        width: 100px;
        height: 100px;
    }
    
    .logo {
        max-width: 60px;
    }
    
    .main-title {
        font-size: 1.5rem;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .countdown-item {
        padding: 10px 14px;
        min-width: 65px;
    }
    
    .number {
        font-size: 1.5rem;
    }
    
    .contact-links {
        flex-direction: column;
        gap: 12px;
    }
}
