/* Countdown Section Styles */
.countdown-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
    position: relative;
    overflow: hidden;
}

.countdown-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/site/home/countdown-bg.png') center/cover no-repeat;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

.countdown-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Countdown Card */
.countdown-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.countdown-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.countdown-card--baby-mash {
    border-color: rgba(255, 105, 180, 0.3);
}

.countdown-card--baby-mash:hover {
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.2);
}

.countdown-card--monsta-mash {
    border-color: rgba(0, 255, 136, 0.3);
}

.countdown-card--monsta-mash:hover {
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.countdown-card__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.countdown-card__icon {
    font-size: 2.5rem;
    line-height: 1;
}

.countdown-card__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    font-family: 'Gameria', 'Poppins', sans-serif;
}

.countdown-card--baby-mash .countdown-card__title {
    color: #ff69b4;
}

.countdown-card--monsta-mash .countdown-card__title {
    color: #00ff88;
}

.countdown-card__date {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 5px 0;
    font-weight: 600;
}

.countdown-card__subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 25px;
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.countdown-timer__unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-timer__value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 15px 20px;
    min-width: 70px;
    font-family: 'Poppins', monospace;
    transition: transform 0.2s ease;
}

.countdown-timer__value:last-child {
    animation: pulse 1s infinite;
}

.countdown-card--baby-mash .countdown-timer__value {
    background: rgba(255, 105, 180, 0.2);
    border: 1px solid rgba(255, 105, 180, 0.3);
}

.countdown-card--monsta-mash .countdown-timer__value {
    background: rgba(0, 255, 136, 0.2);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.countdown-timer__label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-timer__launched {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ff88;
    display: block;
    padding: 20px;
}

/* CTA Button */
.countdown-card__cta {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.countdown-card--baby-mash .countdown-card__cta {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: #fff;
}

.countdown-card--baby-mash .countdown-card__cta:hover {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    transform: scale(1.05);
    color: #fff;
}

.countdown-card--monsta-mash .countdown-card__cta {
    background: transparent;
    border: 2px solid #00ff88;
    color: #00ff88;
}

.countdown-card--monsta-mash .countdown-card__cta:hover {
    background: #00ff88;
    color: #1a1a2e;
}

/* Pulse animation for seconds */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .countdown-section {
        padding: 40px 0;
    }
    
    .countdown-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    
    .countdown-card {
        padding: 30px 20px;
    }
    
    .countdown-card__title {
        font-size: 1.5rem;
    }
    
    .countdown-timer__value {
        font-size: 1.8rem;
        padding: 10px 15px;
        min-width: 55px;
    }
    
    .countdown-timer {
        gap: 10px;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .countdown-timer__value:last-child {
        animation: none;
    }
    
    .countdown-card {
        transition: none;
    }
}
