.countdown-section {
    background: linear-gradient(135deg, #c4956a 0%, #d4a96a 50%, #e8c9a8 100%);
    padding: 80px 20px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.countdown-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: glow 4s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(5%, 5%); }
}

.countdown-title {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 26px;
    letter-spacing: 6px;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.countdown-subtitle {
    font-size: 14px;
    opacity: 0.8;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 2px;
    position: relative;
}

.countdown-boxes {
    display: flex;
    gap: 15px;
    justify-content: center;
    position: relative;
}

.countdown-box {
    text-align: center;
}

.countdown-number {
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.countdown-label {
    font-size: 12px;
    opacity: 0.8;
    letter-spacing: 2px;
}
