* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #000000;
    color: #ffffff;
    overflow: hidden;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile */
    width: 100vw;
    position: relative;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile */
    width: 100vw;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    min-height: 100dvh;
}

.content {
    text-align: center;
    z-index: 10;
    position: relative;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Countdown Timer */
.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
    filter: blur(10px);
}

.countdown-container.animate {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.countdown-number {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    font-family: 'Space Grotesk', monospace;
    color: #2596be;
    letter-spacing: 0.05em;
    text-shadow: 0 0 20px rgba(37, 150, 190, 0.5);
    min-width: 3ch;
    text-align: center;
}

.countdown-label {
    font-size: clamp(0.5rem, 1vw, 0.7rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #2596be;
    opacity: 0.7;
    text-shadow: 0 0 10px rgba(37, 150, 190, 0.3);
}

.countdown-separator {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    color: #2596be;
    opacity: 0.5;
    text-shadow: 0 0 15px rgba(37, 150, 190, 0.4);
    margin-bottom: 1.5rem;
}

.header {
    font-size: clamp(1.8rem, 4.5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #2596be;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
    text-shadow: 0 0 40px rgba(37, 150, 190, 0.3);
    filter: blur(10px);
}

.header.animate {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.subtext {
    font-size: clamp(0.75rem, 1.5vw, 1.1rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #2596be;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.5s ease-out 0.3s, transform 1.5s ease-out 0.3s;
    filter: blur(10px);
    text-shadow: 0 0 20px rgba(37, 150, 190, 0.5);
}

.subtext.animate {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 150, 190, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 5;
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Smoke container */
.smoke-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Smoke particles */
.smoke {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 150, 190, 0.4) 0%, rgba(37, 150, 190, 0.1) 50%, transparent 100%);
    filter: blur(40px);
    opacity: 0;
}

.smoke-1 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: 10%;
    animation: smokeFloat1 25s ease-in-out infinite;
}

.smoke-2 {
    width: 250px;
    height: 250px;
    bottom: -125px;
    left: 30%;
    animation: smokeFloat2 30s ease-in-out infinite;
    animation-delay: -5s;
}

.smoke-3 {
    width: 350px;
    height: 350px;
    bottom: -175px;
    left: 50%;
    animation: smokeFloat3 28s ease-in-out infinite;
    animation-delay: -10s;
}

.smoke-4 {
    width: 280px;
    height: 280px;
    bottom: -140px;
    left: 70%;
    animation: smokeFloat4 32s ease-in-out infinite;
    animation-delay: -15s;
}

.smoke-5 {
    width: 320px;
    height: 320px;
    bottom: -160px;
    left: 20%;
    animation: smokeFloat5 27s ease-in-out infinite;
    animation-delay: -8s;
}

.smoke-6 {
    width: 240px;
    height: 240px;
    bottom: -120px;
    left: 60%;
    animation: smokeFloat6 29s ease-in-out infinite;
    animation-delay: -12s;
}

.smoke-7 {
    width: 290px;
    height: 290px;
    bottom: -145px;
    left: 40%;
    animation: smokeFloat7 31s ease-in-out infinite;
    animation-delay: -18s;
}

.smoke-8 {
    width: 260px;
    height: 260px;
    bottom: -130px;
    left: 80%;
    animation: smokeFloat8 26s ease-in-out infinite;
    animation-delay: -22s;
}

/* Smoke animations - different paths for each smoke */
@keyframes smokeFloat1 {
    0% {
        transform: translate(0, 0) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translate(150px, -400px) scale(1.2);
        opacity: 0.8;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translate(300px, -800px) scale(1.5);
        opacity: 0;
    }
}

@keyframes smokeFloat2 {
    0% {
        transform: translate(0, 0) scale(0.9);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    50% {
        transform: translate(-100px, -450px) scale(1.3);
        opacity: 0.7;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translate(-200px, -850px) scale(1.6);
        opacity: 0;
    }
}

@keyframes smokeFloat3 {
    0% {
        transform: translate(0, 0) scale(0.7);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    50% {
        transform: translate(200px, -500px) scale(1.4);
        opacity: 0.9;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translate(400px, -900px) scale(1.7);
        opacity: 0;
    }
}

@keyframes smokeFloat4 {
    0% {
        transform: translate(0, 0) scale(0.85);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translate(-150px, -420px) scale(1.25);
        opacity: 0.8;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translate(-300px, -820px) scale(1.55);
        opacity: 0;
    }
}

@keyframes smokeFloat5 {
    0% {
        transform: translate(0, 0) scale(0.75);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    50% {
        transform: translate(120px, -480px) scale(1.35);
        opacity: 0.75;
    }
    90% {
        opacity: 0.35;
    }
    100% {
        transform: translate(250px, -880px) scale(1.65);
        opacity: 0;
    }
}

@keyframes smokeFloat6 {
    0% {
        transform: translate(0, 0) scale(0.9);
        opacity: 0;
    }
    10% {
        opacity: 0.65;
    }
    50% {
        transform: translate(-120px, -460px) scale(1.3);
        opacity: 0.85;
    }
    90% {
        opacity: 0.45;
    }
    100% {
        transform: translate(-250px, -860px) scale(1.6);
        opacity: 0;
    }
}

@keyframes smokeFloat7 {
    0% {
        transform: translate(0, 0) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 0.55;
    }
    50% {
        transform: translate(180px, -440px) scale(1.25);
        opacity: 0.75;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translate(350px, -840px) scale(1.55);
        opacity: 0;
    }
}

@keyframes smokeFloat8 {
    0% {
        transform: translate(0, 0) scale(0.85);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translate(-180px, -430px) scale(1.3);
        opacity: 0.8;
    }
    90% {
        opacity: 0.45;
    }
    100% {
        transform: translate(-350px, -830px) scale(1.6);
        opacity: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        align-items: center;
        justify-content: center;
    }
    
    .content {
        padding: 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    .countdown-container {
        gap: 0.4rem;
        margin-bottom: 1.5rem;
    }
    
    .countdown-number {
        font-size: clamp(1.2rem, 5vw, 1.8rem);
    }
    
    .countdown-label {
        font-size: clamp(0.45rem, 2vw, 0.6rem);
    }
    
    .countdown-separator {
        font-size: clamp(1.2rem, 5vw, 1.8rem);
        margin-bottom: 1rem;
    }
    
    .header {
        font-size: clamp(1.5rem, 8vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .subtext {
        font-size: clamp(0.7rem, 3vw, 1rem);
    }
    
    .glow-effect {
        width: 400px;
        height: 400px;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .content {
        padding: 0.5rem;
    }
    
    .countdown-container {
        gap: 0.3rem;
        margin-bottom: 1rem;
    }
    
    .countdown-number {
        font-size: clamp(1rem, 6vw, 1.5rem);
    }
    
    .countdown-label {
        font-size: clamp(0.4rem, 2.5vw, 0.55rem);
    }
    
    .countdown-separator {
        font-size: clamp(1rem, 6vw, 1.5rem);
        margin-bottom: 0.8rem;
    }
    
    .header {
        font-size: clamp(1.3rem, 9vw, 2rem);
        margin-bottom: 0.8rem;
    }
    
    .subtext {
        font-size: clamp(0.65rem, 3.5vw, 0.9rem);
    }
}

