/* /Components/Countdown.razor.rz.scp.css */
.timer-wrap[b-7kl55jqcgh] {
    position: relative;
    display: inline-grid;
    place-items: center;
    isolation: isolate; /* own stacking context */
    z-index: 0;
    /* --d is the diameter (provided inline via style attr) */
}

/* Rotating frame image */
.ring[b-7kl55jqcgh] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: spin-b-7kl55jqcgh 60s linear infinite;
    animation-play-state: paused; /* only spin while running */
    will-change: transform;
    pointer-events: none;
    z-index: -1;
}

.timer-wrap.running .ring[b-7kl55jqcgh] {
    animation-play-state: running;
}

.timer-wrap.snapzero .ring[b-7kl55jqcgh] {
    animation: none !important; /* kill the spin */
    transform: rotate(0deg); /* snap to zero */
}

.static-ring[b-7kl55jqcgh] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    will-change: transform;
    pointer-events: none;
    z-index: -2;
}

.digits[b-7kl55jqcgh] {
    position: relative; /* sits above the image */
    font-family: "VisaDialect";
    font-weight: 800;
    line-height: 1;
    user-select: none;
    /* Scales with component size, caps for large/small */
    font-size: calc(var(--d) * 0.35);
    text-align: center;
    background-color: #fbc014;
    background-image: linear-gradient(160deg, rgb(20, 52, 203), rgb(20, 52, 203), rgb(20, 52, 203), rgb(66, 92, 214), rgb(20, 52, 203), rgb(20, 52, 203), rgb(20, 52, 203));
    background-size: 100%;
    background-repeat: repeat;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}

@keyframes spin-b-7kl55jqcgh {
    to {
        transform: rotate(360deg);
    }
}

/* ===== Sparkles (edge orbit + twinkle) ===== */
.sparkles[b-7kl55jqcgh] {
    position: absolute;
    inset: 0;
    z-index: -2; /* behind ring */
    pointer-events: none;
    overflow: visible;
}

/* Orbit container: handles the circular motion around center */
.sparkle-orbit[b-7kl55jqcgh] {
    position: absolute;
    left: 50%;
    top: 50%;
    transform-origin: center;
    /* place at start angle and push out by radius */
    transform: rotate(var(--a)) translateX(var(--r));
    animation: orbit-b-7kl55jqcgh var(--orbit-dur, 14s) linear infinite;
    animation-delay: var(--delay, 0s);
    will-change: transform;
}

/* The actual glowing dot/star that twinkles */
.sparkle-dot[b-7kl55jqcgh] {
    display: block;
    width: var(--size, 4px);
    height: var(--size, 4px);
    border-radius: 50%;
    /* starry look with soft glow */
    background: radial-gradient(circle, var(--spark-core, #fff7cc) 0 35%, transparent 40%) center/100% 100% no-repeat, conic-gradient(from 0deg, transparent 0 25%, var(--spark-ray, #ffd54d) 0 50%, transparent 0 75%, var(--spark-ray, #ffd54d) 0) center/100% 100% no-repeat;
    filter: drop-shadow(0 0 4px rgba(255, 213, 77, .75)) drop-shadow(0 0 8px rgba(255, 213, 77, .45));
    opacity: .9;
    transform-origin: center;
    animation: twinkle-b-7kl55jqcgh var(--twinkle-dur, 2.2s) ease-in-out infinite;
    animation-delay: var(--delay, 1s);
}

@keyframes orbit-b-7kl55jqcgh {
    to {
        transform: rotate(calc(var(--a) + 360deg)) translateX(var(--r));
    }
}

@keyframes twinkle-b-7kl55jqcgh {
    0% {
        transform: scale(.7);
        opacity: .35;
    }

    45% {
        transform: scale(1.25);
        opacity: 1;
    }

    55% {
        transform: scale(1.1);
        opacity: .9;
    }

    100% {
        transform: scale(.7);
        opacity: .35;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-ufo54op0d9] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-ufo54op0d9] {
    flex: 1;
}

.sidebar[b-ufo54op0d9] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-ufo54op0d9] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-ufo54op0d9]  a, .top-row[b-ufo54op0d9]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-ufo54op0d9]  a:hover, .top-row[b-ufo54op0d9]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-ufo54op0d9]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-ufo54op0d9] {
        justify-content: space-between;
    }

    .top-row[b-ufo54op0d9]  a, .top-row[b-ufo54op0d9]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-ufo54op0d9] {
        flex-direction: row;
    }

    .sidebar[b-ufo54op0d9] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-ufo54op0d9] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-ufo54op0d9]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }
}

#blazor-error-ui[b-ufo54op0d9] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-ufo54op0d9] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-hf83wgqjwy] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-hf83wgqjwy] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-hf83wgqjwy] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-hf83wgqjwy] {
    font-size: 1.1rem;
}

.bi[b-hf83wgqjwy] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-hf83wgqjwy] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-hf83wgqjwy] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-hf83wgqjwy] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-hf83wgqjwy] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-hf83wgqjwy] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-hf83wgqjwy] {
        padding-bottom: 1rem;
    }

    .nav-item[b-hf83wgqjwy]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-hf83wgqjwy]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-hf83wgqjwy]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-hf83wgqjwy] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-hf83wgqjwy] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-hf83wgqjwy] {
        display: none;
    }

    .nav-scrollable[b-hf83wgqjwy] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
.custom-select-wrapper[b-rrnv3eo19k] {
    position: relative;
    width: 100%;
}

.custom-select-text[b-rrnv3eo19k] {
    font-size: clamp(10px, 2vh, 72px);
}

.button.form-control[b-rrnv3eo19k] {
    height: 4vh !important;
}

/* Closed "select" button – keep your .form-control base */
.custom-select-display[b-rrnv3eo19k] {
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    background: transparent;
    border-radius: 0;
    border-bottom: 2px solid #fbc014;
}

/* The dropdown menu */
.custom-select-options[b-rrnv3eo19k] {
    position: absolute;
    top: calc(100% + 0.3rem);
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    /* KEY: make it scrollable */
    max-height: 20vh; /* or 50vh if you want taller */
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain; /* stops page scroll stealing the wheel */

    background-color: rgb(20, 52, 203);
    border: 2px solid rgb(12, 34, 134);
    padding: 5px 5px 5px 5px;
    z-index: 999999; /* make sure it’s above other content */
}

.custom-select-option[b-rrnv3eo19k] {
    padding: 0.4vh 0;
    padding-right: 0.5rem;
    font-family: "VisaDialect";
    font-size: clamp(10px, 1.5vh, 72px);
    background-color: rgb(20, 52, 203);
    color: #fff;
    cursor: pointer;
    white-space: nowrap;
}

    .custom-select-option.placeholder[b-rrnv3eo19k] {
        color: #a6aab8;
        cursor: not-allowed;
        pointer-events: none;
    }

    .custom-select-option:hover[b-rrnv3eo19k] {
        background-color: rgb(16, 42, 165);
        color: #fff;
    }

    .custom-select-option.selected[b-rrnv3eo19k],
    .custom-select-option:active[b-rrnv3eo19k] {
        background-color: rgb(12, 34, 134);
        color: #fff;
    }


select[b-rrnv3eo19k], option[b-rrnv3eo19k], ul[b-rrnv3eo19k], li[b-rrnv3eo19k] {
    font-family: "VisaDialect";
}

/* Optional: avoid faux styles */
:root[b-rrnv3eo19k] {
    font-synthesis: none;
}

.reveal-ltr[b-rrnv3eo19k] {
    /* solid mask that we’ll grow from 0% width to 100% */
    -webkit-mask-image: linear-gradient(#000, #000);
    mask-image: linear-gradient(#000, #000);
    -webkit-mask-size: 0% 100%;
    mask-size: 0% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    /* optional soft edge at the reveal front */
    --feather: 14px;
    -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - var(--feather)), rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - var(--feather)), rgba(0,0,0,0) 100%);
    animation: reveal-ltr-b-rrnv3eo19k 2s ease-out both;
    /* add a little delay if you like */
    animation-delay: 1s;
    line-height: 1.1; /* loosen the line box a bit */
    padding: 0.1em 0;
    animation-iteration-count: 1;
}

@keyframes reveal-ltr-b-rrnv3eo19k {
    to {
        -webkit-mask-size: 100% 100%;
        mask-size: 100% 100%;
    }
}

.reveal-ltr2[b-rrnv3eo19k] {
    /* solid mask that we’ll grow from 0% width to 100% */
    -webkit-mask-image: linear-gradient(#000, #000);
    mask-image: linear-gradient(#000, #000);
    -webkit-mask-size: 0% 100%;
    mask-size: 0% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    /* optional soft edge at the reveal front */
    --feather: 14px;
    -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - var(--feather)), rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - var(--feather)), rgba(0,0,0,0) 100%);
    animation: reveal-ltr2-b-rrnv3eo19k 3s ease-out both;
    /* add a little delay if you like */
    animation-delay: 2s;
    line-height: 1.1; /* loosen the line box a bit */
    padding: 0.1em 0;
    animation-iteration-count: 1;
}

@keyframes reveal-ltr2-b-rrnv3eo19k {
    to {
        -webkit-mask-size: 100% 100%;
        mask-size: 100% 100%;
    }
}

/* wrapper creates the clipped glow */
.data[b-rrnv3eo19k] {
    --glow-color: #faf67b;
    --glow-blur: 0.3vh; /* softness of glow */
    --glow-depth: 1vh; /* how far it extends below */
    position: relative;
}

    /* bottom-only glow using clip-path */
    .data[b-rrnv3eo19k]::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -1px; /* sits right under the bottom border */
        height: 2px; /* thin base line to blur */
        background: var(--glow-color);
        filter: blur(var(--glow-blur));
        pointer-events: none;
        /* keep only the area below; negative bottom extends the clip downward */
        clip-path: inset(0 0 calc(-1 * var(--glow-depth)) 0);
    }

.yellow-gradient[b-rrnv3eo19k] {
    background-color: #fbc014;
    background-image: linear-gradient(45deg, #fbc014, #faf67b, #fbc014);
    background-size: 100%;
    background-repeat: repeat;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}

.reveal-ltr3[b-rrnv3eo19k] {
    /* solid mask that we’ll grow from 0% width to 100% */
    -webkit-mask-image: linear-gradient(#000, #000);
    mask-image: linear-gradient(#000, #000);
    -webkit-mask-size: 0% 100%;
    mask-size: 0% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    /* optional soft edge at the reveal front */
    --feather: 14px;
    -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - var(--feather)), rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - var(--feather)), rgba(0,0,0,0) 100%);
    animation: reveal-ltr3-b-rrnv3eo19k 2s ease-out both,
        clear-mask 0s linear 5s forwards;
    /* add a little delay if you like */
    animation-delay: 3s;
    line-height: 1.1; /* loosen the line box a bit */
    padding: 0.1em 0;
    animation-iteration-count: 1;
}

@keyframes reveal-ltr3-b-rrnv3eo19k {
    to {
        -webkit-mask-size: 100% 100%;
        mask-size: 100% 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal-ltr[b-rrnv3eo19k] {
        animation: none;
        -webkit-mask-size: 100% 100%;
        mask-size: 100% 100%;
    }

    .reveal-ltr2[b-rrnv3eo19k] {
        animation: none;
        -webkit-mask-size: 100% 100%;
        mask-size: 100% 100%;
    }

    .reveal-ltr3[b-rrnv3eo19k] {
        animation: none;
        -webkit-mask-size: 100% 100%;
        mask-size: 100% 100%;
    }
}

h1[b-rrnv3eo19k] {
    font-family: 'VisaDialect';
    color: rgb(255,255,255);
    font-size: max(10px, 4.5vh);
    line-height: 1.1;
    margin: 0;
    transition: border-color .2s ease, box-shadow .2s ease;
}

p[b-rrnv3eo19k] {
    font-family: VisaDialect;
    color: rgb(255,255,255);
}

br[b-rrnv3eo19k] {
    line-height: 0;
    display: block;
    margin: 1vh 0;
}
span[b-rrnv3eo19k] {
    font-family: VisaDialect;
    color: rgb(255,255,255);
}
.span-adapted[b-rrnv3eo19k] {
    font-family: VisaDialect;
    color: rgb(255,255,255);
    font-size: clamp(8px, 1.2vh, 72px);
    display: grid                       ;
    align-items: flex-start; /* top-align the text with the checkbox */
    gap: 0rem; /* tiny space between checkbox and text */
    cursor: pointer;                
}

.checkbox-row[b-rrnv3eo19k] {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 0.1vw; /* min gap between checkbox and text */
    row-gap: 0; /* no vertical gap at all */
    align-items: start;
    margin: 0;
    padding: 0;
    line-height: 1.2; /* minimal readable line-height */
}

.checkbox-row .form-checkbox[b-rrnv3eo19k] {
    flex-shrink: 0; /* don’t let it get squashed */
    margin-top: 0.05rem; /* tiny nudge to visually centre with first line */
}

/* Text block with minimal line height */
    .checkbox-row .span-adapted[b-rrnv3eo19k] {
        margin: 0; /* remove default p margins */
        line-height: 1.2; /* very tight line height */
        display: inline-block;
    }

    .checkbox-row .span-adapted .link[b-rrnv3eo19k] {
        display: inline;
    }


h2[b-rrnv3eo19k] {
    font-family: 'VisaDialect';
    font-size: max(10px, 3vh);
    color: rgb(255,255,255);
}

.link[b-rrnv3eo19k] {
    color: #fbc014;
    text-decoration: underline;
}

    .link:hover[b-rrnv3eo19k],
    .link:focus[b-rrnv3eo19k] {
        color: #fff;
        text-decoration-thickness: 2px;
    }

.reveal-fade[b-rrnv3eo19k] {
    opacity: 0;
    animation: fadeIn-b-rrnv3eo19k 1s ease-out 3s forwards; /* 3s delay, 1s fade */
    margin-top: 0;
    overflow:visible;
}

@keyframes fadeIn-b-rrnv3eo19k {
    to {
        opacity: 1;
    }
}

.btn-submit[b-rrnv3eo19k] {
    background: rgb(255,255,255);
    color: #000;
    font-family: VisaDialect;
    font-weight: 500;
    border: 0.3vh solid #fbc014;
    border-radius: 0px;
    padding: .4vw 1.2vh;
    font-size: clamp(10px, 1.5vh, 72px);
    line-height: 1.2;
    cursor: pointer;
    transition: opacity .5s ease, box-shadow .5s ease, border 0.5s ease;
    overflow: visible;
}

    .btn-submit:hover:not(:disabled)[b-rrnv3eo19k] {
        background: #fff;
        box-shadow: 0 0 1vh #fbc014;
    }

    .btn-submit:focus-visible[b-rrnv3eo19k] {
        outline: none;
        box-shadow: 0 0 0 3px rgba(251, 192, 20, 0.35);
    }

    .btn-submit:disabled[b-rrnv3eo19k] {
        background: rgb(200,200,200);
        opacity: .3;
        cursor: not-allowed;
    }

grid-item checkbox-item[b-rrnv3eo19k] {
    line-height: 1.2; /* normalize text box height */
    width: 100%;
    background: transparent;
    color: #fff;
    border: none;
    border-bottom: 2px solid #fbc014; /* yellow line */
    padding: 10px 0; /* inside spacing */
    margin: 0; /* prevent stray margins */
    line-height: 1.2; /* normalize text box height */
    font-size: clamp(15px, 2vh, 72px);
    box-sizing: border-box; /* include borders in height calc */
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.grid-container[b-rrnv3eo19k] {
    display: grid;
    border: 0px;
    grid-template-columns: repeat(1, 1fr);
    gap: 2vh;
    grid-column-gap: 3vw;
}

:root[b-rrnv3eo19k] {
    --brand-blue: rgb(20, 52, 203);
    --brand-blue-600: rgba(20, 52, 203, 0.92);
    --brand-blue-700: rgb(16, 42, 165);
    --brand-blue-800: rgb(12, 34, 134);
    --brand-yellow: #fbc014;
}

.form-control[b-rrnv3eo19k] {
    width: 100%;
    height: 4vh;
    background: transparent;
    color: #fff;
    border: none;
    border-bottom: 2px solid #fbc014; /* yellow line */
    padding: 0px 0;
    outline: none;
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    transition: border-color .2s ease;
    font-size: clamp(15px, 2vh, 72px);
    font-family: "VisaDialect";
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0 !important;
    -webkit-border-radius: 0; /* Safari/iOS */
}

    .form-control:hover[b-rrnv3eo19k] {
        border-color: #ffd44e;
    }

    .form-control:focus[b-rrnv3eo19k] {
        border-color: var(#fbc014);
        box-shadow: 0 0 0 3px rgba(251, 192, 20, 0);
    }

    /* dropdown list options */
    .form-control option[b-rrnv3eo19k] {
        background-color: rgb(20, 52, 203);
        color: #fff;
        border: none; /* avoid odd grooves across UAs */
    }

        /* hovered option */
        .form-control option:hover[b-rrnv3eo19k] {
            background-color: rgb(16, 42, 165);
            color: #fff;
        }

        /* selected/active option in the list */
        .form-control option:checked[b-rrnv3eo19k],
        .form-control option:active[b-rrnv3eo19k] {
            background-color: rgb(12, 34, 134);
            color: #fff;
        }

    /* optgroup label (if you use groups) */
    .form-control optgroup[b-rrnv3eo19k] {
        background-color: rgba(20, 52, 203, 0.92);
        color: #e6eaff;
        font-weight: 600;
    }

    /* placeholder/empty option */
    .form-control:invalid[b-rrnv3eo19k] {
        color: #a6aab8;
    }

    /* hide legacy arrow */
    .form-control[b-rrnv3eo19k]::-ms-expand {
        display: none;
    }

    /* disabled */
    .form-control:disabled[b-rrnv3eo19k] {
        opacity: .8;
        color: #fff;
        cursor: not-allowed;
    }

.upper[b-rrnv3eo19k] {
    margin-bottom: 4vh;
}

.img-break[b-rrnv3eo19k] {
    margin-bottom: 4vh;
}

.page-container[b-rrnv3eo19k] {
    position: fixed;
    width: 100%;
    padding-left: calc(2vw);
    padding-right: calc(3rem + 1vw);
    padding-bottom: calc(var(--footer-space) + env(safe-area-inset-bottom, 0px));
}

/* 1) Phone */
@media (max-width: 480px) and (orientation: portrait) {
    :root[b-rrnv3eo19k] {
        --brand-blue: rgb(20, 52, 203);
        --brand-blue-600: rgba(20, 52, 203, 0.92);
        --brand-blue-700: rgb(16, 42, 165);
        --brand-blue-800: rgb(12, 34, 134);
        --brand-yellow: #fbc014;
        --input-fs: 16px;
        --input-padY: 10px; /* a bit more touch-friendly */
        --input-line: 2px;
    }

    br.portrait-vers[b-rrnv3eo19k] {
        display: none !important;
    }

    .grid-container[b-rrnv3eo19k] {
        display: grid;
        column-width: auto;
        border: 0px;
        grid-template-columns: repeat(2, 1fr);
        gap: 2vh;
        grid-column-gap: 3vw;
        width: 80vw;
    }

    .custom-select-text[b-rrnv3eo19k] {
        font-size: clamp(10px, 1.5vh, 72px);
    }

    .span-adapted[b-rrnv3eo19k] {
        font-family: VisaDialect;
        color: rgb(255,255,255);
        font-size: clamp(8px, 1vh, 72px);
    }
}

@media (max-height: 480px) and (orientation: landscape) {
    :root[b-rrnv3eo19k] {
        --brand-blue: rgb(20, 52, 203);
        --brand-blue-600: rgba(20, 52, 203, 0.92);
        --brand-blue-700: rgb(16, 42, 165);
        --brand-blue-800: rgb(12, 34, 134);
        --brand-yellow: #fbc014;
        --input-fs: 16px;
        --input-padY: 10px; /* a bit more touch-friendly */
        --input-line: 2px;
    }

    .grid-container[b-rrnv3eo19k] {
        display: grid;
        column-width: auto;
        border: 0px;
        grid-template-columns: repeat(2, 1fr);
        gap: 2vh;
        grid-column-gap: 3vw;
        width: 50vw;
    }
}
/* 2) Tablet */
@media (min-width: 481px) and (max-width: 1024px) and (orientation: portrait) {
    :root[b-rrnv3eo19k] {
        --brand-blue: rgb(20, 52, 203);
        --brand-blue-600: rgba(20, 52, 203, 0.92);
        --brand-blue-700: rgb(16, 42, 165);
        --brand-blue-800: rgb(12, 34, 134);
        --brand-yellow: #fbc014;
        --input-fs: 18px;
        --input-padY: 12px;
        --input-line: 2px;
    }

    br.portrait-vers[b-rrnv3eo19k] {
        display: none !important;
    }

    .grid-container[b-rrnv3eo19k] {
        display: grid;
        border: 0px;
        grid-template-columns: repeat(2, 1fr);
        gap: 2vh;
        grid-column-gap: 3vw;
        width: 70vw;
    }

    .btn-submit[b-rrnv3eo19k] {
        padding: .8vw .8vh;
        font-size: clamp(16px, 2vh, 72px);
        line-height: 1.2;
    }

    .custom-select-text[b-rrnv3eo19k] {
        font-size: clamp(10px, 1.5vh, 72px);
    }

    .span-adapted[b-rrnv3eo19k] {
        font-family: VisaDialect;
        color: rgb(255,255,255);
        font-size: clamp(8px, 1vh, 72px);
    }
}
/* 3) Computer (landscape monitors/laptops) */
@media (min-width: 1025px) and (orientation: landscape) {
    h1[b-rrnv3eo19k] {
        font-family: 'VisaDialect';
        color: rgb(255,255,255);
        font-size: max(10px, 6vh);
        line-height: 1.1;
        margin: 0;
        transition: border-color .2s ease, box-shadow .2s ease;
    }

    :root[b-rrnv3eo19k] {
        --brand-blue: rgb(20, 52, 203);
        --brand-blue-600: rgba(20, 52, 203, 0.92);
        --brand-blue-700: rgb(16, 42, 165);
        --brand-blue-800: rgb(12, 34, 134);
        --brand-yellow: #fbc014;
        --input-fs: 20px;
        --input-padY: 12px;
        --input-line: 2px;
    }

    .grid-container[b-rrnv3eo19k] {
        display: grid;
        border: 0px;
        grid-template-columns: repeat(2, 1fr);
        gap: 5vh;
        grid-column-gap: 5vw;
        width: 50vw;
    }

    .btn-submit[b-rrnv3eo19k] {
        font-size: clamp(16px, 2vh, 72px);
        line-height: 1.2;
    }
}
/* 4) Computer vertical (portrait monitors) */
@media (min-width: 1025px) and (orientation: portrait) {
    :root[b-rrnv3eo19k] {
        --brand-blue: rgb(20, 52, 203);
        --brand-blue-600: rgba(20, 52, 203, 0.92);
        --brand-blue-700: rgb(16, 42, 165);
        --brand-blue-800: rgb(12, 34, 134);
        --brand-yellow: #fbc014;
        --input-fs: 22px; /* a touch larger for tall displays */
        --input-padY: 14px;
        --input-line: 3px; /* slightly bolder underline */
    }
    br.portrait-vers[b-rrnv3eo19k] {
        display: none !important;
    }

    .grid-container[b-rrnv3eo19k] {
        display: grid;
        border: 0px;
        grid-template-columns: repeat(2, 1fr);
        gap: 2vh;
        grid-column-gap: 3vw;
        width: 70vw;
    }

    .btn-submit[b-rrnv3eo19k] {
        font-size: clamp(16px, 2vh, 72px);
        line-height: 1.2;
    }

    .span-adapted[b-rrnv3eo19k] {
        font-family: VisaDialect;
        color: rgb(255,255,255);
        font-size: clamp(8px, 1vh, 72px);
    }
}
/* /Components/Pages/Leaderboard.razor.rz.scp.css */
/* Optional: avoid faux styles */
:root[b-x3gsglvsr9] {
    font-synthesis: none;
}

.reveal-ltr[b-x3gsglvsr9] {
    /* solid mask that we’ll grow from 0% width to 100% */
    -webkit-mask-image: linear-gradient(#000, #000);
    mask-image: linear-gradient(#000, #000);
    -webkit-mask-size: 0% 100%;
    mask-size: 0% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    /* optional soft edge at the reveal front */
    --feather: 14px;
    -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - var(--feather)), rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - var(--feather)), rgba(0,0,0,0) 100%);
    animation: reveal-ltr-b-x3gsglvsr9 2s ease-out both;
    /* add a little delay if you like */
    animation-delay: 1s;
    line-height: 1.1; /* loosen the line box a bit */
    padding: 0.1em 0;
    animation-iteration-count: 1;
}

@keyframes reveal-ltr-b-x3gsglvsr9 {
    to {
        -webkit-mask-size: 100% 100%;
        mask-size: 100% 100%;
    }
}

.reveal-ltr2[b-x3gsglvsr9] {
    /* solid mask that we’ll grow from 0% width to 100% */
    -webkit-mask-image: linear-gradient(#000, #000);
    mask-image: linear-gradient(#000, #000);
    -webkit-mask-size: 0% 100%;
    mask-size: 0% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    /* optional soft edge at the reveal front */
    --feather: 14px;
    -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - var(--feather)), rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - var(--feather)), rgba(0,0,0,0) 100%);
    animation: reveal-ltr2-b-x3gsglvsr9 3s ease-out both;
    /* add a little delay if you like */
    animation-delay: 2s;
    line-height: 1.1; /* loosen the line box a bit */
    padding: 0.1em 0;
    animation-iteration-count: 1;
}

@keyframes reveal-ltr2-b-x3gsglvsr9 {
    to {
        -webkit-mask-size: 100% 100%;
        mask-size: 100% 100%;
    }
}

.reveal-fade[b-x3gsglvsr9] {
    opacity: 0;
    animation: fadeIn-b-x3gsglvsr9 1s ease-out 1s forwards; /* 3s delay, 1s fade */
    margin-top: 0;
}

.reveal-fade-normal[b-x3gsglvsr9] {
    opacity: 0;
    animation: fadeIn-b-x3gsglvsr9 1s ease-out 1s forwards; /* 3s delay, 1s fade */
    margin-top: 0;
}

.reveal[b-x3gsglvsr9] {
    opacity: 0;
    animation: fadeIn-b-x3gsglvsr9 1s ease-out 1s forwards; /* 3s delay, 1s fade */
}

.center-holder[b-x3gsglvsr9] {
    height:55vh;
    align-content:center;
}

.c-break[b-x3gsglvsr9] {
    margin-bottom: 2vh;
}

@keyframes fadeIn-b-x3gsglvsr9 {
    to {
        opacity: 1;
    }
}

/* wrapper creates the clipped glow */
.data[b-x3gsglvsr9] {
    --glow-color: #faf67b;
    --glow-blur: 0.3vh; /* softness of glow */
    --glow-depth: 1vh; /* how far it extends below */
    position: relative;
    width:30%;
    left:35%;
}

    /* bottom-only glow using clip-path */
    .data[b-x3gsglvsr9]::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -1px; /* sits right under the bottom border */
        height: 2px; /* thin base line to blur */
        background: var(--glow-color);
        filter: blur(var(--glow-blur));
        pointer-events: none;
        /* keep only the area below; negative bottom extends the clip downward */
        clip-path: inset(0 0 calc(-1 * var(--glow-depth)) 0);
    }

.reveal-ltr3[b-x3gsglvsr9] {
    /* solid mask that we’ll grow from 0% width to 100% */
    -webkit-mask-image: linear-gradient(#000, #000);
    mask-image: linear-gradient(#000, #000);
    -webkit-mask-size: 0% 100%;
    mask-size: 0% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    /* optional soft edge at the reveal front */
    --feather: 14px;
    -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - var(--feather)), rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - var(--feather)), rgba(0,0,0,0) 100%);
    animation: reveal-ltr3-b-x3gsglvsr9 2s ease-out both;
    /* add a little delay if you like */
    animation-delay: 3s;
    line-height: 1.1; /* loosen the line box a bit */
    padding: 0.1em 0;
    animation-iteration-count: 1;
}

@keyframes reveal-ltr3-b-x3gsglvsr9 {
    to {
        -webkit-mask-size: 100% 100%;
        mask-size: 100% 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal-ltr[b-x3gsglvsr9] {
        animation: none;
        -webkit-mask-size: 100% 100%;
        mask-size: 100% 100%;
    }

    .reveal-ltr2[b-x3gsglvsr9] {
        animation: none;
        -webkit-mask-size: 100% 100%;
        mask-size: 100% 100%;
    }

    .reveal-ltr3[b-x3gsglvsr9] {
        animation: none;
        -webkit-mask-size: 100% 100%;
        mask-size: 100% 100%;
    }
}

h1[b-x3gsglvsr9] {
    font-family: 'VisaDialect';
    color: rgb(255,255,255);
    font-size: max(10px, 4.5vh);
    line-height: 1.1;
    margin: 0;
    transition: border-color .2s ease, box-shadow .2s ease;
}

p[b-x3gsglvsr9] {
    font-family: VisaDialect;
    color: rgb(255,255,255);
}

br[b-x3gsglvsr9] {
    line-height: 0;
    display: block;
    margin: 1vh 0;
}

.full-length[b-x3gsglvsr9] {
    grid-template-columns: 7% 83% 10% !important;
}

.truncate[b-x3gsglvsr9] {
    text-overflow:ellipsis !important;
    white-space: nowrap;
    overflow:hidden;
}

span[b-x3gsglvsr9] {
    font-family: VisaDialect;
    color: rgb(255,255,255);
}

.span-adapted[b-x3gsglvsr9] {
    font-family: VisaDialect;
    color: rgb(255,255,255);
    font-size: clamp(10px, 1.5vh, 72px);
}


h2[b-x3gsglvsr9] {
    font-family: 'VisaDialect';
    font-size: max(10px, 3vh);
    color: rgb(255,255,255);
}

h2.top[b-x3gsglvsr9] {
    font-family: 'VisaDialect';
    font-size: max(10px, 4vh);
    font-weight: 600;
    color: rgb(255,255,255);
}

    h2.top2[b-x3gsglvsr9] {
        font-family: 'VisaDialect';
        font-size: max(10px, 3.8vh);
        font-weight: 600;
        color: rgb(255,255,255);
    }

.score-break[b-x3gsglvsr9] {
    margin-bottom: 15vh;
}

.yellow-gradient[b-x3gsglvsr9] {
    color: transparent;
    background-image: linear-gradient(170deg, #ecbf32 0%, #ecbf32 40%, #fff773 60%, #ecbf32 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 0.01vh rgba(255, 250, 39, 0.9);
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
    filter: drop-shadow(.1vw .7vh 0.2vh rgba(0,0,0,0.4));
}

.large[b-x3gsglvsr9] {
    font-family: 'VisaDialect';
    font-size: max(10px, 14vh);
    font-weight: 700;
    /*-webkit-animation: glow 1s ease-in-out infinite alternate;
    -moz-animation: glow 1s ease-in-out infinite alternate;
    animation: glow 1s ease-in-out infinite alternate;*/
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

@-webkit-keyframes glow {
    from {
        text-shadow: 0 0 0.25px rgba(255,255,255,0.35), 0 0 0.5px rgba(251,192,20,0.25);
    }

    to {
        text-shadow: 0 0 0.5px rgba(255,255,255,0.5), 0 0 1px rgba(251,192,20,0.35);
    }
}

@keyframes glow-b-x3gsglvsr9 {
    from {
        text-shadow: 0 0 0.25px rgba(255,255,255,0.35), 0 0 0.5px rgba(251,192,20,0.25);
    }

    to {
        text-shadow: 0 0 0.5px rgba(255,255,255,0.5), 0 0 1px rgba(251,192,20,0.35);
    }
}


.link[b-x3gsglvsr9] {
    color: #fbc014;
    text-decoration: underline;
}

    .link:hover[b-x3gsglvsr9],
    .link:focus[b-x3gsglvsr9] {
        color: #fff;
        text-decoration-thickness: 2px;
    }

.custom-select-wrapper[b-x3gsglvsr9] {
    position: relative;
    width: 100%;
}

.custom-select-text[b-x3gsglvsr9] {
    font-size: clamp(10px, 2vh, 72px);
}

.button.form-control[b-x3gsglvsr9] {
    height: 4vh !important;
}

/* Closed "select" button – keep your .form-control base */
.custom-select-display[b-x3gsglvsr9] {
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    background: transparent;
    border-radius: 0;
    border-bottom: 2px solid #fbc014;
}

/* The dropdown menu */
.custom-select-options[b-x3gsglvsr9] {
    position: absolute;
    top: calc(100% + 0.3rem);
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    /* KEY: make it scrollable */
    max-height: 20vh; /* or 50vh if you want taller */
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain; /* stops page scroll stealing the wheel */

    background-color: rgb(20, 52, 203);
    border: 2px solid rgb(12, 34, 134);
    padding: 5px 5px 5px 5px;
    z-index: 9999; /* make sure it’s above other content */
}

.custom-select-option[b-x3gsglvsr9] {
    padding: 0.4vh 0;
    padding-right: 0.5rem;
    font-family: "VisaDialect";
    font-size: clamp(10px, 1.5vh, 72px);
    background-color: rgb(20, 52, 203);
    color: #fff;
    cursor: pointer;
    white-space: nowrap;
}

    .custom-select-option.placeholder[b-x3gsglvsr9] {
        color: #a6aab8;
        cursor: not-allowed;
        pointer-events: none;
    }

    .custom-select-option:hover[b-x3gsglvsr9] {
        background-color: rgb(16, 42, 165);
        color: #fff;
    }

    .custom-select-option.selected[b-x3gsglvsr9],
    .custom-select-option:active[b-x3gsglvsr9] {
        background-color: rgb(12, 34, 134);
        color: #fff;
    }

.btn-submit[b-x3gsglvsr9] {
    background: rgb(255,255,255);
    color: #000;
    font-family: VisaDialect;
    font-weight: 500;
    border: 2px solid #fbc014;
    padding: .4vw 1.2vh;
    font-size: clamp(10px, 1.5vh, 72px);
    line-height: 1.2;
    border-radius: 0;
    cursor: pointer;
}

.btn-submit:hover:not(:disabled)[b-x3gsglvsr9] {
    background: #ddd;
}

    .btn-submit:focus-visible[b-x3gsglvsr9] {
        outline: none;
        box-shadow: 0 0 0 3px rgba(251, 192, 20, 0.35);
    }

    .btn-submit:disabled[b-x3gsglvsr9] {
        opacity: .8;
        cursor: not-allowed;
    }


grid-item checkbox-item[b-x3gsglvsr9] {
    line-height: 1.2; /* normalize text box height */
    width: 100%;
    background: transparent;
    color: #fff;
    border: none;
    border-bottom: 2px solid #fbc014; /* yellow line */
    padding: 10px 0; /* inside spacing */
    margin: 0; /* prevent stray margins */
    line-height: 1.2; /* normalize text box height */
    font-size: clamp(15px, 2vh, 72px);
    box-sizing: border-box; /* include borders in height calc */
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.grid-container[b-x3gsglvsr9] {
    display: grid;
    border: 0px;
    grid-template-columns: repeat(1, 1fr);
    gap: 2vh;
    grid-column-gap: 3vw;
}

:root[b-x3gsglvsr9] {
    --brand-blue: rgb(20, 52, 203);
    --brand-blue-600: rgba(20, 52, 203, 0.92);
    --brand-blue-700: rgb(16, 42, 165);
    --brand-blue-800: rgb(12, 34, 134);
    --brand-yellow: #fbc014;
}

.form-control[b-x3gsglvsr9] {
    width: 100%;
    height: auto;
    background: transparent;
    color: #fff;
    border: none;
    border-bottom: 2px solid #fbc014; /* yellow line */
    padding: 5px 0;
    outline: none;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    transition: border-color .2s ease;
    font-size: clamp(15px, 2vh, 72px);
    font-family: "VisaDialect";
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0 !important;
    -webkit-border-radius: 0; /* Safari/iOS */
}

    .form-control:hover[b-x3gsglvsr9] {
        border-color: #ffd44e;
    }

    .form-control:focus[b-x3gsglvsr9] {
        border-color: var(#fbc014);
        box-shadow: 0 0 0 3px rgba(251, 192, 20, 0);
    }

    /* dropdown list options */
    .form-control option[b-x3gsglvsr9] {
        background-color: rgb(20, 52, 203);
        color: #fff;
        border: none; /* avoid odd grooves across UAs */
    }

        /* hovered option */
        .form-control option:hover[b-x3gsglvsr9] {
            background-color: rgb(16, 42, 165);
            color: #fff;
        }

        /* selected/active option in the list */
        .form-control option:checked[b-x3gsglvsr9],
        .form-control option:active[b-x3gsglvsr9] {
            background-color: rgb(12, 34, 134);
            color: #fff;
        }

    /* optgroup label (if you use groups) */
    .form-control optgroup[b-x3gsglvsr9] {
        background-color: rgba(20, 52, 203, 0.92);
        color: #e6eaff;
        font-weight: 600;
    }

    /* placeholder/empty option */
    .form-control:invalid[b-x3gsglvsr9] {
        color: #a6aab8;
    }

    /* hide legacy arrow */
    .form-control[b-x3gsglvsr9]::-ms-expand {
        display: none;
    }

    /* disabled */
    .form-control:disabled[b-x3gsglvsr9] {
        opacity: .8;
        color: #fff;
        cursor: not-allowed;
    }

.upper-img[b-x3gsglvsr9] {
    height: clamp(40px, 8vh, 200px);
    width: auto;
}

.upper[b-x3gsglvsr9] {
    margin-bottom: 4vh;
}

.img-break[b-x3gsglvsr9] {
    margin-bottom: 4vh;
}

.center-adjust[b-x3gsglvsr9] {
    margin-bottom: -4vh;
    display: flex;
    align-items: center; /* vertical center */
    justify-content: center;
}

.page-container[b-x3gsglvsr9] {
    position: fixed;
    width: 100%;
    height: 99%;
    padding-left: calc(2vw);
    padding-right: calc(3rem + 1vw);
    /*padding-bottom: calc(var(--footer-space) + env(safe-area-inset-bottom, 0px));*/
    overflow-y: visible;
    overflow-x: clip;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none;
    opacity: 1;
    transition: opacity 0.8s ease; /* match this in C# delay */
}

    .page-container.fade-out[b-x3gsglvsr9] {
        opacity: 0;
    }

.qa-options[b-x3gsglvsr9] {
    margin-top: 5%;
    --accent-c: rgba(251,192,20,.75); /* underline color (default = gold) */
    --glow-color: rgba(251,192,20,1);
    --glow-blur: 0.5vh;
    --glow-depth: 1vh;
    /* keep these in sync with your badge size/margin */
    --badge-w: clamp(44px, 9vh, 72px);
    --badge-gap: clamp(6px, 1vh, 10px);
}

/* ---------- STATES ---------- */
.qa-option.correct[b-x3gsglvsr9] {
    opacity: 1; /* “ghost” them out */
    background: transparent; /* remove any highlight color */
    background-color: rgba(251,192,20, 0.2);
    transition: opacity .2s ease transform .5s ease background-color 0.2s ease; /* smooth fade */
    pointer-events: none; /* avoid clicks while dimmed */
    transform: scale(0.985);
}

/* Wrong answers go super transparent */
.qa-option.incorrect[b-x3gsglvsr9] {
    opacity: 0.15; /* “ghost” them out */
    background: transparent; /* remove any highlight color */
    background-color: rgba(255, 0, 0, 0.8);
    transition: opacity .2s ease transform .5s ease background-color 0.2s ease; /* smooth fade */
    pointer-events: none; /* avoid clicks while dimmed */
    transform: scale(0.985);
}

.qa-option.other[b-x3gsglvsr9] {
    opacity: 0.1; /* “ghost” them out */
    background: transparent; /* remove any highlight color */
    transition: opacity .2s ease transform .5s ease; /* smooth fade */
    pointer-events: none; /* avoid clicks while dimmed */
    transform: scale(0.985);
}

/* ---------- YOUR EXISTING (unchanged where not needed) ---------- */

.qa-question[b-x3gsglvsr9] {
    display: grid;
    margin-left: 15%;
    place-items: left;
    text-align: left;
    padding: clamp(12px, 2vh, 24px);
}

.qa-grid[b-x3gsglvsr9] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-left:5%;
    margin-right: 5%;
    width: auto;
    gap: 10vw;
    align-items: start;
    margin-top: 3vh;
}

.enlarge-text[b-x3gsglvsr9]{
    font-size: max(10px, 4vh);
    text-align:center;
    margin-bottom:1.2vh;
    margin-top:0vh;
}

.holder[b-x3gsglvsr9] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    transition: transform .08s ease
}

.clickable:hover[b-x3gsglvsr9] {
    transform: scale(0.985);
}

.leaderboard-container[b-x3gsglvsr9] {
    min-height: 100vh; /* fill screen height */
    display: flex;
    flex-direction: column;
    justify-content: center; /* vertical center */
    align-items: center; /* horizontal center */
    text-align: center;
    gap: 4vh; /* space between title and options */
}

.leaderboard-options[b-x3gsglvsr9] {
    display: flex;
    gap: 4vw; /* space between European and London */
    justify-content: center;
    align-items: center;
}

.enlarge-box[b-x3gsglvsr9] {
    display: inline-block; /* shrink to fit text */
    position: relative; /* needed for ::after positioning */
    text-align: center;
    align-content: center;
    align-items: center;
    padding-bottom: 0.5vh;
    /* start with no visible border */
    border-bottom: 2px solid transparent;
    --glow-color: #faf67b;
    --glow-blur: 0.3vh; /* softness of glow */
    --glow-depth: 2vh; /* how far it extends below */
    /* show border after 3s */
    animation: show-border-b-x3gsglvsr9 1s linear 1s forwards;
}

    .enlarge-box[b-x3gsglvsr9]::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -5%;
        height: 2px;
        background: var(--glow-color);
        filter: blur(var(--glow-blur));
        pointer-events: none;
        clip-path: inset(0 0 calc(-1 * var(--glow-depth)) 0);
        /* start hidden */
        opacity: 0;
        /* fade glow in after 3s */
        animation: show-glow-b-x3gsglvsr9 1s ease 1.2s forwards;
    }

/* makes the solid border appear */
@keyframes show-border-b-x3gsglvsr9 {
    to {
        border-bottom-color: #fbc014;
    }
}

/* fades in the glow */
@keyframes show-glow-b-x3gsglvsr9 {
    to {
        opacity: 1;
    }
}

.qa-item[b-x3gsglvsr9] {
    display: grid;
    grid-template-columns: 7% 58% 25% 10%;
    justify-content: space-between;
    padding: 0.8vh 0.5vh;
    border: 0px solid rgba(255,255,255,0.15);
    background: rgba(0,0,0,0);
    border-radius: 0px;
}

.end[b-x3gsglvsr9] {
    text-align:end;
}

.center[b-x3gsglvsr9] {
    text-align:center;
}

.internal-size[b-x3gsglvsr9] {
    font-size: clamp(10px, 2.5vh, 72px);
    font-weight: 450;
    -webkit-text-stroke: 0.5px rgba(0,0,0,0.25);
}

.qa-title[b-x3gsglvsr9] {
    margin: 0 0 8px 0;
    font-size: clamp(10px, 3vh, 42px);
    font-family: VisaDialect;
    font-weight: 400;
    line-height: 2;
}

.qa-text[b-x3gsglvsr9] {
    margin: 0;
    line-height: 1.35;
}

.qa-options[b-x3gsglvsr9] {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(6px, 1vh, 10px);
    width: 73%;
}

/* Bigger + tighter option rows */
.qa-option[b-x3gsglvsr9] {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: clamp(60px, 9vh, 96px);
    padding-inline: clamp(6px, 1vh, 12px);
    background: transparent;
    color: #fff;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    text-align: left;
    column-gap: clamp(8px, 1.2vh, 12px);
    transition: transform .08s ease, background-color .2s ease, opacity .2s ease;
}

    .qa-option:active[b-x3gsglvsr9] {
        transform: scale(0.985);
    }

    .qa-option:hover[b-x3gsglvsr9] {
        transform: scale(0.995);
    }

    .qa-option:focus-visible[b-x3gsglvsr9] {
        outline: 2px solid #fbc014;
        outline-offset: 2px;
    }

.qa-badge[b-x3gsglvsr9] {
    background-color: #fbc014;
    background-image: linear-gradient(45deg, #fbc014, #faf67b, #fbc014);
    background-size: 100%;
    background-repeat: repeat;
    color: #1434cb;
    -webkit-text-stroke: 0.5px rgba(0,0,0,0.25);
    text-shadow: 0 1px 0 rgba(0,0,0,0.2);
    height: clamp(44px, 9vh, 72px);
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    margin-right: clamp(6px, 1vh, 10px);
    border: 2px solid #fbc014;
    border-radius: 0;
    font-weight: 800;
    font-size: clamp(18px, 3vh, 32px);
    flex: 0 0 auto;
    box-shadow: 0 0 12px 2px rgba(251,192,20,.75);
}

/* Label now uses the variable accent for the underline */
.qa-label[b-x3gsglvsr9] {
    display: flex;
    position: relative;
    align-items: center;
    flex: 1 1 auto;
    min-height: inherit;
    padding-block: clamp(6px, 0.8vh, 10px);
    font-size: clamp(10px, 2vh, 72px);
    line-height: 1.5;
    white-space: normal;
    /* underline 10% up, color driven by --accent-c */
    background-image: linear-gradient(var(--accent-c), var(--accent-c));
    background-repeat: no-repeat;
    background-size: 100% 2px;
    background-position: 0 calc(100% - 10%);
}

    /* glow under the underline, color via --glow-color */
    .qa-label[b-x3gsglvsr9]::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 9%;
        height: 2px;
        background: var(--glow-color);
        filter: blur(var(--glow-blur));
        pointer-events: none;
        clip-path: inset(0 0 calc(-1 * var(--glow-depth)) 0);
    }

/* 1) Phone Portrait */
@media (max-width: 480px) and (orientation: portrait) {
    :root[b-x3gsglvsr9] {
        --brand-blue: rgb(20, 52, 203);
        --brand-blue-600: rgba(20, 52, 203, 0.92);
        --brand-blue-700: rgb(16, 42, 165);
        --brand-blue-800: rgb(12, 34, 134);
        --brand-yellow: #fbc014;
        --input-fs: 16px;
        --input-padY: 10px; /* a bit more touch-friendly */
        --input-line: 2px;
    }

    .data[b-x3gsglvsr9] {
        --glow-color: #faf67b;
        --glow-blur: 0.3vh; /* softness of glow */
        --glow-depth: 1vh; /* how far it extends below */
        position: relative;
        width: 70%;
        left: 15%;
    }

    .qa-label[b-x3gsglvsr9] {
        font-size: clamp(10px, 1.75vh, 72px);
        line-height:1.3;
    }

    .grid-container[b-x3gsglvsr9] {
        display: grid;
        column-width: auto;
        border: 0px;
        grid-template-columns: repeat(2, 1fr);
        gap: 1vh;
        grid-column-gap: 3vw;
        width: 80vw;
    }

    .qa-grid[b-x3gsglvsr9] {
        grid-template-columns: 1fr;
        width: auto;
        margin-top: 5vh;
        margin-right: 5%;
        row-gap: 0px;
    }

    .qa-title[b-x3gsglvsr9] {
        font-size: clamp(10px, 2vh, 42px);
        line-height: 1.8;
    }

    .reveal-fade[b-x3gsglvsr9] {
        margin-top: -4vh !important;
    }

    .reveal-fade-normal[b-x3gsglvsr9] {
        margin-top: 0vh !important;
    }

    .qa-question[b-x3gsglvsr9] {
        margin-left: 0%;
    }

    .qa-options[b-x3gsglvsr9] {
        margin-top: 0%;
        width: 100%;
    }

    .qa-badge[b-x3gsglvsr9] {
        height: clamp(44px, 7vh, 72px);
    }

    .qa-option[b-x3gsglvsr9] {
        min-height: clamp(44px, 7vh, 72px);
    }

    .upper-img[b-x3gsglvsr9] {
        height: clamp(40px, 4vh, 200px);
        width: auto;
    }

    .large[b-x3gsglvsr9] {
        font-family: 'VisaDialect';
        font-size: max(10px, 12.5vw);
        font-weight: 700;
        /*-webkit-animation: glow 1s ease-in-out infinite alternate;
    -moz-animation: glow 1s ease-in-out infinite alternate;
    animation: glow 1s ease-in-out infinite alternate;*/
        -webkit-font-smoothing: antialiased;
        text-rendering: optimizeLegibility;
    }

    h2.top[b-x3gsglvsr9] {
        font-family: 'VisaDialect';
        font-size: max(10px, 5.5vw);
        font-weight: 600;
        color: rgb(255,255,255);
    }

    h2.top2[b-x3gsglvsr9] {
        font-family: 'VisaDialect';
        font-size: max(10px, 4.5vw);
        font-weight: 600;
        color: rgb(255,255,255);
    }

    .yellow-gradient[b-x3gsglvsr9] {
        filter: drop-shadow(.1vw .1vw 0.2vw rgba(0,0,0,0.4));
    }

    .enlarge-text[b-x3gsglvsr9] {
        font-size: max(10px, 3vh);
    }

    .holder[b-x3gsglvsr9] {
        width: auto;
    }

    .qa-item[b-x3gsglvsr9] {
        padding: .1vh .1vh;
    }

    .internal-size[b-x3gsglvsr9] {
        font-size: clamp(10px, 1.75vh, 72px);
        font-weight: 450;
    }

    .upper[b-x3gsglvsr9] {
        margin-bottom: 8vh;
    }
}

/* 1) Phone Landscape */
@media (max-height: 480px) and (orientation: landscape) {
    :root[b-x3gsglvsr9] {
        --brand-blue: rgb(20, 52, 203);
        --brand-blue-600: rgba(20, 52, 203, 0.92);
        --brand-blue-700: rgb(16, 42, 165);
        --brand-blue-800: rgb(12, 34, 134);
        --brand-yellow: #fbc014;
        --input-fs: 16px;
        --input-padY: 10px; /* a bit more touch-friendly */
        --input-line: 2px;
    }

    .page-container[b-x3gsglvsr9] {
        position:relative;
    }

    .grid-container[b-x3gsglvsr9] {
        display: grid;
        column-width: auto;
        border: 0px;
        grid-template-columns: repeat(2, 1fr);
        gap: 2vh;
        grid-column-gap: 3vw;
        width: 50vw;
    }
}
/* 2) Tablet */
@media (min-width: 481px) and (max-width: 1024px) and (orientation: portrait) {
    :root[b-x3gsglvsr9] {
        --brand-blue: rgb(20, 52, 203);
        --brand-blue-600: rgba(20, 52, 203, 0.92);
        --brand-blue-700: rgb(16, 42, 165);
        --brand-blue-800: rgb(12, 34, 134);
        --brand-yellow: #fbc014;
        --input-fs: 18px;
        --input-padY: 12px;
        --input-line: 2px;
    }

    .data[b-x3gsglvsr9] {
        --glow-color: #faf67b;
        --glow-blur: 0.3vh; /* softness of glow */
        --glow-depth: 1vh; /* how far it extends below */
        position: relative;
        width: 70%;
        left: 15%;
    }

    .grid-container[b-x3gsglvsr9] {
        display: grid;
        border: 0px;
        grid-template-columns: repeat(2, 1fr);
        gap: 2vh;
        grid-column-gap: 3vw;
        width: 70vw;
    }

    .btn-submit[b-x3gsglvsr9] {
        padding: .8vw .8vh;
        font-size: clamp(16px, 2vh, 18px);
        line-height: 1.2;
    }

    .qa-grid[b-x3gsglvsr9] {
        grid-template-columns: 1fr;
        width: auto;
        margin-top: 5vh;
        margin-right: 5%;
        row-gap: 0px;
    }

    .qa-title[b-x3gsglvsr9] {
        font-size: clamp(10px, 2vh, 42px);
    }

    .reveal-fade[b-x3gsglvsr9] {
        margin-top: -3vh !important;
    }

    .qa-question[b-x3gsglvsr9] {
        margin-left: 0%;
    }

    .qa-options[b-x3gsglvsr9] {
        margin-top: 0%;
        width: 100%;
    }

    .qa-badge[b-x3gsglvsr9] {
        height: clamp(44px, 7vh, 72px);
    }

    .qa-option[b-x3gsglvsr9] {
        min-height: clamp(44px, 7vh, 72px);
    }

    .upper-img[b-x3gsglvsr9] {
        height: clamp(40px, 4vh, 200px);
        width: auto;
    }

    .large[b-x3gsglvsr9] {
        font-family: 'VisaDialect';
        font-size: max(10px, 12.5vw);
        font-weight: 700;
        /*-webkit-animation: glow 1s ease-in-out infinite alternate;
    -moz-animation: glow 1s ease-in-out infinite alternate;
    animation: glow 1s ease-in-out infinite alternate;*/
        -webkit-font-smoothing: antialiased;
        text-rendering: optimizeLegibility;
    }

    h2.top[b-x3gsglvsr9] {
        font-family: 'VisaDialect';
        font-size: max(10px, 5.5vw);
        font-weight: 600;
        color: rgb(255,255,255);
    }

    h2.top2[b-x3gsglvsr9] {
        font-family: 'VisaDialect';
        font-size: max(10px, 4.5vw);
        font-weight: 600;
        color: rgb(255,255,255);
    }

    .yellow-gradient[b-x3gsglvsr9] {
        filter: drop-shadow(.1vw 1vw 0.2vw rgba(0,0,0,0.4));
    }

    .holder[b-x3gsglvsr9] {
        width: auto;
    }

    .qa-item[b-x3gsglvsr9] {
        padding: .1vh .1vh;
    }

    .internal-size[b-x3gsglvsr9] {
        font-size: clamp(10px, 1.75vh, 72px);
        font-weight: 450;
    }

    .upper[b-x3gsglvsr9] {
        margin-bottom: 5vh;
    }
}
/* 3) Computer (landscape monitors/laptops) */
@media (min-width: 1025px) and (orientation: landscape) {
    h1[b-x3gsglvsr9] {
        font-family: 'VisaDialect';
        color: rgb(255,255,255);
        font-size: max(10px, 6vh);
        line-height: 1.1;
        margin: 0;
        transition: border-color .2s ease, box-shadow .2s ease;
    }

    :root[b-x3gsglvsr9] {
        --brand-blue: rgb(20, 52, 203);
        --brand-blue-600: rgba(20, 52, 203, 0.92);
        --brand-blue-700: rgb(16, 42, 165);
        --brand-blue-800: rgb(12, 34, 134);
        --brand-yellow: #fbc014;
        --input-fs: 20px;
        --input-padY: 12px;
        --input-line: 2px;
    }

    .grid-container[b-x3gsglvsr9] {
        display: grid;
        border: 0px;
        grid-template-columns: repeat(2, 1fr);
        gap: 5vh;
        grid-column-gap: 5vw;
        width: 50vw;
    }

    .btn-submit[b-x3gsglvsr9] {
        font-size: clamp(16px, 2vh, 18px);
        line-height: 1.2;
    }
}
/* 4) Computer vertical (portrait monitors) */
@media (min-width: 1025px) and (orientation: portrait) {
    :root[b-x3gsglvsr9] {
        --brand-blue: rgb(20, 52, 203);
        --brand-blue-600: rgba(20, 52, 203, 0.92);
        --brand-blue-700: rgb(16, 42, 165);
        --brand-blue-800: rgb(12, 34, 134);
        --brand-yellow: #fbc014;
        --input-fs: 18px;
        --input-padY: 12px;
        --input-line: 2px;
    }

    .data[b-x3gsglvsr9] {
        --glow-color: #faf67b;
        --glow-blur: 0.3vh; /* softness of glow */
        --glow-depth: 1vh; /* how far it extends below */
        position: relative;
        width: 70%;
        left: 15%;
    }

    .grid-container[b-x3gsglvsr9] {
        display: grid;
        border: 0px;
        grid-template-columns: repeat(2, 1fr);
        gap: 2vh;
        grid-column-gap: 3vw;
        width: 70vw;
    }

    .btn-submit[b-x3gsglvsr9] {
        padding: .8vw .8vh;
        font-size: clamp(16px, 2vh, 18px);
        line-height: 1.2;
    }

    .qa-grid[b-x3gsglvsr9] {
        grid-template-columns: 1fr;
        width: auto;
        margin-top: 5vh;
        margin-right: 5%;
        row-gap: 0px;
    }

    .qa-title[b-x3gsglvsr9] {
        font-size: clamp(10px, 2vh, 42px);
    }

    .reveal-fade[b-x3gsglvsr9] {
        margin-top: -3vh !important;
    }

    .qa-question[b-x3gsglvsr9] {
        margin-left: 0%;
    }

    .qa-options[b-x3gsglvsr9] {
        margin-top: 0%;
        width: 100%;
    }

    .qa-badge[b-x3gsglvsr9] {
        height: clamp(44px, 7vh, 72px);
    }

    .qa-option[b-x3gsglvsr9] {
        min-height: clamp(44px, 7vh, 72px);
    }

    .upper-img[b-x3gsglvsr9] {
        height: clamp(40px, 4vh, 200px);
        width: auto;
    }

    .large[b-x3gsglvsr9] {
        font-family: 'VisaDialect';
        font-size: max(10px, 12.5vw);
        font-weight: 700;
        /*-webkit-animation: glow 1s ease-in-out infinite alternate;
    -moz-animation: glow 1s ease-in-out infinite alternate;
    animation: glow 1s ease-in-out infinite alternate;*/
        -webkit-font-smoothing: antialiased;
        text-rendering: optimizeLegibility;
    }

    h2.top[b-x3gsglvsr9] {
        font-family: 'VisaDialect';
        font-size: max(10px, 5.5vw);
        font-weight: 600;
        color: rgb(255,255,255);
    }

    h2.top2[b-x3gsglvsr9] {
        font-family: 'VisaDialect';
        font-size: max(10px, 4.5vw);
        font-weight: 600;
        color: rgb(255,255,255);
    }

    .yellow-gradient[b-x3gsglvsr9] {
        filter: drop-shadow(.1vw 1vw 0.2vw rgba(0,0,0,0.4));
    }

    .holder[b-x3gsglvsr9] {
        width: auto;
    }

    .qa-item[b-x3gsglvsr9] {
        padding: .1vh .1vh;
    }

    .internal-size[b-x3gsglvsr9] {
        font-size: clamp(10px, 1.75vh, 72px);
        font-weight: 450;
    }

    .upper[b-x3gsglvsr9] {
        margin-bottom: 5vh;
    }
}
/* /Components/Pages/Privacy.razor.rz.scp.css */
/* Optional: avoid faux styles */
:root[b-hykhv5hgis] {
    font-synthesis: none;
}

.reveal-ltr[b-hykhv5hgis] {
    /* solid mask that we’ll grow from 0% width to 100% */
    -webkit-mask-image: linear-gradient(#000, #000);
    mask-image: linear-gradient(#000, #000);
    -webkit-mask-size: 0% 100%;
    mask-size: 0% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    /* optional soft edge at the reveal front */
    --feather: 14px;
    -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - var(--feather)), rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - var(--feather)), rgba(0,0,0,0) 100%);
    animation: reveal-ltr-b-hykhv5hgis 2s ease-out both;
    /* add a little delay if you like */
    animation-delay: 1s;
    line-height: 1.1; /* loosen the line box a bit */
    padding: 0.1em 0;
    animation-iteration-count: 1;
}

@keyframes reveal-ltr-b-hykhv5hgis {
    to {
        -webkit-mask-size: 100% 100%;
        mask-size: 100% 100%;
    }
}

.page-container[b-hykhv5hgis] {
    position: fixed;
    width: 100%;
    padding-left: calc(2vw);
    padding-right: calc(3rem + 1vw);
    height: 85%;
    overflow-y: scroll;
    overflow-x: hidden;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none;
}

    .page-container[b-hykhv5hgis]::-webkit-scrollbar {
        display: none;
    }

.reveal-ltr2[b-hykhv5hgis] {
    /* solid mask that we’ll grow from 0% width to 100% */
    -webkit-mask-image: linear-gradient(#000, #000);
    mask-image: linear-gradient(#000, #000);
    -webkit-mask-size: 0% 100%;
    mask-size: 0% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    /* optional soft edge at the reveal front */
    --feather: 14px;
    -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - var(--feather)), rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - var(--feather)), rgba(0,0,0,0) 100%);
    animation: reveal-ltr2-b-hykhv5hgis 3s ease-out both;
    /* add a little delay if you like */
    animation-delay: 2s;
    line-height: 1.1; /* loosen the line box a bit */
    padding: 0.1em 0;
    animation-iteration-count: 1;
}

@keyframes reveal-ltr2-b-hykhv5hgis {
    to {
        -webkit-mask-size: 100% 100%;
        mask-size: 100% 100%;
    }
}

.reveal-ltr3[b-hykhv5hgis] {
    width: 60vw;
    /* solid mask that we’ll grow from 0% width to 100% */
    -webkit-mask-image: linear-gradient(#000, #000);
    mask-image: linear-gradient(#000, #000);
    -webkit-mask-size: 0% 100%;
    mask-size: 0% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    /* optional soft edge at the reveal front */
    --feather: 14px;
    -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - var(--feather)), rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - var(--feather)), rgba(0,0,0,0) 100%);
    animation: reveal-ltr3-b-hykhv5hgis 2s ease-out both;
    /* add a little delay if you like */
    animation-delay: 3s;
    line-height: 1.1; /* loosen the line box a bit */
    padding: 0.1em 0;
    animation-iteration-count: 1;
}

@keyframes reveal-ltr3-b-hykhv5hgis {
    to {
        -webkit-mask-size: 100% 100%;
        mask-size: 100% 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal-ltr[b-hykhv5hgis] {
        animation: none;
        -webkit-mask-size: 100% 100%;
        mask-size: 100% 100%;
    }
    .reveal-ltr2[b-hykhv5hgis] {
        animation: none;
        -webkit-mask-size: 100% 100%;
        mask-size: 100% 100%;
    }
    .reveal-ltr3[b-hykhv5hgis] {
        animation: none;
        -webkit-mask-size: 100% 100%;
        mask-size: 100% 100%;
    }
}

h1[b-hykhv5hgis] {
    font-family: 'VisaDialect';
    color: rgb(255,255,255);
    font-size: clamp(15px, 6vw, 72px);
    line-height: 1.1;
    margin: 0;
    transition: border-color .2s ease, box-shadow .2s ease;
}

p[b-hykhv5hgis] {
    color: rgb(255,255,255);
}

li[b-hykhv5hgis] {
    font-family: VisaDialect;
    color: rgb(255,255,255);
}

span[b-hykhv5hgis] {
    font-family: VisaDialect;
    color: rgb(255,255,255);
}


h2[b-hykhv5hgis] {
    font-family: 'VisaDialect';
    color: rgb(255,255,255);    
}

.link[b-hykhv5hgis] {
    color: #fbc014;
    text-decoration: underline;
}

    .link:hover[b-hykhv5hgis],
    .link:focus[b-hykhv5hgis] {
        color: #fff;
        text-decoration-thickness: 2px;
    }

.btn-submit[b-hykhv5hgis] {
    background: rgb(255,255,255);
    color: #000;
    font-family: VisaDialect;
    font-weight: 500;
    border: 2px solid #fbc014;
    padding: .8vw .8vh;
    font-size: clamp(16px, 2vh, 18px);
    line-height: 1.2;
    border-radius: 0;
    cursor: pointer;
}

    .btn-submit:hover:not(:disabled)[b-hykhv5hgis] {
        background: #ddd;
    }

    .btn-submit:focus-visible[b-hykhv5hgis] {
        outline: none;
        box-shadow: 0 0 0 3px rgba(251, 192, 20, 0.35);
    }

    .btn-submit:disabled[b-hykhv5hgis] {
        opacity: .8;
        cursor: not-allowed;
    }


grid-item checkbox-item[b-hykhv5hgis] {
    line-height: 1.2; /* normalize text box height */
    width: 100%;
    background: transparent;
    color: #fff;
    border: none;
    border-bottom: 2px solid #fbc014; /* yellow line */
    padding: 10px 0; /* inside spacing */
    margin: 0; /* prevent stray margins */
    line-height: 1.2; /* normalize text box height */
    font-size: clamp(15px, 2vh, 72px);
    box-sizing: border-box; /* include borders in height calc */
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.grid-container[b-hykhv5hgis] {
    display: grid;
    border: 0px;
    grid-template-columns: repeat(1, 1fr);
    gap: 2vh;
    grid-column-gap: 3vw;
}

:root[b-hykhv5hgis] {
    --brand-blue: rgb(20, 52, 203);
    --brand-blue-600: rgba(20, 52, 203, 0.92);
    --brand-blue-700: rgb(16, 42, 165);
    --brand-blue-800: rgb(12, 34, 134);
    --brand-yellow: #fbc014;
}

.form-control[b-hykhv5hgis] {
    width: auto;
    height: auto;
    background: transparent;
    color: #fff;
    border: none;
    border-bottom: 2px solid #fbc014; /* yellow line */
    padding: 8px 0;
    outline: none;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    transition: border-color .2s ease;
    font-size: clamp(15px, 2vh, 72px);
    font-family: "VisaDialect";
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0 !important;
    -webkit-border-radius: 0; /* Safari/iOS */
}


    .form-control:hover[b-hykhv5hgis] {
        border-color: #ffd44e;
    }

    .form-control:focus[b-hykhv5hgis] {
        border-color: var(#fbc014);
        box-shadow: 0 0 0 3px rgba(251, 192, 20, 0);
    }

    /* dropdown list options */
    .form-control option[b-hykhv5hgis] {
        background-color: rgb(20, 52, 203);
        color: #fff;
        border: none; /* avoid odd grooves across UAs */
    }

        /* hovered option */
        .form-control option:hover[b-hykhv5hgis] {
            background-color: rgb(16, 42, 165);
            color: #fff;
        }

        /* selected/active option in the list */
        .form-control option:checked[b-hykhv5hgis],
        .form-control option:active[b-hykhv5hgis] {
            background-color: rgb(12, 34, 134);
            color: #fff;
        }

    /* optgroup label (if you use groups) */
    .form-control optgroup[b-hykhv5hgis] {
        background-color: rgba(20, 52, 203, 0.92);
        color: #e6eaff;
        font-weight: 600;
    }

    /* placeholder/empty option */
    .form-control:invalid[b-hykhv5hgis] {
        color: #a6aab8;
    }

    /* hide legacy arrow */
    .form-control[b-hykhv5hgis]::-ms-expand {
        display: none;
    }

    /* disabled */
    .form-control:disabled[b-hykhv5hgis] {
        opacity: .8;
        color: #fff;
        cursor: not-allowed;
    }

.upper[b-hykhv5hgis] {
    margin-bottom: 3rem;
}

.img-break[b-hykhv5hgis] {
    margin-bottom: 2rem;
}

.yellow-gradient[b-hykhv5hgis] {
    background-color: #fbc014;
    background-image: linear-gradient(45deg, #fbc014, #faf67b, #fbc014);
    background-size: 100%;
    background-repeat: repeat;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}

/* 1) Phone */
@media (max-width: 480px) {
    :root[b-hykhv5hgis] {
        --brand-blue: rgb(20, 52, 203);
        --brand-blue-600: rgba(20, 52, 203, 0.92);
        --brand-blue-700: rgb(16, 42, 165);
        --brand-blue-800: rgb(12, 34, 134);
        --brand-yellow: #fbc014;
        --input-fs: 16px;
        --input-padY: 10px; /* a bit more touch-friendly */
        --input-line: 2px;
    }

    .grid-container[b-hykhv5hgis] {
        display: grid;
        column-width: auto;
        border: 0px;
        grid-template-columns: repeat(2, 1fr);
        gap: 2vh;
        grid-column-gap: 3vw;
        width: 80vw;
    }
}

/* 2) Tablet */
@media (min-width: 481px) and (max-width: 1024px) {
    :root[b-hykhv5hgis] {
        --brand-blue: rgb(20, 52, 203);
        --brand-blue-600: rgba(20, 52, 203, 0.92);
        --brand-blue-700: rgb(16, 42, 165);
        --brand-blue-800: rgb(12, 34, 134);
        --brand-yellow: #fbc014;
        --input-fs: 18px;
        --input-padY: 12px;
        --input-line: 2px;
    }

    .grid-container[b-hykhv5hgis] {
        display: grid;
        border: 0px;
        grid-template-columns: repeat(2, 1fr);
        gap: 2vh;
        grid-column-gap: 3vw;
        width: 70vw;
    }
}

/* 3) Computer (landscape monitors/laptops) */
@media (min-width: 1025px) and (orientation: landscape) {
    :root[b-hykhv5hgis] {
        --brand-blue: rgb(20, 52, 203);
        --brand-blue-600: rgba(20, 52, 203, 0.92);
        --brand-blue-700: rgb(16, 42, 165);
        --brand-blue-800: rgb(12, 34, 134);
        --brand-yellow: #fbc014;
        --input-fs: 20px;
        --input-padY: 12px;
        --input-line: 2px;
    }

    .grid-container[b-hykhv5hgis] {
        display: grid;
        border: 0px;
        grid-template-columns: repeat(2, 1fr);
        gap: 2vh;
        grid-column-gap: 3vw;
        width: 70vw;
    }

    .page-container[b-hykhv5hgis] {
        position: fixed;
        width: 60vw;
        height: 84%;
        overflow-y: scroll;
        overflow-x: hidden;
        -ms-overflow-style: none; /* IE and Edge */
        scrollbar-width: none;
    }

        .page-container[b-hykhv5hgis]::-webkit-scrollbar {
            display: none;
        }
}

/* 4) Computer vertical (portrait monitors) */
@media (min-width: 1025px) and (orientation: portrait) {
    :root[b-hykhv5hgis] {
        --brand-blue: rgb(20, 52, 203);
        --brand-blue-600: rgba(20, 52, 203, 0.92);
        --brand-blue-700: rgb(16, 42, 165);
        --brand-blue-800: rgb(12, 34, 134);
        --brand-yellow: #fbc014;
        --input-fs: 22px; /* a touch larger for tall displays */
        --input-padY: 14px;
        --input-line: 3px; /* slightly bolder underline */
    }

    .grid-container[b-hykhv5hgis] {
        display: grid;
        border: 0px;
        grid-template-columns: repeat(2, 1fr);
        gap: 2vh;
        grid-column-gap: 3vw;
        width: 70vw;
    }
}
/* /Components/Pages/Quiz.razor.rz.scp.css */
/* Optional: avoid faux styles */
:root[b-5cyxpgngr3] {
    font-synthesis: none;
}

.reveal-ltr[b-5cyxpgngr3] {
    /* solid mask that we’ll grow from 0% width to 100% */
    -webkit-mask-image: linear-gradient(#000, #000);
    mask-image: linear-gradient(#000, #000);
    -webkit-mask-size: 0% 100%;
    mask-size: 0% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    /* optional soft edge at the reveal front */
    --feather: 14px;
    -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - var(--feather)), rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - var(--feather)), rgba(0,0,0,0) 100%);
    animation: reveal-ltr-b-5cyxpgngr3 2s ease-out both;
    /* add a little delay if you like */
    animation-delay: 1s;
    line-height: 1.1; /* loosen the line box a bit */
    padding: 0.1em 0;
    animation-iteration-count: 1;
}

@keyframes reveal-ltr-b-5cyxpgngr3 {
    to {
        -webkit-mask-size: 100% 100%;
        mask-size: 100% 100%;
    }
}

.reveal-ltr2[b-5cyxpgngr3] {
    /* solid mask that we’ll grow from 0% width to 100% */
    -webkit-mask-image: linear-gradient(#000, #000);
    mask-image: linear-gradient(#000, #000);
    -webkit-mask-size: 0% 100%;
    mask-size: 0% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    /* optional soft edge at the reveal front */
    --feather: 14px;
    -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - var(--feather)), rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - var(--feather)), rgba(0,0,0,0) 100%);
    animation: reveal-ltr2-b-5cyxpgngr3 3s ease-out both;
    /* add a little delay if you like */
    animation-delay: 2s;
    line-height: 1.1; /* loosen the line box a bit */
    padding: 0.1em 0;
    animation-iteration-count: 1;
}

@keyframes reveal-ltr2-b-5cyxpgngr3 {
    to {
        -webkit-mask-size: 100% 100%;
        mask-size: 100% 100%;
    }
}

.reveal-fade[b-5cyxpgngr3] {
    opacity: 0;
    animation: fadeIn-b-5cyxpgngr3 1s ease-out 1s forwards; /* 3s delay, 1s fade */
    margin-top: -5vh;
}

.reveal[b-5cyxpgngr3] {
    opacity: 0;
    animation: fadeIn-b-5cyxpgngr3 1s ease-out 1s forwards; /* 3s delay, 1s fade */
}

@keyframes fadeIn-b-5cyxpgngr3 {
    to {
        opacity: 1;
    }
}

/* wrapper creates the clipped glow */
.data[b-5cyxpgngr3] {
    --glow-color: #faf67b;
    --glow-blur: 0.3vh; /* softness of glow */
    --glow-depth: 1vh; /* how far it extends below */
    position: relative;
}

    /* bottom-only glow using clip-path */
    .data[b-5cyxpgngr3]::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -1px; /* sits right under the bottom border */
        height: 2px; /* thin base line to blur */
        background: var(--glow-color);
        filter: blur(var(--glow-blur));
        pointer-events: none;
        /* keep only the area below; negative bottom extends the clip downward */
        clip-path: inset(0 0 calc(-1 * var(--glow-depth)) 0);
    }

.reveal-ltr3[b-5cyxpgngr3] {
    /* solid mask that we’ll grow from 0% width to 100% */
    -webkit-mask-image: linear-gradient(#000, #000);
    mask-image: linear-gradient(#000, #000);
    -webkit-mask-size: 0% 100%;
    mask-size: 0% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    /* optional soft edge at the reveal front */
    --feather: 14px;
    -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - var(--feather)), rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - var(--feather)), rgba(0,0,0,0) 100%);
    animation: reveal-ltr3-b-5cyxpgngr3 2s ease-out both;
    /* add a little delay if you like */
    animation-delay: 3s;
    line-height: 1.1; /* loosen the line box a bit */
    padding: 0.1em 0;
    animation-iteration-count: 1;
}

@keyframes reveal-ltr3-b-5cyxpgngr3 {
    to {
        -webkit-mask-size: 100% 100%;
        mask-size: 100% 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal-ltr[b-5cyxpgngr3] {
        animation: none;
        -webkit-mask-size: 100% 100%;
        mask-size: 100% 100%;
    }

    .reveal-ltr2[b-5cyxpgngr3] {
        animation: none;
        -webkit-mask-size: 100% 100%;
        mask-size: 100% 100%;
    }

    .reveal-ltr3[b-5cyxpgngr3] {
        animation: none;
        -webkit-mask-size: 100% 100%;
        mask-size: 100% 100%;
    }
}

h1[b-5cyxpgngr3] {
    font-family: 'VisaDialect';
    color: rgb(255,255,255);
    font-size: max(10px, 4.5vh);
    line-height: 1.1;
    margin: 0;
    transition: border-color .2s ease, box-shadow .2s ease;
}

p[b-5cyxpgngr3] {
    font-family: VisaDialect;
    color: rgb(255,255,255);
}

br[b-5cyxpgngr3] {
    line-height: 0;
    display: block;
    margin: 1vh 0;
}

span[b-5cyxpgngr3] {
    font-family: VisaDialect;
    color: rgb(255,255,255);
}

.span-adapted[b-5cyxpgngr3] {
    font-family: VisaDialect;
    color: rgb(255,255,255);
    font-size: clamp(10px, 1.5vh, 72px);
}


h2[b-5cyxpgngr3] {
    font-family: 'VisaDialect';
    font-size: max(10px, 3vh);
    color: rgb(255,255,255);
}

    h2.top[b-5cyxpgngr3] {
        font-family: 'VisaDialect';
        font-size: max(10px, 4vh);
        font-weight: 600;
        color: rgb(255,255,255);
    }

    h2.top2[b-5cyxpgngr3] {
        font-family: 'VisaDialect';
        font-size: max(10px, 3.8vh);
        font-weight: 600;
        color: rgb(255,255,255);
    }

    h2.thanks[b-5cyxpgngr3] {
        font-family: 'VisaDialect';
        font-size: max(10px, 6vh);
        font-weight: 550;
        color: rgb(255,255,255);
        margin-bottom: 4vh;
    }

    h2.thanks2[b-5cyxpgngr3] {
        font-family: 'VisaDialect';
        font-size: max(10px, 3.5vh);
        font-weight: 400;
        color: rgb(255,255,255);
        line-height: 1.2;
    }

.qr-code-img[b-5cyxpgngr3] {
    height: 32vh;
    width: auto;
    margin-top: 3vh;
    margin-bottom: 3vh;
}

.score-break[b-5cyxpgngr3] {
    margin-bottom: 15vh;
}

.final-break[b-5cyxpgngr3] {
    margin-bottom: 6vh;
}

.yellow-gradient[b-5cyxpgngr3] {
    color: transparent;
    background-image: linear-gradient(170deg, #ecbf32 0%, #ecbf32 40%, #fff773 60%, #ecbf32 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 0.1vw rgba(255, 250, 39, 0.9);
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
    filter: drop-shadow(.1vw 1vh 0.2vh rgba(0,0,0,0.4));
}

.large[b-5cyxpgngr3] {
    font-family: 'VisaDialect';
    font-size: max(10px, 14vh);
    font-weight: 700;
    /*-webkit-animation: glow 1s ease-in-out infinite alternate;
    -moz-animation: glow 1s ease-in-out infinite alternate;
    animation: glow 1s ease-in-out infinite alternate;*/
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

@-webkit-keyframes glow {
    from {
        text-shadow: 0 0 0.25px rgba(255,255,255,0.35), 0 0 0.5px rgba(251,192,20,0.25);
    }

    to {
        text-shadow: 0 0 0.5px rgba(255,255,255,0.5), 0 0 1px rgba(251,192,20,0.35);
    }
}

@keyframes glow-b-5cyxpgngr3 {
    from {
        text-shadow: 0 0 0.25px rgba(255,255,255,0.35), 0 0 0.5px rgba(251,192,20,0.25);
    }

    to {
        text-shadow: 0 0 0.5px rgba(255,255,255,0.5), 0 0 1px rgba(251,192,20,0.35);
    }
}


.link[b-5cyxpgngr3] {
    color: #fbc014;
    text-decoration: underline;
}

    .link:hover[b-5cyxpgngr3],
    .link:focus[b-5cyxpgngr3] {
        color: #fff;
        text-decoration-thickness: 2px;
    }

.btn-submit[b-5cyxpgngr3] {
    background: rgb(255,255,255);
    color: #000;
    font-family: VisaDialect;
    font-weight: 500;
    border: 0.3vh solid #fbc014;
    padding: .8vw .8vh;
    font-size: clamp(16px, 2vh, 72px);
    line-height: 1.2;
    border-radius: 0;
    transition: opacity .5s ease, box-shadow .5s ease, border 0.5s ease;
    cursor: pointer;
}

    .btn-submit:hover:not(:disabled)[b-5cyxpgngr3] {
        background: #fff;
        box-shadow: 0 0 1vh #fbc014;
    }

    .btn-submit:focus-visible[b-5cyxpgngr3] {
        outline: none;
        box-shadow: 0 0 0 3px rgba(251, 192, 20, 0.35);
    }

    .btn-submit:disabled[b-5cyxpgngr3] {
        background: rgb(200,200,200);
        opacity: .3;
        cursor: not-allowed;
    }


grid-item checkbox-item[b-5cyxpgngr3] {
    line-height: 1.2; /* normalize text box height */
    width: 100%;
    background: transparent;
    color: #fff;
    border: none;
    border-bottom: 2px solid #fbc014; /* yellow line */
    padding: 10px 0; /* inside spacing */
    margin: 0; /* prevent stray margins */
    line-height: 1.2; /* normalize text box height */
    font-size: clamp(15px, 2vh, 72px);
    box-sizing: border-box; /* include borders in height calc */
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.grid-container[b-5cyxpgngr3] {
    display: grid;
    border: 0px;
    grid-template-columns: repeat(1, 1fr);
    gap: 2vh;
    grid-column-gap: 3vw;
}

:root[b-5cyxpgngr3] {
    --brand-blue: rgb(20, 52, 203);
    --brand-blue-600: rgba(20, 52, 203, 0.92);
    --brand-blue-700: rgb(16, 42, 165);
    --brand-blue-800: rgb(12, 34, 134);
    --brand-yellow: #fbc014;
}

.qr-img-holder[b-5cyxpgngr3] {
    display: grid;
    justify-content: center; /* Horizontal alignment */
    align-items: center;
}

.form-control[b-5cyxpgngr3] {
    width: 100%;
    height: auto;
    background: transparent;
    color: #fff;
    border: none;
    border-bottom: 2px solid #fbc014; /* yellow line */
    padding: 5px 0;
    outline: none;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    transition: border-color .2s ease;
    font-size: clamp(15px, 2vh, 72px);
    font-family: "VisaDialect";
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0 !important;
    -webkit-border-radius: 0; /* Safari/iOS */
}

    .form-control:hover[b-5cyxpgngr3] {
        border-color: #ffd44e;
    }

    .form-control:focus[b-5cyxpgngr3] {
        border-color: var(#fbc014);
        box-shadow: 0 0 0 3px rgba(251, 192, 20, 0);
    }

    /* dropdown list options */
    .form-control option[b-5cyxpgngr3] {
        background-color: rgb(20, 52, 203);
        font-family: "VisaDialect";
        color: #fff;
        border: none; /* avoid odd grooves across UAs */
    }

        /* hovered option */
        .form-control option:hover[b-5cyxpgngr3] {
            background-color: rgb(16, 42, 165);
            color: #fff;
        }

        /* selected/active option in the list */
        .form-control option:checked[b-5cyxpgngr3],
        .form-control option:active[b-5cyxpgngr3] {
            background-color: rgb(12, 34, 134);
            color: #fff;
        }

    /* optgroup label (if you use groups) */
    .form-control optgroup[b-5cyxpgngr3] {
        background-color: rgba(20, 52, 203, 0.92);
        color: #e6eaff;
        font-weight: 600;
    }

    /* placeholder/empty option */
    .form-control:invalid[b-5cyxpgngr3] {
        color: #a6aab8;
    }

    /* hide legacy arrow */
    .form-control[b-5cyxpgngr3]::-ms-expand {
        display: none;
    }

    /* disabled */
    .form-control:disabled[b-5cyxpgngr3] {
        opacity: .8;
        color: #fff;
        cursor: not-allowed;
    }

.upper-img[b-5cyxpgngr3] {
    height: clamp(40px, 8vh, 200px);
    width: auto;
}

.upper[b-5cyxpgngr3] {
    margin-bottom: 4vh;
}

.img-break[b-5cyxpgngr3] {
    margin-bottom: 4vh;
}

.center-adjust[b-5cyxpgngr3] {
    margin-bottom: -4vh;
    display: flex;
    align-items: center; /* vertical center */
    justify-content: center;
}

.page-container[b-5cyxpgngr3] {
    position: fixed;
    width: 100%;
    height: 99%;
    padding-left: calc(2vw);
    padding-right: calc(3rem + 1vw);
    padding-bottom: calc(var(--footer-space) + env(safe-area-inset-bottom, 0px));
    overflow-y: scroll;
    overflow-x: hidden;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none;
    opacity: 1;
    transition: opacity 0.8s ease; /* match this in C# delay */
}

    .page-container.fade-out[b-5cyxpgngr3] {
        opacity: 0;
    }

.qa-options[b-5cyxpgngr3] {
    margin-top: 1%;
    --accent-c: rgba(251,192,20,.75); /* underline color (default = gold) */
    --glow-color: rgba(251,192,20,1);
    --glow-blur: 0.5vh;
    --glow-depth: 1vh;
    /* keep these in sync with your badge size/margin */
    --badge-w: clamp(44px, 9vh, 72px);
    --badge-gap: clamp(6px, 1vh, 10px);
}

/* ---------- STATES ---------- */
.qa-option.correct[b-5cyxpgngr3] {
    opacity: 1; /* “ghost” them out */
    background: transparent; /* remove any highlight color */
    background-color: rgba(251,192,20, 0.2);
    transition: opacity .2s ease transform .5s ease background-color 0.2s ease; /* smooth fade */
    pointer-events: none; /* avoid clicks while dimmed */
    transform: scale(0.985);
}

/* Wrong answers go super transparent */
.qa-option.incorrect[b-5cyxpgngr3] {
    opacity: 0.15; /* “ghost” them out */
    background: transparent; /* remove any highlight color */
    background-color: rgba(255, 0, 0, 0.8);
    transition: opacity .2s ease transform .5s ease background-color 0.2s ease; /* smooth fade */
    pointer-events: none; /* avoid clicks while dimmed */
    transform: scale(0.985);
}

.qa-option.other[b-5cyxpgngr3] {
    opacity: 0.1; /* “ghost” them out */
    background: transparent; /* remove any highlight color */
    transition: opacity .2s ease transform .5s ease; /* smooth fade */
    pointer-events: none; /* avoid clicks while dimmed */
    transform: scale(0.985);
}

/* ---------- YOUR EXISTING (unchanged where not needed) ---------- */

.qa-question[b-5cyxpgngr3] {
    display: grid;
    margin-left: 15%;
    place-items: left;
    text-align: left;
    padding: clamp(12px, 2vh, 12px);
}

.qa-grid[b-5cyxpgngr3] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: clamp(16px, 3vw, 32px);
    align-items: start;
    margin-top: 12vh;
}

.qa-title[b-5cyxpgngr3] {
    margin-bottom: 2vh;
    font-size: clamp(10px, 2.5vh, 55px);
    font-family: VisaDialect;
    font-weight: 400;
    line-height: 1.25;
}

.more-space[b-5cyxpgngr3] {
}

.qa-text[b-5cyxpgngr3] {
    margin: 0;
    line-height: 1.35;
}

.gridsys[b-5cyxpgngr3] {
    display: grid;
    grid-template-columns: 50% 50%;
    margin-top: 18vh;
}

.qa-options[b-5cyxpgngr3] {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(6px, 1vh, 10px);
    width: 73%;
}

/* Bigger + tighter option rows */
.qa-option[b-5cyxpgngr3] {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: clamp(60px, 9vh, 96px);
    padding-inline: clamp(6px, 1vh, 12px);
    background: transparent;
    color: #fff;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    text-align: left;
    column-gap: clamp(8px, 1.2vh, 12px);
    transition: transform .08s ease, background-color .2s ease, opacity .2s ease;
}

    .qa-option:active[b-5cyxpgngr3] {
        transform: scale(0.985);
    }

    .qa-option:hover[b-5cyxpgngr3] {
        transform: scale(0.995);
    }

    .qa-option:focus-visible[b-5cyxpgngr3] {
        outline: 2px solid #fbc014;
        outline-offset: 2px;
    }

.qa-badge[b-5cyxpgngr3] {
    background-color: #fbc014;
    background-image: linear-gradient(135deg, #fbc014, #faf67b, #fbc014);
    background-size: 100%;
    background-repeat: repeat;
    color: #1434cb;
    -webkit-text-stroke: 0.5px rgba(0,0,0,0.25);
    text-shadow: 0 1px 0 rgba(0,0,0,0.2);
    height: clamp(44px, 9vh, 72px);
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    margin-right: clamp(6px, 1vh, 10px);
    border: 2px solid #fbc014;
    border-radius: 0;
    font-weight: 500;
    font-size: clamp(18px, 3vh, 32px);
    flex: 0 0 auto;
    box-shadow: 0 0 12px 2px rgba(251,192,20,.75);
}

/* Label now uses the variable accent for the underline */
.qa-label[b-5cyxpgngr3] {
    display: flex;
    position: relative;
    align-items: center;
    flex: 1 1 auto;
    min-height: inherit;
    padding-block: clamp(6px, 0.8vh, 10px);
    font-size: clamp(10px, 2vh, 55px);
    line-height: 1.5;
    white-space: normal;
    /* underline 10% up, color driven by --accent-c */
    background-image: linear-gradient(var(--accent-c), var(--accent-c));
    background-repeat: no-repeat;
    background-size: 100% 2px;
    background-position: 0 calc(100% - 10%);
}

    /* glow under the underline, color via --glow-color */
    .qa-label[b-5cyxpgngr3]::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 9%;
        height: 2px;
        background: var(--glow-color);
        filter: blur(var(--glow-blur));
        pointer-events: none;
        clip-path: inset(0 0 calc(-1 * var(--glow-depth)) 0);
    }

/* 1) Phone Portrait */
@media (max-width: 480px) and (orientation: portrait) {
    :root[b-5cyxpgngr3] {
        --brand-blue: rgb(20, 52, 203);
        --brand-blue-600: rgba(20, 52, 203, 0.92);
        --brand-blue-700: rgb(16, 42, 165);
        --brand-blue-800: rgb(12, 34, 134);
        --brand-yellow: #fbc014;
        --input-fs: 16px;
        --input-padY: 10px; /* a bit more touch-friendly */
        --input-line: 2px;
    }

    .qa-label[b-5cyxpgngr3] {
        font-size: clamp(10px, 1.75vh, 55px);
        line-height: 1.3;
    }

    .grid-container[b-5cyxpgngr3] {
        display: grid;
        column-width: auto;
        border: 0px;
        grid-template-columns: repeat(2, 1fr);
        gap: 2vh;
        grid-column-gap: 3vw;
        width: 80vw;
    }

    .qa-grid[b-5cyxpgngr3] {
        grid-template-columns: 1fr;
        width: 100%;
        margin-top: 6vh;
        row-gap: 0px;
    }

    .qa-title[b-5cyxpgngr3] {
        font-size: clamp(10px, 2vh, 55px);
        line-height: 1.25;
    }

    .reveal-fade[b-5cyxpgngr3] {
        margin-top: -3vh !important;
    }

    .qa-question[b-5cyxpgngr3] {
        margin-left: 0%;
    }

    .qa-options[b-5cyxpgngr3] {
        margin-top: 0%;
        width: 100%;
    }

    .qa-badge[b-5cyxpgngr3] {
        height: clamp(44px, 6vh, 72px);
    }

    .qa-option[b-5cyxpgngr3] {
        min-height: clamp(44px, 7vh, 72px);
    }

    .upper-img[b-5cyxpgngr3] {
        height: clamp(40px, 4vh, 200px);
        width: auto;
    }

    .large[b-5cyxpgngr3] {
        font-family: 'VisaDialect';
        font-size: max(10px, 12.5vw);
        font-weight: 700;
        /*-webkit-animation: glow 1s ease-in-out infinite alternate;
    -moz-animation: glow 1s ease-in-out infinite alternate;
    animation: glow 1s ease-in-out infinite alternate;*/
        -webkit-font-smoothing: antialiased;
        text-rendering: optimizeLegibility;
    }

    h2.top[b-5cyxpgngr3] {
        font-family: 'VisaDialect';
        font-size: max(10px, 5.5vw);
        font-weight: 600;
        color: rgb(255,255,255);
    }

    h2.top2[b-5cyxpgngr3] {
        font-family: 'VisaDialect';
        font-size: max(10px, 4.5vw);
        font-weight: 600;
        color: rgb(255,255,255);
    }

    .yellow-gradient[b-5cyxpgngr3] {
        filter: drop-shadow(.1vw 1vw 0.2vw rgba(0,0,0,0.4));
    }

    h2.thanks[b-5cyxpgngr3] {
        font-size: max(10px, 6vw);
        margin-bottom: 4vh;
    }

    h2.thanks2[b-5cyxpgngr3] {
        font-size: max(10px, 4.5vw);
    }

    .qr-img-holder[b-5cyxpgngr3] {
        margin-top: 6vh;
        margin-bottom: 3vh;
        display: grid;
        justify-content: center; /* Horizontal alignment */
        align-items: center;
    }

    .button-holder[b-5cyxpgngr3] {
        display: grid;
        justify-content: center; /* Horizontal alignment */
        align-items: center;
    }

    .qr-code-img[b-5cyxpgngr3] {
        height: 20vh;
        width: auto;
        margin-top: 3vh;
        margin-bottom: 3vh;
    }

    .final-break[b-5cyxpgngr3] {
        margin-bottom: 10vh;
    }

    .gridsys[b-5cyxpgngr3] {
        margin-top: 0vh;
        grid-template-columns: 100%;
    }
}

/* 1) Phone Landscape */
@media (max-height: 480px) and (orientation: landscape) {
    :root[b-5cyxpgngr3] {
        --brand-blue: rgb(20, 52, 203);
        --brand-blue-600: rgba(20, 52, 203, 0.92);
        --brand-blue-700: rgb(16, 42, 165);
        --brand-blue-800: rgb(12, 34, 134);
        --brand-yellow: #fbc014;
        --input-fs: 16px;
        --input-padY: 10px; /* a bit more touch-friendly */
        --input-line: 2px;
    }

    .page-container[b-5cyxpgngr3] {
        position: relative;
        overflow-x: hidden;
    }

    .grid-container[b-5cyxpgngr3] {
        display: grid;
        column-width: auto;
        border: 0px;
        grid-template-columns: repeat(2, 1fr);
        gap: 2vh;
        grid-column-gap: 3vw;
        width: 50vw;
    }
}
/* 2) Tablet */
@media (min-width: 481px) and (max-width: 1024px) and (orientation: portrait) {
    :root[b-5cyxpgngr3] {
        --brand-blue: rgb(20, 52, 203);
        --brand-blue-600: rgba(20, 52, 203, 0.92);
        --brand-blue-700: rgb(16, 42, 165);
        --brand-blue-800: rgb(12, 34, 134);
        --brand-yellow: #fbc014;
        --input-fs: 18px;
        --input-padY: 12px;
        --input-line: 2px;
    }

    .gridsys[b-5cyxpgngr3] {
        margin-top: 0vh;
        grid-template-columns: 100%;
    }

    .grid-container[b-5cyxpgngr3] {
        display: grid;
        border: 0px;
        grid-template-columns: repeat(2, 1fr);
        gap: 2vh;
        grid-column-gap: 3vw;
        width: 70vw;
    }

    .btn-submit[b-5cyxpgngr3] {
        font-size: clamp(16px, 2vh, 72px);
        line-height: 1.2;
    }

    .qa-grid[b-5cyxpgngr3] {
        grid-template-columns: 1fr;
        width: 90%;
        margin-left: 5%;
        margin-top: 6vh;
        row-gap: 3vh;
    }

    .qa-label[b-5cyxpgngr3] {
        font-size: clamp(10px, 1.75vh, 55px);
    }

    .reveal-fade[b-5cyxpgngr3] {
        margin-top: -3vh !important;
    }

    .qa-question[b-5cyxpgngr3] {
        margin-left: 0%;
    }

    .qa-options[b-5cyxpgngr3] {
        margin-top: 0%;
        width: 100%;
    }

    .qa-badge[b-5cyxpgngr3] {
        height: clamp(44px, 6vh, 72px);
    }

    .qa-option[b-5cyxpgngr3] {
        min-height: clamp(44px, 7vh, 72px);
    }

    .upper-img[b-5cyxpgngr3] {
        height: clamp(40px, 4vh, 200px);
        width: auto;
    }

    .large[b-5cyxpgngr3] {
        font-family: 'VisaDialect';
        font-size: max(10px, 12.5vw);
        font-weight: 700;
        /*-webkit-animation: glow 1s ease-in-out infinite alternate;
    -moz-animation: glow 1s ease-in-out infinite alternate;
    animation: glow 1s ease-in-out infinite alternate;*/
        -webkit-font-smoothing: antialiased;
        text-rendering: optimizeLegibility;
    }

    h2.top[b-5cyxpgngr3] {
        font-family: 'VisaDialect';
        font-size: max(10px, 5.5vw);
        font-weight: 600;
        color: rgb(255,255,255);
    }

    h2.top2[b-5cyxpgngr3] {
        font-family: 'VisaDialect';
        font-size: max(10px, 4.5vw);
        font-weight: 600;
        color: rgb(255,255,255);
    }

    .yellow-gradient[b-5cyxpgngr3] {
        filter: drop-shadow(.1vw 1vw 0.2vw rgba(0,0,0,0.4));
    }

    h2.thanks[b-5cyxpgngr3] {
        font-size: max(10px, 6vw);
        margin-bottom: 4vh;
    }

    h2.thanks2[b-5cyxpgngr3] {
        font-size: max(10px, 4.5vw);
    }

    .qr-img-holder[b-5cyxpgngr3] {
        margin-top: 6vh;
        margin-bottom: 3vh;
        display: grid;
        justify-content: center; /* Horizontal alignment */
        align-items: center;
    }

    .button-holder[b-5cyxpgngr3] {
        display: grid;
        justify-content: center; /* Horizontal alignment */
        align-items: center;
    }

    .qr-code-img[b-5cyxpgngr3] {
        height: 20vh;
        width: auto;
        margin-top: 3vh;
        margin-bottom: 3vh;
    }

    .final-break[b-5cyxpgngr3] {
        margin-bottom: 10vh;
    }

    .spacer[b-5cyxpgngr3] {
    }
}
/* 3) Computer (landscape monitors/laptops) */
@media (min-width: 1025px) and (orientation: landscape) {
    h1[b-5cyxpgngr3] {
        font-family: 'VisaDialect';
        color: rgb(255,255,255);
        font-size: max(10px, 6vh);
        line-height: 1.1;
        margin: 0;
        transition: border-color .2s ease, box-shadow .2s ease;
    }

    :root[b-5cyxpgngr3] {
        --brand-blue: rgb(20, 52, 203);
        --brand-blue-600: rgba(20, 52, 203, 0.92);
        --brand-blue-700: rgb(16, 42, 165);
        --brand-blue-800: rgb(12, 34, 134);
        --brand-yellow: #fbc014;
        --input-fs: 20px;
        --input-padY: 12px;
        --input-line: 2px;
    }

    .grid-container[b-5cyxpgngr3] {
        display: grid;
        border: 0px;
        grid-template-columns: repeat(2, 1fr);
        gap: 5vh;
        grid-column-gap: 5vw;
        width: 50vw;
    }

    .btn-submit[b-5cyxpgngr3] {
        font-size: clamp(16px, 2vh, 72px);
        line-height: 1.2;
    }
}
/* 4) Computer vertical (portrait monitors) */
@media (min-width: 1025px) and (orientation: portrait) {

    .gridsys[b-5cyxpgngr3] {
        margin-top: 0vh;
        grid-template-columns: 100%;
    }

    :root[b-5cyxpgngr3] {
        --brand-blue: rgb(20, 52, 203);
        --brand-blue-600: rgba(20, 52, 203, 0.92);
        --brand-blue-700: rgb(16, 42, 165);
        --brand-blue-800: rgb(12, 34, 134);
        --brand-yellow: #fbc014;
        --input-fs: 18px;
        --input-padY: 12px;
        --input-line: 2px;
    }

    .qa-label[b-5cyxpgngr3] {
        font-size: clamp(10px, 1.5vh, 55px);
        line-height: 1.3;
    }

    .grid-container[b-5cyxpgngr3] {
        display: grid;
        border: 0px;
        grid-template-columns: repeat(2, 1fr);
        gap: 2vh;
        grid-column-gap: 3vw;
        width: 70vw;
    }

    .btn-submit[b-5cyxpgngr3] {
        font-size: clamp(16px, 2vh, 72px);
        line-height: 1.2;
    }

    .qa-grid[b-5cyxpgngr3] {
        grid-template-columns: 1fr;
        width: 90%;
        margin-left: 5%;
        margin-top: 6vh;
        row-gap: 3vh;
    }

    .qa-title[b-5cyxpgngr3] {
        font-size: clamp(10px, 2vh, 55px);
    }

    .reveal-fade[b-5cyxpgngr3] {
        margin-top: -3vh !important;
    }

    .qa-question[b-5cyxpgngr3] {
        margin-left: 0%;
    }

    .qa-options[b-5cyxpgngr3] {
        margin-top: 0%;
        width: 100%;
    }

    .qa-badge[b-5cyxpgngr3] {
        height: clamp(44px, 6vh, 72px);
    }

    .qa-option[b-5cyxpgngr3] {
        min-height: clamp(44px, 7vh, 72px);
    }

    .upper-img[b-5cyxpgngr3] {
        height: clamp(40px, 4vh, 200px);
        width: auto;
    }

    .large[b-5cyxpgngr3] {
        font-family: 'VisaDialect';
        font-size: max(10px, 12.5vw);
        font-weight: 700;
        /*-webkit-animation: glow 1s ease-in-out infinite alternate;
    -moz-animation: glow 1s ease-in-out infinite alternate;
    animation: glow 1s ease-in-out infinite alternate;*/
        -webkit-font-smoothing: antialiased;
        text-rendering: optimizeLegibility;
    }

    h2.top[b-5cyxpgngr3] {
        font-family: 'VisaDialect';
        font-size: max(10px, 5vw);
        font-weight: 600;
        color: rgb(255,255,255);
    }

    h2.top2[b-5cyxpgngr3] {
        font-family: 'VisaDialect';
        font-size: max(10px, 4.5vw);
        font-weight: 600;
        color: rgb(255,255,255);
    }

    .yellow-gradient[b-5cyxpgngr3] {
        filter: drop-shadow(.1vw 1vw 0.2vw rgba(0,0,0,0.4));
    }

    h2.thanks[b-5cyxpgngr3] {
        font-size: max(10px, 6vw);
        margin-bottom: 4vh;
    }

    h2.thanks2[b-5cyxpgngr3] {
        font-size: max(10px, 4.5vw);
    }

    .qr-img-holder[b-5cyxpgngr3] {
        margin-top: 6vh;
        margin-bottom: 3vh;
        display: grid;
        justify-content: center; /* Horizontal alignment */
        align-items: center;
    }

    .button-holder[b-5cyxpgngr3] {
        display: grid;
        justify-content: center; /* Horizontal alignment */
        align-items: center;
    }

    .qr-code-img[b-5cyxpgngr3] {
        height: 22.5vh;
        width: auto;
        margin-top: 3vh;
        margin-bottom: 3vh;
    }

    .final-break[b-5cyxpgngr3] {
        margin-bottom: 10vh;
    }

    .center-container[b-5cyxpgngr3] {
        display: grid;
        width: 95%;
        justify-content: center;
        align-items: center;
    }
}
/* /Components/Starfield.razor.rz.scp.css */
.starfield[b-326rqegodt] {
    position: fixed; /* full-viewport background */
    inset: 0;
    pointer-events: none; /* never block clicks */
    overflow: hidden;
}
    .starfield.paused .twinkle[b-326rqegodt] {
        animation-play-state: paused;
    }

.star[b-326rqegodt] {
    position: absolute;
    opacity: var(--base-op, .25);
    transform-origin: center;
    filter: drop-shadow(0 0 2px rgba(255,255,255,.6));
    will-change: opacity, transform;
}

.twinkle[b-326rqegodt] {
    animation-name: twinkle-b-326rqegodt;
    animation-duration: var(--dur, 4s);
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}


@keyframes twinkle-b-326rqegodt {
    0%, 100% {
        opacity: var(--base-op, .25);
        transform: rotate(var(--rot, 0deg)) scale(1);
    }

    50% {
        opacity: 1;
        transform: rotate(var(--rot, 0deg)) scale(1.3);
    }
}
