:root {
    --bg-dark: #020b18;
    --primary: #00d1ff;
    --primary-glow: rgba(0, 209, 255, 0.4);
    --secondary: #0072ff;
    --text-white: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.7);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #0a2d5e 0%, #020b18 100%);
    z-index: -1;
}

.background-overlay::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image: url("https://www.transparenttextures.com/patterns/asfalt-dark.png");
    opacity: 0.1;
    z-index: -1;
}

.container {
    max-width: 1000px;
    width: 90%;
    text-align: center;
    padding: 3rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.logo {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 0 20px var(--primary-glow));
    animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 15px var(--primary-glow)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 30px var(--primary-glow)); }
}

.title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.accent {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 20px rgba(0, 209, 255, 0.2);
}

.subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: var(--text-dim);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.time-block {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 24px;
    min-width: 120px;
    transition: all 0.3s ease;
}

.time-block:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--primary);
}

.number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
}

.label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
    margin-top: 0.5rem;
}

.newsletter p {
    color: var(--text-dim);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

@media (max-width: 600px) {
    .container {
        padding: 2rem 1rem;
        border-radius: 30px;
    }
    
    .countdown {
        gap: 0.75rem;
    }
    
    .time-block {
        min-width: 90px;
        padding: 1rem;
    }
    
    .number {
        font-size: 2rem;
    }
}
