/* --- Digital Clock Countdown Styles --- */
.countdown-wrapper {
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 8px;
    padding: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
}

.time-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70px;
}

.time-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.8);
    line-height: 1;
}

.time-label {
    font-size: 0.7rem;
    color: #00f3ff;
    text-transform: uppercase;
    margin-top: 5px;
    letter-spacing: 1px;
}

.separator {
    font-size: 2rem;
    color: #00f3ff;
    margin-bottom: 15px;
    animation: blink 1s infinite;
}

/* --- Mobile Tweaks (Countdown) --- */
@media (max-width: 600px) {
    .time-value {
        font-size: 1.5rem;
    }

    .separator {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .time-segment {
        width: 50px;
    }
}