* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #000;
    color: #ff0000; /* Dramatic Red */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    /* Hide the cursor for kiosk mode */
    cursor: none;
    font-family: 'DSEG7 Classic', sans-serif;
    user-select: none;
}

#countdown-container {
    position: relative;
    font-size: 10vw; /* Responsive huge size */
    line-height: 1;
    /* Add a glowing effect to the container */
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.8), 0 0 40px rgba(255, 0, 0, 0.5);
    white-space: nowrap;
}

#countdown-bg {
    position: absolute;
    top: 0;
    left: 0;
    color: rgba(40, 0, 0, 0.4); /* Dim red for the unlit segments */
    z-index: 1;
    text-shadow: none;
}

#countdown {
    position: relative;
    z-index: 2;
}
