:root {
    --unionen-green: #17A624;
    --text-white: #ffffff;
    --text-dark: #333333;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow: hidden;
    /* Prevent scrolling */
}

.app-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-bottom: 30vh;
    /* Increased from 20vh to create more space above bottom text */
}

/* State: Default (Green background, white text) */
body {
    background-color: var(--unionen-green);
    color: var(--text-white);
    font-family: "Paralucent Condensed", "Barlow Condensed", sans-serif;
}

/* We remove the specific state classes for colors since user requested green bg always */
/* But we keep the class logic in JS if we want to revert later, or we just ignore it in CSS */

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    width: 100%;
    /* Ensure content takes full width for centering */
}

.countdown {
    display: flex;
    flex-direction: column;
    gap: 0;
    /* Removed gap to tighten layout further */
}

.time-row {
    font-size: 3rem;
    font-weight: 700;
    /* Bold */
    line-height: 0.9;
    /* Reduced line height */
    text-transform: uppercase;
    /* Often looks better with condensed fonts */
}

.number {
    font-weight: 700;
    font-size: 5rem;
    /* Increased size slightly */
}

.label {
    font-size: 2rem;
    font-weight: 700;
}

.sub-text {
    margin-top: 1rem;
    font-size: 1.5rem;
    opacity: 1;
    /* Changed from 0.9 to 1 (fully white) */
}

.location-badge {
    position: absolute;
    bottom: 160px;
    /* Moved up further */
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.8;
    width: 100%;
    padding: 0 20px;
}

.extra-info {
    position: absolute;
    bottom: 120px;
    /* Moved up further */
    font-size: 1rem;
    /* Reduced from 1.2rem */
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
    padding: 0 20px;
}

.snarky-comment {
    position: absolute;
    bottom: 95px;
    /* Closer to extra-info (which is at 120px) */
    font-size: 1rem;
    /* Same size */
    font-weight: 700;
    /* Same weight */
    text-transform: uppercase;
    /* Same transform */
    font-style: normal;
    /* No italic */
    opacity: 1;
    /* Full opacity */
    width: 100%;
    padding: 0 20px;
    max-width: 100%;
    /* Allow full width */
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

.blinking {
    animation: blink 1.5s infinite ease-in-out;
}

@media (max-width: 400px) {
    .number {
        font-size: 3rem;
    }

    .time-row {
        font-size: 2rem;
    }
}