/* =============================================
   COUNTDOWN TIMER STYLES
   Premium styling for L2 Delusion countdown
   ============================================= */

.countdown-container {
    margin: 0px 0 15px 0;
    animation: fadeInUp 1s ease-out;
    z-index: 10;
    width: 100%;
    max-width: 800px;
}

.countdown-title {
    font-size: 2.2rem;
    color: #f49c3f;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
    font-style: italic;
}

.countdown-tagline {
    font-size: 1rem;
    color: rgba(236, 240, 241, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.9);
}

.countdown-subtitle {
    font-size: 0.9rem;
    color: #f49c3f;
    margin-bottom: 15px;
    opacity: 1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.time-box {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(46, 46, 46, 0.9));
    border: 1px solid rgba(244, 208, 63, 0.3);
    border-radius: 8px;
    padding: 12px 15px;
    min-width: 70px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.time-box:hover {
    transform: translateY(-3px);
    border-color: rgba(244, 208, 63, 0.6);
    box-shadow: 0 8px 25px rgba(244, 208, 63, 0.2);
}

.time-number {
    font-size: 1.8rem; /* Reduced from 2.5rem */
    font-weight: bold;
    color: #f49c3f;
    display: block;
    text-shadow: 0 0 8px rgba(244, 208, 63, 0.4);
}

.time-label {
    font-size: 0.75rem; /* Reduced from 0.9rem */
    color: #bdc3c7;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

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

/* Responsive - Tablet */
@media (max-width: 768px) {
    .countdown-title {
        font-size: 1.6rem;
    }
    
    .countdown-tagline {
        font-size: 0.9rem;
    }
    
    .time-box {
        padding: 10px;
        min-width: 60px;
    }
    
    .time-number {
        font-size: 1.5rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .countdown-title {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }
    
    .time-box {
        padding: 8px;
        min-width: 50px;
    }
    
    .time-number {
        font-size: 1.3rem;
    }
    
    .countdown-timer {
        gap: 8px;
    }
}
