body {
    background-color: #000000;
    color: #ffffff;
    /* Using your local font with fallbacks */
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    text-align: center;
}

h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -0.5px; /* Helvetica looks better slightly tight */
}

.time-container {
    margin-bottom: 40px;
    font-size: 1.4rem;
    font-weight: 300;
}

.time-label {
    font-size: 0.75rem;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.button-group {
    display: flex;
    gap: 15px;
}

a {
    padding: 12px 28px;
    border: 1px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    /* This makes them perfectly curved pills */
    border-radius: 50px; 
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease-in-out;
}

a:hover {
    background-color: #ffffff;
    color: #000000;
    transform: scale(1.05); /* Soft little pop on hover */
}