@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', monospace;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
    width: 100%;
}

.title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(59, 130, 246, 0.5); }
    to { text-shadow: 0 0 30px rgba(59, 130, 246, 0.8), 0 0 40px rgba(59, 130, 246, 0.6); }
}

.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.number-container {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #1e3a8a, #3b82f6);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(59, 130, 246, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.1),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(59, 130, 246, 0.4);
    overflow: hidden;
}

.number {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(59, 130, 246, 0.6),
        0 0 30px rgba(59, 130, 246, 0.4);
    z-index: 2;
    position: relative;
}

.smoke {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 140%;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    animation: smoke 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes smoke {
    0% {
        transform: translateX(-50%) translateY(0) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateX(-50%) translateY(-10px) scale(1.1);
        opacity: 0.4;
    }
    100% {
        transform: translateX(-50%) translateY(-20px) scale(1.2);
        opacity: 0.1;
    }
}

.smoke::before,
.smoke::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    animation: smokeParticles 2s ease-in-out infinite;
}

.smoke::before {
    top: 10%;
    left: 20%;
    animation-delay: -0.5s;
}

.smoke::after {
    top: 20%;
    right: 20%;
    animation-delay: -1s;
}

@keyframes smokeParticles {
    0% {
        transform: translateY(0) scale(0.5);
        opacity: 0.8;
    }
    100% {
        transform: translateY(-50px) scale(1.5);
        opacity: 0;
    }
}

.label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.separator {
    font-size: 3rem;
    font-weight: 900;
    color: #3b82f6;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.message {
    color: #e2e8f0;
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .countdown-container {
        gap: 1rem;
    }
    
    .number-container {
        width: 80px;
        height: 80px;
    }
    
    .number {
        font-size: 2rem;
    }
    
    .separator {
        font-size: 2rem;
    }
    
    .label {
        font-size: 0.7rem;
    }
    
    .message {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .countdown-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .separator {
        display: none;
    }
}