.countdown-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: nowrap;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    flex: 1 1 0;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem 0.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.time-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.number {
    font-size: clamp(2rem, 4.8vw, 3.6rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #94a3b8;
    font-weight: 500;
}

.short-text {
    display: none;
}

.separator {
    font-size: 3rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.2);
    animation: blink 1s infinite alternate;
}

@keyframes blink {
    0% { opacity: 0.2; }
    100% { opacity: 1; }
}

.target-date {
    margin-bottom: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: inline-block;
}

.target-date h3 {
    font-size: 1rem;
    font-weight: 300;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

#target-date-display {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 0 15px var(--primary-glow);
}

@media (max-width: 600px) {
    .countdown-wrapper { gap: 0.8rem; }
    .time-box { min-width: 70px; padding: 1rem 0.5rem; }
    .number { font-size: 2rem; }
    .separator { display: none; }
    .full-text { display: none; }
    .short-text { display: inline; }
}
