.counter {
    text-align: center;
    background-color: #111;
    color: #fff;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem auto;
    max-width: 500px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

#counter {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 10px;
    font-family: 'Courier New', monospace;
    font-size: 2.5rem;
    margin-top: 1rem;
}

.time {
    background-color: #0000004d;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    min-width: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time small {
    font-size: 0.7rem;
    margin-top: 0.2rem;
    text-transform: uppercase;
}

.separator {
    font-size: 2.5rem;
    color: #fff;
}

.cursor {
    display: inline-block;
    color: #ffffff;
    font-weight: bold;
    animation: blink 0.7s steps(1) infinite;
}

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