:root {
    --color-primary: #E72113;
    --color-secondary: #000000;
    --font-family-secondary: 'Knockout 29', 'Knockout', 'Roboto', sans-serif;
    --font-family-paragraph: 'Roboto Condensed', sans-serif;
    --font-size-600: 1.953rem;
    --font-size-500: 1.563rem;
    --font-size-300: 1rem;
    --font-size-200: .80rem;
}

@media (max-width:35em) {
    :root {
        --font-size-600: 1.75rem;
    }
}

body {
    font-family: 'Knockout 29', 'Roboto Condensed', sans-serif;
    background: linear-gradient(135deg, #fff 0%, #fff 50%, #eee 100%);
    margin: 0; padding: 0; min-height: 100vh;
    display: flex; align-items: center; justify-content: center; color: white;
}
.container {
    text-align: center; background: rgba(0, 0, 0, 0.9);
    padding: 1rem; border-radius: 20px; backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); max-width: 500px; margin: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    height: 100px;
    margin-bottom: 1rem;
    background-image: url(https://publictheater.org/img/logo_public_waitingroom.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    text-indent: -9999px; /* Push text far out of view */
    overflow: hidden;     /* Prevent scrollbars */
    white-space: nowrap;  /* Prevent text from wrapping */
}

.spinner {
    width: 50px; height: 50px; border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #E72113; border-radius: 50%;
    animation: spin 1s linear infinite; margin: 0 auto 2rem;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.stats { background: rgba(255, 255, 255, 0.1); padding: 1rem; border-radius: 10px; margin-top: 2rem; }
.stat { margin: 0.5rem 0; }
.note { font-size: 0.9rem; opacity: 0.8; margin-top: 1rem; }

.custom-message {
    background: #FFFFFF;
    color: #000000;
    border: 3px solid var(--color-primary);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin: 0 0 1.5rem;
    font-weight: 600;
    text-align: left;
    box-shadow: 0 4px 16px rgba(231, 33, 19, 0.25);
}
.custom-message :first-child { margin-top: 0; }
.custom-message :last-child  { margin-bottom: 0; }
.custom-message p { margin: 0.5em 0; }

/* Allow rich-text classes from the Umbraco editor to apply inside the banner. */
.custom-message .h1-title {
    font-family: var(--font-family-secondary);
    font-size: var(--font-size-600);
    font-weight: 600;
    line-height: normal;
}
.custom-message .subheader {
    font-family: var(--font-family-secondary);
    font-size: var(--font-size-600);
    font-weight: 600;
    line-height: normal;
}
.custom-message .subheader-red {
    font-family: var(--font-family-secondary);
    font-size: var(--font-size-600);
    font-weight: 600;
    color: var(--color-primary);
    line-height: normal;
}
.custom-message .paragraph {
    font-family: var(--font-family-paragraph);
    font-size: var(--font-size-300);
    font-weight: normal;
    line-height: normal;
}
.custom-message .fineprint {
    font-family: var(--font-family-paragraph);
    font-size: var(--font-size-200);
    font-weight: normal;
    line-height: normal;
}
.custom-message .red-text { color: var(--color-primary); }


@media (min-width: 568px) {
    .container {
        padding: 3rem;
    }
    .logo {
        height: 150px;
        margin-bottom: 2rem;
    }
}
