#eventProgressWrapper {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

#eventProgressBar {
    width: 200px;
    height: 4px;
    background: rgba(0,0,0,0.1);
    overflow: hidden;
    display: none;
}

#eventProgressFill {
    height: 100%;
    width: 0%;
    background: linear-gradient(
        90deg,
        #000
    );
    transition: width 0.4s ease;
}

#eventCountdown {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: #7c7c7c;
    font-variant-numeric: tabular-nums;
    font-weight: bold;
}

#eventCountdown a {
    color: inherit;
    text-decoration: none;
}