/* /Components/Layout/AdminLayout.razor.rz.scp.css */
.admin-shell[b-knce725ura] {
    min-height: 100vh;
    display: grid;
    background: var(--color-surface);
}

.admin-sidebar[b-knce725ura] {
    background: var(--color-panel-strong);
    color: white;
}

.admin-brand[b-knce725ura] {
    min-height: 4.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-brand-mark[b-knce725ura] {
    width: 2.55rem;
    height: 2.55rem;
    display: grid;
    place-items: center;
    border-radius: 0.7rem;
    background: var(--color-accent);
    color: var(--color-panel-strong);
    font-weight: 900;
}

.admin-brand strong[b-knce725ura],
.admin-brand small[b-knce725ura] {
    display: block;
    line-height: 1.1;
}

.admin-brand small[b-knce725ura] {
    margin-top: 0.2rem;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.78rem;
}

.admin-nav[b-knce725ura],
.admin-logout[b-knce725ura] {
    display: flex;
    gap: 0.15rem;
    padding: 0.85rem;
    overflow-x: auto;
}

.admin-nav[b-knce725ura]  a,
.admin-logout button[b-knce725ura] {
    min-height: 2.75rem;
    display: flex;
    align-items: center;
    padding: 0.65rem 0.75rem;
    border-radius: 0.5rem;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.76);
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.admin-nav[b-knce725ura]  a.active,
.admin-nav[b-knce725ura]  a:hover,
.admin-logout button:hover[b-knce725ura] {
    background: rgba(255, 255, 255, 0.12);
    color: white;
}

.admin-main[b-knce725ura] {
    min-width: 0;
}

.admin-topbar[b-knce725ura] {
    min-height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem clamp(1rem, 2.5vw, 2rem);
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid var(--color-border);
    backdrop-filter: blur(12px);
}

.admin-topbar strong[b-knce725ura],
.admin-topbar .eyebrow[b-knce725ura] {
    display: block;
}

.admin-topbar a[b-knce725ura] {
    color: var(--color-primary);
    font-weight: 800;
    text-decoration: none;
}

.admin-content[b-knce725ura] {
    padding: clamp(1rem, 2.5vw, 2rem);
}

@media (min-width: 1451px) {
    .admin-shell[b-knce725ura] {
        grid-template-columns: 17rem 1fr;
    }

    .admin-sidebar[b-knce725ura] {
        position: sticky;
        top: 0;
        height: 100vh;
        display: flex;
        flex-direction: column;
    }

    .admin-nav[b-knce725ura] {
        flex-direction: column;
        overflow-x: visible;
    }

    .admin-logout[b-knce725ura] {
        margin-top: auto;
    }

    .admin-topbar[b-knce725ura] {
        position: sticky;
        top: 0;
        z-index: 10;
    }
}

@media (max-width: 1450px) {
    .admin-shell[b-knce725ura] {
        display: block;
    }

    .admin-sidebar[b-knce725ura] {
        position: sticky;
        top: 0;
        z-index: 30;
        box-shadow: 0 0.8rem 1.8rem rgba(24, 32, 44, 0.2);
    }

    .admin-brand[b-knce725ura] {
        min-height: 3.75rem;
        padding: 0.65rem 0.85rem;
    }

    .admin-brand-mark[b-knce725ura] {
        width: 2.2rem;
        height: 2.2rem;
    }

    .admin-nav[b-knce725ura],
    .admin-logout[b-knce725ura] {
        padding: 0.45rem 0.65rem;
        scrollbar-width: thin;
    }

    .admin-nav[b-knce725ura]  a,
    .admin-logout button[b-knce725ura] {
        min-height: 2.35rem;
        padding: 0.5rem 0.65rem;
    }

    .admin-logout[b-knce725ura] {
        padding-top: 0;
    }

    .admin-topbar[b-knce725ura] {
        min-height: 3.7rem;
        padding: 0.65rem 0.85rem;
    }

    .admin-content[b-knce725ura] {
        padding: 0.85rem;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.public-page[b-l3vm4viesk] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow-x: clip;
    background:
        linear-gradient(180deg, #fffaf1, #f5faf7 42%, #fffaf1);
    color: #18202c;
}

.public-header[b-l3vm4viesk] {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 250, 241, 0.9);
    border-bottom: 1px solid rgba(24, 32, 44, 0.1);
    backdrop-filter: blur(14px);
    box-shadow: 0 0.7rem 1.7rem rgba(24, 32, 44, 0.08);
    will-change: opacity, transform;
    animation: publicHeaderEnter-b-l3vm4viesk 1100ms 60ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

.public-main[b-l3vm4viesk] {
    flex: 1;
}

@keyframes publicHeaderEnter-b-l3vm4viesk {
    from {
        opacity: 0.82;
        transform: translate3d(0, -1.15rem, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .public-header[b-l3vm4viesk] {
        animation: none !important;
    }
}

.public-footer[b-l3vm4viesk] {
    min-height: 4rem;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem clamp(1rem, 4vw, 4rem);
    border-top: 1px solid rgba(24, 32, 44, 0.1);
    background:
        linear-gradient(135deg, #121923, #123f38);
    color: rgba(255, 255, 255, 0.78);
}

.public-footer div[b-l3vm4viesk],
.public-footer nav[b-l3vm4viesk] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.7rem;
}

.public-footer strong[b-l3vm4viesk] {
    color: white;
}

.public-footer span[b-l3vm4viesk] {
    color: rgba(255, 255, 255, 0.68);
}

.public-footer a[b-l3vm4viesk] {
    color: #ffd166;
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 640px) {
    .public-footer[b-l3vm4viesk] {
        align-items: flex-start;
        flex-direction: column;
        overflow-wrap: anywhere;
    }
}

#blazor-error-ui[b-l3vm4viesk] {
    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-l3vm4viesk] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.public-nav[b-uvp1rw8vrp] {
    min-height: 4.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 0.85rem clamp(1rem, 4vw, 4rem);
}

.public-brand[b-uvp1rw8vrp] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    color: #18202c;
    text-decoration: none;
}

.brand-mark[b-uvp1rw8vrp] {
    width: 2.6rem;
    height: 2.6rem;
    display: grid;
    place-items: center;
    border-radius: 0.7rem;
    background: #ffd166;
    color: #18202c;
    font-weight: 900;
    box-shadow: 0 0.7rem 1.5rem rgba(24, 32, 44, 0.12);
}

.brand-logo[b-uvp1rw8vrp] {
    width: clamp(4.2rem, 6vw, 5.6rem);
    height: clamp(4.2rem, 6vw, 5.6rem);
    display: block;
    flex: 0 0 auto;
    margin-block: -1.15rem;
    border-radius: 0.85rem;
    object-fit: contain;
    background: white;
    box-shadow: 0 0.85rem 1.8rem rgba(24, 32, 44, 0.18);
    transform: translateY(0.45rem);
}

.public-brand strong[b-uvp1rw8vrp],
.public-brand small[b-uvp1rw8vrp] {
    display: block;
    line-height: 1.1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.public-brand small[b-uvp1rw8vrp] {
    margin-top: 0.18rem;
    color: #6e6470;
    font-size: 0.78rem;
}

.public-brand .brand-description[b-uvp1rw8vrp] {
    max-width: clamp(13rem, 28vw, 28rem);
    color: #53616f;
    font-size: 0.72rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.public-nav-links[b-uvp1rw8vrp] {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.public-nav-links[b-uvp1rw8vrp]  a,
.public-nav-links a[b-uvp1rw8vrp] {
    min-height: 2.5rem;
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.75rem;
    border-radius: 0.55rem;
    color: #2f3542;
    font-weight: 800;
    text-decoration: none;
    transform: translateY(0);
    transition:
        transform 170ms ease,
        background-color 170ms ease,
        border-color 170ms ease,
        color 170ms ease,
        box-shadow 170ms ease;
}

.public-nav-links[b-uvp1rw8vrp]  a.active,
.public-nav-links[b-uvp1rw8vrp]  a:hover,
.public-nav-links a:hover[b-uvp1rw8vrp] {
    background: rgba(255, 209, 102, 0.28);
    color: #18202c;
    transform: translateY(-2px);
}

.public-nav-links[b-uvp1rw8vrp]  .nav-cta {
    background: #e85d4f;
    color: white;
    box-shadow: 0 0.75rem 1.35rem rgba(232, 93, 79, 0.22);
}

.public-nav-links[b-uvp1rw8vrp]  .nav-cta:hover {
    background: #c94e43;
    color: white;
    box-shadow: 0 0.9rem 1.6rem rgba(232, 93, 79, 0.3);
}

.public-nav-links[b-uvp1rw8vrp]  .nav-login {
    border: 1px solid rgba(24, 32, 44, 0.16);
    background: white;
    color: #14564c;
}

.public-nav-links[b-uvp1rw8vrp]  .nav-login.active,
.public-nav-links[b-uvp1rw8vrp]  .nav-login:hover {
    border-color: #14564c;
    background: #eef8f4;
    color: #0f4039;
    box-shadow: 0 0.75rem 1.35rem rgba(20, 86, 76, 0.13);
}

.nav-toggle[b-uvp1rw8vrp],
.nav-toggle-button[b-uvp1rw8vrp] {
    display: none;
}

@media (max-width: 760px) {
    .public-nav[b-uvp1rw8vrp] {
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
        box-sizing: border-box;
        gap: 0.65rem;
        padding: 0.75rem;
        overflow-x: clip;
    }

    .public-brand[b-uvp1rw8vrp] {
        flex: 1 1 0;
        max-width: calc(100% - 3.15rem);
        gap: 0.6rem;
    }

    .public-brand > span[b-uvp1rw8vrp] {
        min-width: 0;
    }

    .brand-logo[b-uvp1rw8vrp] {
        width: 3.7rem;
        height: 3.7rem;
        margin-block: -0.8rem;
        border-radius: 0.75rem;
        transform: translateY(0.25rem);
    }

    .public-brand .brand-description[b-uvp1rw8vrp] {
        max-width: 100%;
    }

    .nav-toggle-button[b-uvp1rw8vrp] {
        width: 2.55rem;
        height: 2.45rem;
        flex: 0 0 2.55rem;
        display: grid;
        align-content: center;
        gap: 0.28rem;
        padding: 0.55rem;
        border: 1px solid rgba(24, 32, 44, 0.15);
        border-radius: 0.55rem;
        cursor: pointer;
    }

    .nav-toggle-button span[b-uvp1rw8vrp] {
        height: 2px;
        border-radius: 999px;
        background: #18202c;
    }

    .public-nav-links[b-uvp1rw8vrp] {
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding-top: 0.5rem;
    }

    .public-nav-links[b-uvp1rw8vrp]  a,
    .public-nav-links a[b-uvp1rw8vrp] {
        width: 100%;
        justify-content: center;
    }

    .nav-toggle:checked ~ .public-nav-links[b-uvp1rw8vrp] {
        display: flex;
    }
}

@media (max-width: 380px) {
    .public-nav[b-uvp1rw8vrp] {
        padding-inline: 0.65rem;
    }

    .brand-logo[b-uvp1rw8vrp] {
        width: 3.35rem;
        height: 3.35rem;
    }

    .public-brand[b-uvp1rw8vrp] {
        max-width: calc(100% - 2.95rem);
        gap: 0.5rem;
    }

    .nav-toggle-button[b-uvp1rw8vrp] {
        width: 2.4rem;
        flex-basis: 2.4rem;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-8u8xg50h0n],
.components-reconnect-repeated-attempt-visible[b-8u8xg50h0n],
.components-reconnect-failed-visible[b-8u8xg50h0n],
.components-pause-visible[b-8u8xg50h0n],
.components-resume-failed-visible[b-8u8xg50h0n],
.components-rejoining-animation[b-8u8xg50h0n] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-8u8xg50h0n],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-8u8xg50h0n],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-8u8xg50h0n],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-8u8xg50h0n],
#components-reconnect-modal.components-reconnect-retrying[b-8u8xg50h0n],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-8u8xg50h0n],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-8u8xg50h0n],
#components-reconnect-modal.components-reconnect-failed[b-8u8xg50h0n],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-8u8xg50h0n] {
    display: block;
}


#components-reconnect-modal[b-8u8xg50h0n] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-8u8xg50h0n 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-8u8xg50h0n 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-8u8xg50h0n 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-8u8xg50h0n]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-8u8xg50h0n 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-8u8xg50h0n {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-8u8xg50h0n {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-8u8xg50h0n {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-8u8xg50h0n] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-8u8xg50h0n] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-8u8xg50h0n] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-8u8xg50h0n] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-8u8xg50h0n] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-8u8xg50h0n] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-8u8xg50h0n] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-8u8xg50h0n 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-8u8xg50h0n] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-8u8xg50h0n {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Layout/TeamLayout.razor.rz.scp.css */
.team-shell[b-du5q6qhh73] {
    min-height: 100vh;
    display: grid;
    background: #f4f7f4;
}

.team-sidebar[b-du5q6qhh73] {
    background: #18202c;
    color: white;
}

.team-brand[b-du5q6qhh73] {
    min-height: 4.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.team-brand-mark[b-du5q6qhh73] {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    width: 2.55rem;
    height: 2.55rem;
    display: grid;
    place-items: center;
    border-radius: 0.65rem 0.65rem 0.95rem 0.95rem;
    clip-path: polygon(50% 100%, 10% 78%, 10% 10%, 50% 0, 90% 10%, 90% 78%);
    background: var(--team-color, #2f9f98);
    color: var(--team-text, #ffffff) !important;
    font-weight: 950;
    letter-spacing: 0;
}

.team-brand-mark[b-du5q6qhh73]::before,
.team-topbar-logo-fallback[b-du5q6qhh73]::before {
    display: none;
}

.team-brand-logo[b-du5q6qhh73] {
    width: 2.55rem;
    height: 2.55rem;
    display: block;
    border-radius: 0.7rem;
    object-fit: contain;
    background: white;
}

.team-brand strong[b-du5q6qhh73],
.team-brand small[b-du5q6qhh73] {
    display: block;
    line-height: 1.1;
}

.team-brand small[b-du5q6qhh73] {
    margin-top: 0.2rem;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.78rem;
}

.team-nav[b-du5q6qhh73],
.team-logout[b-du5q6qhh73] {
    display: flex;
    gap: 0.15rem;
    padding: 0.85rem;
    overflow-x: auto;
}

.team-nav[b-du5q6qhh73]  a,
.team-logout button[b-du5q6qhh73] {
    min-height: 2.75rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.65rem 0.75rem;
    border-radius: 0.5rem;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.76);
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.team-nav[b-du5q6qhh73]  a.active,
.team-nav[b-du5q6qhh73]  a:hover,
.team-logout button:hover[b-du5q6qhh73] {
    background: rgba(255, 255, 255, 0.12);
    color: white;
}

.team-nav[b-du5q6qhh73]  span,
.team-logout span[b-du5q6qhh73] {
    width: 1.6rem;
    height: 1.6rem;
    display: grid;
    place-items: center;
    border-radius: 0.45rem;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.72rem;
}

.team-main[b-du5q6qhh73] {
    min-width: 0;
}

.team-topbar[b-du5q6qhh73] {
    min-height: 4.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem clamp(1rem, 2.5vw, 2rem);
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(24, 32, 44, 0.1);
    backdrop-filter: blur(12px);
}

.team-topbar-logo[b-du5q6qhh73] {
    width: 2.4rem;
    height: 2.4rem;
    display: grid;
    place-items: center;
    border-radius: 0.65rem;
    object-fit: contain;
    background: white;
    color: white;
    font-weight: 950;
    box-shadow: 0 0.7rem 1.4rem rgba(24, 32, 44, 0.12);
}

.team-topbar-logo-fallback[b-du5q6qhh73] {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-radius: 0.6rem 0.6rem 0.9rem 0.9rem;
    clip-path: polygon(50% 100%, 10% 78%, 10% 10%, 50% 0, 90% 10%, 90% 78%);
    background: var(--team-color, #2f9f98);
    color: var(--team-text, #ffffff) !important;
    letter-spacing: 0;
}

.team-topbar strong[b-du5q6qhh73],
.team-topbar .eyebrow[b-du5q6qhh73] {
    display: block;
}

.team-content[b-du5q6qhh73] {
    padding: clamp(1rem, 2.5vw, 2rem);
}

@media (min-width: 1451px) {
    .team-shell[b-du5q6qhh73] {
        grid-template-columns: 17rem 1fr;
    }

    .team-sidebar[b-du5q6qhh73] {
        position: sticky;
        top: 0;
        height: 100vh;
        display: flex;
        flex-direction: column;
    }

    .team-nav[b-du5q6qhh73] {
        flex-direction: column;
        overflow-x: visible;
    }

    .team-logout[b-du5q6qhh73] {
        margin-top: auto;
    }

    .team-topbar[b-du5q6qhh73] {
        position: sticky;
        top: 0;
        z-index: 10;
    }
}

@media (max-width: 1450px) {
    .team-shell[b-du5q6qhh73] {
        display: block;
    }

    .team-sidebar[b-du5q6qhh73] {
        position: sticky;
        top: 0;
        z-index: 30;
        box-shadow: 0 0.8rem 1.8rem rgba(24, 32, 44, 0.2);
    }

    .team-brand[b-du5q6qhh73] {
        min-height: 3.75rem;
        padding: 0.65rem 0.85rem;
    }

    .team-brand-mark[b-du5q6qhh73],
    .team-brand-logo[b-du5q6qhh73] {
        width: 2.2rem;
        height: 2.2rem;
    }

    .team-nav[b-du5q6qhh73],
    .team-logout[b-du5q6qhh73] {
        padding: 0.45rem 0.65rem;
        scrollbar-width: thin;
    }

    .team-nav[b-du5q6qhh73]  a,
    .team-logout button[b-du5q6qhh73] {
        min-height: 2.35rem;
        padding: 0.5rem 0.65rem;
    }

    .team-logout[b-du5q6qhh73] {
        padding-top: 0;
    }

    .team-topbar[b-du5q6qhh73] {
        min-height: 3.7rem;
        padding: 0.65rem 0.85rem;
    }

    .team-topbar-logo[b-du5q6qhh73] {
        width: 2.1rem;
        height: 2.1rem;
    }

    .team-content[b-du5q6qhh73] {
        padding: 0.85rem;
    }
}
/* /Components/Pages/ActivateRegistration.razor.rz.scp.css */
.activation-page[b-odve5n9a3v] {
    min-height: calc(100vh - 4.75rem);
    display: grid;
    place-items: center;
    padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 5vw, 5rem);
    background:
        linear-gradient(120deg, rgba(255, 250, 241, 0.96), rgba(255, 250, 241, 0.78)),
        linear-gradient(135deg, #ffe7a3 0%, #f7b267 52%, #7ec8c2 100%);
}

.activation-panel[b-odve5n9a3v] {
    max-width: 38rem;
    padding: clamp(1.2rem, 4vw, 2rem);
    border: 1px solid rgba(24, 32, 44, 0.12);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 1.5rem 3rem rgba(24, 32, 44, 0.13);
}

.activation-panel h1[b-odve5n9a3v] {
    margin: 0.35rem 0 0.8rem;
    color: #18202c;
    font-size: clamp(2.2rem, 6vw, 4.2rem);
    font-weight: 950;
    line-height: 1;
}

.activation-panel p[b-odve5n9a3v] {
    color: #4f5261;
    font-size: 1.05rem;
    line-height: 1.6;
}
/* /Components/Pages/Admin/AdminDashboard.razor.rz.scp.css */
.dashboard-grid[b-dwn909pcf0] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
    gap: 1rem;
}

.stat-card[b-dwn909pcf0] {
    border: 1px solid var(--color-border);
    border-radius: 0.65rem;
    background: white;
    box-shadow: var(--shadow-soft);
}

.stat-card[b-dwn909pcf0] {
    padding: 1.2rem;
}

.stat-value[b-dwn909pcf0],
.stat-label[b-dwn909pcf0] {
    display: block;
}

.stat-value[b-dwn909pcf0] {
    color: var(--color-panel-strong);
    font-size: 2rem;
    font-weight: 900;
}

.stat-label[b-dwn909pcf0] {
    color: var(--color-text-muted);
    font-weight: 700;
}
/* /Components/Pages/Admin/AdminFriendlyMatches.razor.rz.scp.css */
.friendly-summary-panel[b-iksg5o375d] { margin-bottom: 16px; }
.friendly-admin-field[b-iksg5o375d], .friendly-edit-grid label[b-iksg5o375d] { display: grid; gap: 7px; font-weight: 700; }
.friendly-admin-field select[b-iksg5o375d], .friendly-edit-grid input[b-iksg5o375d], .friendly-edit-grid select[b-iksg5o375d], .friendly-edit-grid textarea[b-iksg5o375d], .friendly-filter select[b-iksg5o375d] { min-height: 44px; border: 1px solid #ccd8d4; background: #fff; padding: 9px 11px; font: inherit; }
.friendly-summary-stats[b-iksg5o375d] { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.friendly-summary-stats span[b-iksg5o375d] { display: grid; gap: 2px; padding: 12px; background: #f5f8f7; border: 1px solid #dbe5e2; }
.friendly-summary-stats strong[b-iksg5o375d] { font-size: 1.5rem; }
.friendly-team-access-heading[b-iksg5o375d] { align-items: center; gap: 16px; }
.friendly-team-access-heading>div:first-child[b-iksg5o375d] { display: flex; align-items: baseline; gap: 12px; }
.friendly-team-access-heading>div:first-child>span[b-iksg5o375d] { color: #65706e; font-weight: 800; }
.friendly-bulk-actions[b-iksg5o375d] { display: flex; flex-wrap: wrap; gap: 8px; margin-left: auto; }
.friendly-bulk-button[b-iksg5o375d] { min-height: 40px; padding: 8px 13px; border: 1px solid transparent; border-radius: 7px; font: inherit; font-weight: 850; cursor: pointer; }
.friendly-bulk-button.enable[b-iksg5o375d] { color: #075f53; border-color: #8fd5c9; background: #e3f6f1; }
.friendly-bulk-button.disable[b-iksg5o375d] { color: #a22b25; border-color: #efb2ad; background: #fff0ef; }
.friendly-bulk-button:hover[b-iksg5o375d] { filter: brightness(.97); }
.friendly-access-hint[b-iksg5o375d] { margin: -2px 0 14px; color: #65706e; }
.friendly-team-access-table td:first-child[b-iksg5o375d], .friendly-admin-match-table td:first-child[b-iksg5o375d], .friendly-admin-match-table td:nth-child(2)[b-iksg5o375d] { display: table-cell; }
.friendly-team-access-table td:first-child small[b-iksg5o375d], .friendly-admin-match-table td small[b-iksg5o375d], .friendly-admin-match-table td span[b-iksg5o375d] { display: block; margin-top: 3px; color: #64706e; }
.friendly-admin-check[b-iksg5o375d] { display: inline-flex !important; grid-template-columns: none !important; align-items: center; gap: 8px; white-space: nowrap; font-weight: 700; }
.friendly-admin-check input[b-iksg5o375d] { min-height: 0; width: 18px; height: 18px; }
.friendly-admin-switch[b-iksg5o375d] { position: relative; display: inline-grid; grid-template-columns: 2.75rem auto; align-items: center; gap: 8px; cursor: pointer; white-space: nowrap; }
.friendly-admin-switch>input[b-iksg5o375d] { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.friendly-admin-switch-control[b-iksg5o375d] { position: relative; width: 2.65rem; height: 1.45rem; border-radius: 999px; background: #aeb8b5; transition: background-color .18s ease; }
.friendly-admin-switch-control[b-iksg5o375d]::after { content: ""; position: absolute; top: .2rem; left: .2rem; width: 1.05rem; height: 1.05rem; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.25); transition: transform .18s ease; }
.friendly-admin-switch>input:checked + .friendly-admin-switch-control[b-iksg5o375d] { background: #0d7b6c; }
.friendly-admin-switch>input:checked + .friendly-admin-switch-control[b-iksg5o375d]::after { transform: translateX(1.2rem); }
.friendly-admin-switch>input:focus-visible + .friendly-admin-switch-control[b-iksg5o375d] { outline: 3px solid rgba(13,123,108,.25); outline-offset: 2px; }
.friendly-filter[b-iksg5o375d] { display: flex; align-items: center; gap: 8px; font-weight: 700; }
.friendly-filter select[b-iksg5o375d] { min-height: 38px; }
.friendly-admin-fixture[b-iksg5o375d] { display: inline-flex; align-items: center; gap: .5rem; white-space: nowrap; }
.friendly-admin-fixture .friendly-admin-team[b-iksg5o375d] { display: inline-flex; align-items: center; gap: .4rem; margin: 0; color: inherit; white-space: nowrap; }
.friendly-admin-fixture .friendly-admin-team img[b-iksg5o375d],.friendly-admin-fixture .friendly-admin-team-shield[b-iksg5o375d] { width: 2rem; height: 2rem; flex: 0 0 auto; margin: 0; object-fit: contain; }
.friendly-admin-fixture .friendly-admin-team img[b-iksg5o375d] { border: 1px solid rgba(24,32,44,.1); background: #fff; }
.friendly-admin-fixture .friendly-admin-team-shield[b-iksg5o375d] { display: grid; place-items: center; clip-path: polygon(50% 0,94% 14%,94% 73%,50% 100%,6% 73%,6% 14%); background: var(--team-color,#0d7b6c); color: var(--team-text,#fff); font-size: .67rem; font-weight: 950; }
.friendly-admin-fixture .friendly-admin-fixture-separator[b-iksg5o375d] { display: inline; margin: 0; color: #68726f; font-weight: 850; }
.friendly-admin-fixture .friendly-admin-fixture-open[b-iksg5o375d] { display: inline; margin: 0; color: #68726f; font-weight: 750; }
.friendly-edit-panel[b-iksg5o375d] { border-color: #8fded2; }
.friendly-edit-grid[b-iksg5o375d] { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.friendly-edit-description[b-iksg5o375d] { grid-column: 1 / -1; }
.friendly-edit-grid textarea[b-iksg5o375d] { min-height: 96px; resize: vertical; }
.friendly-edit-actions[b-iksg5o375d] { display: flex; flex-wrap: wrap; align-items: end; gap: 12px; margin-top: 16px; }
.friendly-edit-actions label[b-iksg5o375d] { display: grid; gap: 5px; font-weight: 700; }
.friendly-edit-actions input[b-iksg5o375d] { width: 86px; min-height: 40px; text-align: center; }
.friendly-admin-results[b-iksg5o375d] { display: grid; gap: 8px; width: min(100%, 620px); margin-top: 18px; padding: 14px; border: 1px solid #d6e2df; border-radius: 7px; background: #f8fbfa; }
.friendly-admin-results h3[b-iksg5o375d] { margin: 0 0 4px; }
.friendly-admin-set-header[b-iksg5o375d],.friendly-admin-set-row[b-iksg5o375d] { display: grid; grid-template-columns: 48px minmax(110px,1fr) minmax(110px,1fr); gap: 8px; align-items: center; }
.friendly-admin-set-header[b-iksg5o375d] { color: #5e6967; font-size: .8rem; }
.friendly-admin-set-header strong:not(:first-child)[b-iksg5o375d] { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.friendly-admin-set-row>strong[b-iksg5o375d] { text-align: center; }
.friendly-admin-set-row input[b-iksg5o375d] { width: 100%; min-width: 0; min-height: 40px; padding: 6px; border: 1px solid #ccd8d4; text-align: center; }
.friendly-admin-results>.btn-lonbeach[b-iksg5o375d] { justify-self: start; margin-top: 5px; }
.friendly-admin-dialog-backdrop[b-iksg5o375d] { position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: 16px; background: rgba(12,27,24,.62); }
.friendly-admin-dialog[b-iksg5o375d] { width: min(460px,100%); padding: 20px; border-radius: 8px; background: white; box-shadow: 0 24px 60px rgba(0,0,0,.3); }
.friendly-admin-dialog h2[b-iksg5o375d] { margin-top: 0; }
.friendly-report-list[b-iksg5o375d] { display: grid; gap: 12px; }
.friendly-report-card[b-iksg5o375d] { display: grid; gap: 12px; padding: 16px; border: 1px solid #e6b1ad; border-left: 5px solid #b52f27; border-radius: 7px; background: #fffafa; }
.friendly-report-card header[b-iksg5o375d] { display: flex; justify-content: space-between; gap: 16px; }
.friendly-report-card h3[b-iksg5o375d] { margin: 8px 0 3px; }
.friendly-report-card header p[b-iksg5o375d],.friendly-report-reason[b-iksg5o375d] { margin: 0; color: #596461; }
.friendly-report-card summary[b-iksg5o375d] { color: #075f53; font-weight: 850; cursor: pointer; }
.friendly-report-transcript[b-iksg5o375d] { display: grid; gap: 8px; max-height: 260px; margin-top: 10px; padding: 10px; overflow-y: auto; border: 1px solid #dbe5e2; border-radius: 6px; background: #f7faf9; }
.friendly-report-transcript p[b-iksg5o375d] { display: grid; grid-template-columns: minmax(120px,.35fr) auto; gap: 4px 12px; margin: 0; padding-bottom: 8px; border-bottom: 1px solid #e1e8e6; }
.friendly-report-transcript p:last-child[b-iksg5o375d] { padding-bottom: 0; border-bottom: 0; }
.friendly-report-transcript time[b-iksg5o375d] { color: #68726f; font-size: .82rem; }
.friendly-report-transcript span[b-iksg5o375d] { grid-column: 1/-1; white-space: pre-wrap; overflow-wrap: anywhere; }
@media (max-width: 1450px) {
    .friendly-edit-grid[b-iksg5o375d] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .friendly-team-access-table[b-iksg5o375d] { min-width: 720px; }

    .friendly-admin-match-table[b-iksg5o375d] {
        width: 100%;
        min-width: 0;
    }

    .friendly-admin-match-table td[b-iksg5o375d],
    .friendly-admin-match-table td:first-child[b-iksg5o375d],
    .friendly-admin-match-table td:nth-child(2)[b-iksg5o375d] {
        display: grid;
        grid-template-columns: minmax(7.5rem, 0.65fr) minmax(0, 1fr);
        align-items: center;
        gap: 0.75rem;
        min-width: 0;
        padding: 0.55rem 0;
    }

    .friendly-admin-match-table td[b-iksg5o375d]::before {
        content: attr(data-label);
        color: #65706e;
        font-size: 0.72rem;
        font-weight: 900;
        text-transform: uppercase;
    }

    .friendly-admin-match-table td small[b-iksg5o375d] {
        margin-top: 0.2rem;
        overflow-wrap: anywhere;
    }

    .friendly-admin-match-table .friendly-admin-fixture[b-iksg5o375d] {
        display: flex;
        flex-wrap: wrap;
        min-width: 0;
        white-space: normal;
    }

    .friendly-admin-match-table .friendly-admin-team[b-iksg5o375d],
    .friendly-admin-match-table .friendly-admin-fixture-separator[b-iksg5o375d],
    .friendly-admin-match-table .friendly-admin-fixture-open[b-iksg5o375d] {
        display: inline-flex;
        margin-top: 0;
    }

    .friendly-admin-match-table .status-pill[b-iksg5o375d] {
        justify-self: start;
        margin-top: 0;
    }

    .friendly-admin-match-table .table-actions[b-iksg5o375d] {
        min-width: 0;
    }
}
@media (max-width: 700px) { .friendly-edit-grid[b-iksg5o375d] { grid-template-columns: 1fr; } .friendly-edit-description[b-iksg5o375d] { grid-column: auto; } .friendly-summary-stats[b-iksg5o375d] { grid-template-columns: 1fr 1fr; } .friendly-team-access-heading[b-iksg5o375d] { align-items: flex-start; } .friendly-team-access-heading[b-iksg5o375d],.friendly-team-access-heading>div:first-child[b-iksg5o375d] { display: grid; } .friendly-bulk-actions[b-iksg5o375d] { margin-left: 0; } .friendly-admin-set-header[b-iksg5o375d],.friendly-admin-set-row[b-iksg5o375d]{grid-template-columns:36px minmax(78px,1fr) minmax(78px,1fr)} }

@media (max-width: 760px) {
    .friendly-team-access-table[b-iksg5o375d] {
        width: 100%;
        min-width: 0;
    }

    .friendly-team-access-table td[b-iksg5o375d] {
        display: grid;
        grid-template-columns: minmax(6.5rem, 0.7fr) minmax(0, 1fr);
        align-items: center;
        gap: 0.75rem;
        min-width: 0;
        padding: 0.55rem 0;
    }

    .friendly-team-access-table td[b-iksg5o375d]::before {
        content: attr(data-label);
        color: #65706e;
        font-size: 0.72rem;
        font-weight: 900;
        text-transform: uppercase;
    }

    .friendly-team-access-table td:first-child[b-iksg5o375d] {
        display: block;
        padding-bottom: 0.75rem;
    }

    .friendly-team-access-table td:first-child[b-iksg5o375d]::before {
        display: block;
        margin-bottom: 0.45rem;
    }

    .friendly-team-access-table td:first-child strong[b-iksg5o375d],
    .friendly-team-access-table td:first-child small[b-iksg5o375d] {
        overflow-wrap: anywhere;
    }

    .friendly-team-access-table .status-pill[b-iksg5o375d] {
        justify-self: start;
        margin-top: 0;
    }

    .friendly-team-access-table .friendly-admin-switch[b-iksg5o375d] {
        white-space: normal;
    }
}
/* /Components/Pages/Admin/AdminLogin.razor.rz.scp.css */
.admin-login-page[b-9gamduxvhc] {
    min-height: calc(100vh - 9rem);
    display: grid;
    place-items: center;
    padding: clamp(2rem, 6vw, 5rem) 1rem;
    background:
        linear-gradient(120deg, rgba(255, 250, 241, 0.96), rgba(255, 250, 241, 0.82)),
        linear-gradient(135deg, #ffe7a3 0%, #f7b267 52%, #7ec8c2 100%);
}

.login-copy[b-9gamduxvhc],
.login-panel[b-9gamduxvhc] {
    width: min(100%, 28rem);
}

.login-copy[b-9gamduxvhc] {
    margin-bottom: 1rem;
}

.login-copy h1[b-9gamduxvhc] {
    margin: 0.3rem 0 0.45rem;
    color: #18202c;
    font-size: clamp(2.1rem, 7vw, 3rem);
    font-weight: 950;
    line-height: 1;
}

.login-copy p[b-9gamduxvhc] {
    margin: 0;
    color: #4f5261;
    line-height: 1.55;
}

.login-panel[b-9gamduxvhc] {
    padding: clamp(1.1rem, 4vw, 1.5rem);
    border: 1px solid rgba(24, 32, 44, 0.12);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 1.25rem 2.5rem rgba(24, 32, 44, 0.14);
}

.login-panel .public-button[b-9gamduxvhc] {
    width: auto;
    min-width: 8.5rem;
}

@media (max-width: 520px) {
    .admin-login-page[b-9gamduxvhc] {
        align-items: start;
    }

    .login-panel .public-button[b-9gamduxvhc] {
        width: 100%;
    }
}
/* /Components/Pages/Admin/ForgotAdminPassword.razor.rz.scp.css */
.admin-login-page[b-t618vujnnq] {
    min-height: calc(100vh - 9rem);
    display: grid;
    place-items: center;
    padding: clamp(2rem, 6vw, 5rem) 1rem;
    background:
        linear-gradient(120deg, rgba(255, 250, 241, 0.96), rgba(255, 250, 241, 0.82)),
        linear-gradient(135deg, #ffe7a3 0%, #f7b267 52%, #7ec8c2 100%);
}

.login-copy[b-t618vujnnq],
.login-panel[b-t618vujnnq] {
    width: min(100%, 28rem);
}

.login-copy[b-t618vujnnq] {
    margin-bottom: 1rem;
}

.login-copy h1[b-t618vujnnq] {
    margin: 0.3rem 0 0.45rem;
    color: #18202c;
    font-size: clamp(2.1rem, 7vw, 3rem);
    font-weight: 950;
    line-height: 1;
}

.login-copy p[b-t618vujnnq] {
    margin: 0;
    color: #4f5261;
    line-height: 1.55;
}

.login-panel[b-t618vujnnq] {
    display: grid;
    gap: 1rem;
    padding: clamp(1.1rem, 4vw, 1.5rem);
    border: 1px solid rgba(24, 32, 44, 0.12);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 1.25rem 2.5rem rgba(24, 32, 44, 0.14);
}

.login-panel .public-button[b-t618vujnnq] {
    width: 100%;
}

.login-helper-link[b-t618vujnnq] {
    color: #0d5b4c;
    font-weight: 900;
}

@media (max-width: 520px) {
    .admin-login-page[b-t618vujnnq] {
        align-items: start;
    }
}
/* /Components/Pages/Admin/ResetAdminPassword.razor.rz.scp.css */
.admin-login-page[b-28tmucuabe] {
    min-height: calc(100vh - 9rem);
    display: grid;
    place-items: center;
    padding: clamp(2rem, 6vw, 5rem) 1rem;
    background:
        linear-gradient(120deg, rgba(255, 250, 241, 0.96), rgba(255, 250, 241, 0.82)),
        linear-gradient(135deg, #ffe7a3 0%, #f7b267 52%, #7ec8c2 100%);
}

.login-copy[b-28tmucuabe],
.login-panel[b-28tmucuabe] {
    width: min(100%, 28rem);
}

.login-copy[b-28tmucuabe] {
    margin-bottom: 1rem;
}

.login-copy h1[b-28tmucuabe] {
    margin: 0.3rem 0 0.45rem;
    color: #18202c;
    font-size: clamp(2.1rem, 7vw, 3rem);
    font-weight: 950;
    line-height: 1;
}

.login-copy p[b-28tmucuabe] {
    margin: 0;
    color: #4f5261;
    line-height: 1.55;
}

.login-panel[b-28tmucuabe] {
    display: grid;
    gap: 1rem;
    padding: clamp(1.1rem, 4vw, 1.5rem);
    border: 1px solid rgba(24, 32, 44, 0.12);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 1.25rem 2.5rem rgba(24, 32, 44, 0.14);
}

.login-panel .public-button[b-28tmucuabe] {
    width: auto;
    min-width: 8.5rem;
}

.login-helper-link[b-28tmucuabe] {
    color: #0d5b4c;
    font-weight: 900;
}

@media (max-width: 520px) {
    .admin-login-page[b-28tmucuabe] {
        align-items: start;
    }

    .login-panel .public-button[b-28tmucuabe] {
        width: 100%;
    }
}
/* /Components/Pages/ForgotTeamPassword.razor.rz.scp.css */
.login-page[b-z21wttpibv] {
    min-height: calc(100vh - 4.75rem);
    display: grid;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
    padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 5vw, 5rem);
    background:
        linear-gradient(120deg, rgba(255, 250, 241, 0.96), rgba(255, 250, 241, 0.78)),
        linear-gradient(135deg, #ffe7a3 0%, #f7b267 52%, #7ec8c2 100%);
}

.login-copy[b-z21wttpibv] {
    max-width: 38rem;
}

.login-copy h1[b-z21wttpibv] {
    margin: 0.35rem 0 0.8rem;
    color: #18202c;
    font-size: clamp(2.4rem, 7vw, 5rem);
    font-weight: 950;
    line-height: 0.98;
}

.login-copy p[b-z21wttpibv] {
    color: #4f5261;
    font-size: 1.08rem;
    line-height: 1.65;
}

.login-panel[b-z21wttpibv] {
    width: 100%;
    max-width: 34rem;
    display: grid;
    gap: 1rem;
    padding: clamp(1rem, 3vw, 1.5rem);
    border: 1px solid rgba(24, 32, 44, 0.12);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 1.5rem 3rem rgba(24, 32, 44, 0.13);
}

.login-helper-link[b-z21wttpibv] {
    color: #0d5b4c;
    font-weight: 900;
}

@media (min-width: 900px) {
    .login-page[b-z21wttpibv] {
        grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.75fr);
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
.home-hero[b-uc5hhbvhcg] {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: calc(100vh - 4.75rem);
    display: grid;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 3rem);
    padding: clamp(2.4rem, 6vw, 6.2rem) clamp(1rem, 5vw, 5rem);
    background: #121923;
    animation: heroEnter-b-uc5hhbvhcg 340ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.home-hero[b-uc5hhbvhcg]::before {
    content: "";
    position: absolute;
    inset: -8%;
    z-index: 0;
    background:
        linear-gradient(118deg, rgba(18, 25, 35, 0.88), rgba(16, 94, 78, 0.54) 58%, rgba(239, 92, 76, 0.28)),
        linear-gradient(135deg, #ffd166 0%, #f05a4f 48%, #0e6b5c 100%);
    background-position: center;
    background-size: cover;
}

.home-hero-with-image[b-uc5hhbvhcg]::before {
    background:
        linear-gradient(118deg, rgba(18, 25, 35, 0.9), rgba(18, 25, 35, 0.56) 46%, rgba(18, 25, 35, 0.18)),
        linear-gradient(0deg, rgba(240, 90, 79, 0.18), rgba(14, 107, 92, 0.1)),
        var(--hero-image);
    background-position: center;
    background-size: cover;
}

.home-hero-slider-active[b-uc5hhbvhcg]::before {
    background:
        linear-gradient(118deg, rgba(18, 25, 35, 0.92), rgba(18, 25, 35, 0.58) 48%, rgba(18, 25, 35, 0.2)),
        linear-gradient(135deg, #ffd166 0%, #f05a4f 45%, #0e6b5c 100%);
}

.home-hero[b-uc5hhbvhcg]::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(18, 25, 35, 0.94), rgba(18, 25, 35, 0.62) 44%, rgba(18, 25, 35, 0.14)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 22px);
    pointer-events: none;
}

.hero-background-slider[b-uc5hhbvhcg] {
    position: absolute;
    inset: -8%;
    z-index: 0;
    overflow: hidden;
    background: #121923;
}

.hero-background-slide[b-uc5hhbvhcg] {
    position: absolute;
    inset: 0;
    background-image: var(--hero-slide-image);
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.07) translate3d(var(--hero-pan-from-x, 0), var(--hero-pan-from-y, 0), 0);
    filter: saturate(1.22) contrast(1.1);
    transition: opacity 1.9s cubic-bezier(0.22, 1, 0.36, 1);
    animation: heroSlideMotion-b-uc5hhbvhcg var(--hero-motion-duration, 7s) cubic-bezier(0.33, 1, 0.68, 1) infinite alternate;
    will-change: transform;
}

.hero-background-slide.is-active[b-uc5hhbvhcg] {
    opacity: 1;
}

@keyframes heroSlideMotion-b-uc5hhbvhcg {
    from {
        transform: scale(1.07) translate3d(var(--hero-pan-from-x, 0), var(--hero-pan-from-y, 0), 0);
    }

    to {
        transform: scale(1.17) translate3d(var(--hero-pan-to-x, 0), var(--hero-pan-to-y, 0), 0);
    }
}

@keyframes heroEnter-b-uc5hhbvhcg {
    from {
        opacity: 0;
        transform: translate3d(0, 0.35rem, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.hero-copy[b-uc5hhbvhcg],
.hero-card[b-uc5hhbvhcg] {
    position: relative;
    z-index: 2;
}

.hero-copy[b-uc5hhbvhcg] {
    min-width: 0;
    max-width: 53rem;
    animation: heroCopyIn-b-uc5hhbvhcg 420ms 80ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.public-eyebrow[b-uc5hhbvhcg],
.hero-card-label[b-uc5hhbvhcg] {
    color: #c94e43;
    font-weight: 900;
    font-size: 0.78rem;
    letter-spacing: 0;
    text-transform: uppercase;
}

.home-hero .public-eyebrow[b-uc5hhbvhcg] {
    color: #ffd166;
    text-shadow: 0 0.45rem 1.2rem rgba(0, 0, 0, 0.28);
}

h1[b-uc5hhbvhcg] {
    margin: 0.35rem 0 0.8rem;
    color: #18202c;
    font-size: clamp(3.2rem, 12vw, 7.2rem);
    font-weight: 950;
    line-height: 0.92;
}

.home-hero h1[b-uc5hhbvhcg] {
    max-width: 12ch;
    color: #fffaf1;
    text-shadow:
        0 0.08rem 0 rgba(18, 25, 35, 0.55),
        0 0.9rem 2.6rem rgba(0, 0, 0, 0.55);
}

.hero-copy p[b-uc5hhbvhcg],
.public-band p[b-uc5hhbvhcg] {
    max-width: 43rem;
    color: #202837;
    font-size: clamp(1.05rem, 2vw, 1.22rem);
    line-height: 1.65;
    font-weight: 650;
}

.hero-copy p[b-uc5hhbvhcg] {
    color: rgba(255, 255, 255, 0.96);
    font-weight: 750;
    text-shadow: 0 0.45rem 1.4rem rgba(0, 0, 0, 0.55);
}

.hero-actions[b-uc5hhbvhcg] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.hero-flyer-card[b-uc5hhbvhcg] {
    position: relative;
    z-index: 2;
    justify-self: center;
    align-self: center;
    width: min(21rem, 100%);
    display: grid;
    place-items: center;
    padding: 0.65rem;
    border: 1px solid rgba(255, 250, 241, 0.28);
    border-radius: 0.85rem;
    background: rgba(255, 250, 241, 0.14);
    box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(10px);
    transform: rotate(1.2deg);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.hero-flyer-card:hover[b-uc5hhbvhcg] {
    border-color: rgba(255, 209, 102, 0.75);
    box-shadow: 0 1.8rem 4.2rem rgba(0, 0, 0, 0.42);
    transform: rotate(0deg) translateY(-3px);
}

.hero-flyer-card img[b-uc5hhbvhcg] {
    width: 100%;
    height: auto;
    max-height: min(52vh, 29rem);
    display: block;
    border-radius: 0.55rem;
    object-fit: contain;
}

.public-button[b-uc5hhbvhcg] {
    min-height: 2.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border-radius: 0.55rem;
    border: 1px solid transparent;
    font-weight: 900;
    text-decoration: none;
    transform: translateY(0);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease,
        color 180ms ease;
}

.public-button-primary[b-uc5hhbvhcg] {
    background: #e85d4f;
    color: white;
    box-shadow: 0 0.8rem 1.6rem rgba(232, 93, 79, 0.28);
}

.public-button-primary:hover[b-uc5hhbvhcg] {
    background: #c94e43;
    color: white;
    box-shadow: 0 1rem 2rem rgba(232, 93, 79, 0.35);
    transform: translateY(-2px);
}

.public-button-secondary[b-uc5hhbvhcg] {
    background: rgba(255, 255, 255, 0.75);
    color: #18202c;
    border-color: rgba(24, 32, 44, 0.14);
}

.public-button-secondary:hover[b-uc5hhbvhcg] {
    border-color: #e85d4f;
    color: #18202c;
    transform: translateY(-2px);
}

.hero-card[b-uc5hhbvhcg] {
    max-width: 25rem;
    padding: 1.25rem;
    border: 1px solid rgba(24, 32, 44, 0.13);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 1.5rem 3rem rgba(24, 32, 44, 0.13);
}

.hero-card strong[b-uc5hhbvhcg],
.hero-card span[b-uc5hhbvhcg] {
    display: block;
}

.hero-card strong[b-uc5hhbvhcg] {
    margin-top: 0.35rem;
    color: #18202c;
    font-size: 1.45rem;
}

.hero-card p[b-uc5hhbvhcg] {
    margin: 0.7rem 0 0;
    color: #5c6472;
}

.public-section[b-uc5hhbvhcg] {
    position: relative;
    padding: clamp(2.8rem, 6vw, 5.6rem) clamp(1rem, 5vw, 5rem);
    background:
        linear-gradient(180deg, rgba(255, 250, 241, 0.94), rgba(245, 250, 247, 0.96)),
        repeating-linear-gradient(90deg, rgba(24, 32, 44, 0.035) 0 1px, transparent 1px 4.5rem);
}

.section-heading[b-uc5hhbvhcg] {
    max-width: 48rem;
    margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.section-heading p[b-uc5hhbvhcg] {
    margin: 0.75rem 0 0;
    color: #5c6472;
    font-size: 1.05rem;
    line-height: 1.65;
}

.section-heading h2[b-uc5hhbvhcg],
.public-band h2[b-uc5hhbvhcg] {
    margin: 0.35rem 0 0;
    color: #18202c;
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.05;
}

.info-grid[b-uc5hhbvhcg] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
    gap: 1rem;
}

.content-block-grid[b-uc5hhbvhcg] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
    gap: 1rem;
}

.content-block-card[b-uc5hhbvhcg] {
    position: relative;
    overflow: hidden;
    padding: 1.25rem;
    border: 1px solid rgba(24, 32, 44, 0.1);
    border-radius: 0.7rem;
    background: white;
    box-shadow: 0 1rem 2rem rgba(24, 32, 44, 0.07);
    transform: translateY(0);
    transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        border-color 220ms ease;
}

.content-block-card[b-uc5hhbvhcg]::before,
.contact-grid article[b-uc5hhbvhcg]::before,
.newsletter-card[b-uc5hhbvhcg]::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 0.28rem;
    background: linear-gradient(180deg, #ffd166, #e85d4f 52%, #0e6b5c);
    opacity: 0.9;
}

.content-block-card:hover[b-uc5hhbvhcg],
.info-card:hover[b-uc5hhbvhcg],
.contact-grid article:hover[b-uc5hhbvhcg],
.newsletter-card:hover[b-uc5hhbvhcg] {
    border-color: rgba(232, 93, 79, 0.24);
    box-shadow: 0 1.45rem 3rem rgba(24, 32, 44, 0.13);
    transform: translateY(-4px);
}

.content-block-media-preview[b-uc5hhbvhcg],
.content-block-file-preview[b-uc5hhbvhcg] {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 1rem;
    border-radius: 0.6rem;
    border: 1px solid rgba(24, 32, 44, 0.1);
}

.content-block-media-preview[b-uc5hhbvhcg] {
    display: block;
    object-fit: contain;
    background: white;
}

.content-block-file-preview[b-uc5hhbvhcg] {
    display: grid;
    place-items: center;
    background: #18202c;
    color: white;
    font-size: 1.5rem;
    font-weight: 950;
}

.content-block-type[b-uc5hhbvhcg] {
    display: inline-flex;
    min-height: 1.8rem;
    align-items: center;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: #fff0ee;
    color: #c94e43;
    font-size: 0.78rem;
    font-weight: 900;
}

.content-block-type.is-open[b-uc5hhbvhcg] {
    background: #edf9f3;
    color: #195a3b;
}

.content-block-type.is-full[b-uc5hhbvhcg] {
    background: #fff3dc;
    color: #9a5800;
}

.content-block-type.is-closed[b-uc5hhbvhcg] {
    background: #fff0ee;
    color: #9f2f26;
}

.content-block-type.is-muted[b-uc5hhbvhcg] {
    background: #eef1f5;
    color: #4f5261;
}

.content-block-card h3[b-uc5hhbvhcg] {
    margin: 0.85rem 0 0.45rem;
    color: #18202c;
    font-size: 1.35rem;
}

.content-block-card p[b-uc5hhbvhcg] {
    margin: 0;
    color: #5c6472;
    line-height: 1.6;
    white-space: pre-line;
}

.card-link[b-uc5hhbvhcg] {
    display: inline-flex;
    margin-top: 0.85rem;
    color: #c94e43;
    font-weight: 900;
    text-decoration: none;
}

.card-link:hover[b-uc5hhbvhcg] {
    color: #9f2f26;
    text-decoration: underline;
}

.content-block-card-featured[b-uc5hhbvhcg] {
    border-color: rgba(232, 93, 79, 0.24);
    background: #fff7f4;
}

.content-block-card-flyer[b-uc5hhbvhcg] {
    border-color: rgba(247, 178, 103, 0.36);
    background: #fffaf1;
}

.content-block-card-media[b-uc5hhbvhcg] {
    border-color: rgba(126, 200, 194, 0.34);
    background: #f3fbfa;
}

.media-category-strip[b-uc5hhbvhcg] {
    display: grid;
    grid-auto-columns: minmax(17rem, 1fr);
    grid-auto-flow: column;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    overflow-x: auto;
    padding: 0.15rem 0 0.6rem;
    scroll-snap-type: x proximity;
}

.media-category-card[b-uc5hhbvhcg] {
    position: relative;
    min-height: 14rem;
    display: grid;
    align-content: end;
    gap: 0.45rem;
    overflow: hidden;
    padding: 1rem;
    border: 2px solid color-mix(in srgb, var(--media-accent, #0e6b5c) 42%, white);
    border-radius: 0.8rem;
    background:
        linear-gradient(180deg, transparent 0 28%, rgba(24, 32, 44, 0.72) 100%),
        color-mix(in srgb, var(--media-accent, #0e6b5c) 12%, white);
    color: white;
    text-align: left;
    box-shadow: 0 1rem 2.2rem rgba(24, 32, 44, 0.1);
    scroll-snap-align: start;
}

.media-category-card.active[b-uc5hhbvhcg],
.media-category-card:hover[b-uc5hhbvhcg] {
    border-color: var(--media-accent, #0e6b5c);
    transform: translateY(-2px);
}

.media-category-card img[b-uc5hhbvhcg],
.media-category-card video[b-uc5hhbvhcg] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.media-category-card span[b-uc5hhbvhcg],
.media-category-card strong[b-uc5hhbvhcg],
.media-category-card small[b-uc5hhbvhcg] {
    position: relative;
}

.media-category-card span[b-uc5hhbvhcg] {
    width: fit-content;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--media-accent, #0e6b5c) 82%, black);
    font-size: 0.78rem;
    font-weight: 950;
}

.media-category-card strong[b-uc5hhbvhcg] {
    font-size: 1.35rem;
    font-weight: 950;
    line-height: 1.05;
}

.media-category-card small[b-uc5hhbvhcg] {
    display: -webkit-box;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.media-card-drawer[b-uc5hhbvhcg] {
    margin-top: 1rem;
    padding: 1rem;
    border: 2px solid color-mix(in srgb, var(--media-accent, #0e6b5c) 34%, white);
    border-radius: 0.85rem;
    background: color-mix(in srgb, var(--media-accent, #0e6b5c) 7%, white);
}

.media-card-drawer header[b-uc5hhbvhcg] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.85rem;
}

.media-card-drawer h3[b-uc5hhbvhcg] {
    margin: 0;
    color: #18202c;
    font-size: 1.45rem;
    font-weight: 950;
}

.media-card-drawer header span[b-uc5hhbvhcg] {
    color: #5c6472;
    font-weight: 900;
}

.media-card-list[b-uc5hhbvhcg] {
    max-height: 34rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    overflow-y: auto;
    padding-right: 0.25rem;
}

.media-info-card[b-uc5hhbvhcg] {
    min-width: 0;
    display: grid;
    gap: 0.65rem;
    align-content: start;
    padding: 0.75rem;
    border: 1px solid rgba(24, 32, 44, 0.1);
    border-radius: 0.7rem;
    background: white;
    color: #18202c;
    text-align: left;
}

.media-info-card:hover[b-uc5hhbvhcg] {
    border-color: var(--media-accent, #0e6b5c);
    box-shadow: 0 1rem 2rem rgba(24, 32, 44, 0.12);
}

.media-info-card img[b-uc5hhbvhcg],
.media-info-card video[b-uc5hhbvhcg] {
    width: 100%;
    aspect-ratio: 16 / 10;
    display: block;
    border-radius: 0.55rem;
    object-fit: cover;
    background: #fffaf1;
}

.media-info-card strong[b-uc5hhbvhcg] {
    font-weight: 950;
}

.media-info-card small[b-uc5hhbvhcg] {
    display: -webkit-box;
    overflow: hidden;
    color: #5c6472;
    line-height: 1.45;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.info-card[b-uc5hhbvhcg],
.contact-grid article[b-uc5hhbvhcg] {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(24, 32, 44, 0.1);
    border-radius: 0.7rem;
    background: white;
    box-shadow: 0 1rem 2rem rgba(24, 32, 44, 0.07);
    transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        border-color 220ms ease;
}

.info-card-media[b-uc5hhbvhcg],
.contact-card-media[b-uc5hhbvhcg] {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    margin-bottom: 1rem;
    border-radius: 0.55rem;
    object-fit: contain;
    background: #fffaf1;
}

.info-card[b-uc5hhbvhcg] {
    display: flex;
    min-height: 14rem;
    flex-direction: column;
}

.info-card-media[b-uc5hhbvhcg] {
    margin: 1.25rem 1.25rem 0;
    width: calc(100% - 2.5rem);
}

.info-card-header[b-uc5hhbvhcg] {
    padding: 1rem 1.25rem;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 55%),
        var(--card-header-color, #0e6b5c);
    color: #fffaf1;
}

.info-card-header h3[b-uc5hhbvhcg] {
    margin: 0;
    color: inherit;
    font-size: 1.18rem;
    line-height: 1.25;
}

.info-card-body[b-uc5hhbvhcg] {
    flex: 1;
    padding: 1.25rem;
}

.info-card p[b-uc5hhbvhcg] {
    margin: 0;
    color: #5c6472;
}

.public-band[b-uc5hhbvhcg] {
    position: relative;
    overflow: hidden;
    display: grid;
    align-items: center;
    gap: clamp(1rem, 3vw, 2rem);
    padding: clamp(2.8rem, 5vw, 4.8rem) clamp(1rem, 5vw, 5rem);
    background:
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.075) 0 1px, transparent 1px 18px),
        linear-gradient(115deg, #121923, #123f38 60%, #e85d4f 160%);
    color: white;
}

.public-band h2[b-uc5hhbvhcg],
.public-band .public-eyebrow[b-uc5hhbvhcg] {
    color: white;
}

.public-band p[b-uc5hhbvhcg] {
    color: rgba(255, 255, 255, 0.78);
}

.public-tournaments-section[b-uc5hhbvhcg] {
    padding-top: clamp(1.5rem, 4vw, 3rem);
}

.public-friendly-section[b-uc5hhbvhcg] {
    display: grid;
    gap: 24px;
}

.public-friendly-group[b-uc5hhbvhcg] { display: grid; gap: 12px; }
.public-friendly-group-heading[b-uc5hhbvhcg] { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 8px; border-bottom: 1px solid rgba(24,32,44,.12); }
.public-friendly-group-heading h3[b-uc5hhbvhcg] { margin: 0; font-size: 1.35rem; }
.public-friendly-group-heading span[b-uc5hhbvhcg] { display: inline-flex; min-width: 2rem; min-height: 2rem; align-items: center; justify-content: center; border-radius: 999px; background: #e5f3ef; color: #075f52; font-weight: 900; }

.public-friendly-grid[b-uc5hhbvhcg] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.public-friendly-card[b-uc5hhbvhcg] {
    display: grid;
    align-content: start;
    gap: 14px;
    min-width: 0;
    padding: 20px;
    border: 1px solid #d2dfdb;
    border-top: 4px solid #148273;
    background: #fff;
    box-shadow: 0 12px 28px rgba(17, 39, 35, .08);
}

.public-friendly-card header[b-uc5hhbvhcg] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.public-friendly-status[b-uc5hhbvhcg] {
    display: inline-flex;
    padding: 6px 9px;
    background: #e3f7f1;
    color: #075f52;
    font-size: .78rem;
    font-weight: 800;
}

.public-friendly-status.accepted[b-uc5hhbvhcg] { background: #fff1cd; color: #765000; }
.public-friendly-card.encounter[b-uc5hhbvhcg] { border-top-color: #d49610; }
.public-friendly-fixture[b-uc5hhbvhcg] { display: grid; grid-template-columns: minmax(0,1fr) auto minmax(0,1fr); gap: 16px; align-items: center; min-height: 8.5rem; padding: 14px; border: 1px solid #dde7e4; background: #f8fbfa; }
.public-friendly-fixture.single[b-uc5hhbvhcg] { grid-template-columns: minmax(0,1fr); }
.public-friendly-team[b-uc5hhbvhcg] { display: grid; justify-items: center; gap: 4px; min-width: 0; text-align: center; }
.public-friendly-team img[b-uc5hhbvhcg],.public-friendly-team-shield[b-uc5hhbvhcg] { width: 3.8rem; height: 3.8rem; object-fit: contain; }
.public-friendly-team img[b-uc5hhbvhcg] { border: 1px solid rgba(24,32,44,.1); background: white; }
.public-friendly-team-shield[b-uc5hhbvhcg] { display: grid; place-items: center; clip-path: polygon(50% 0, 94% 14%, 94% 73%, 50% 100%, 6% 73%, 6% 14%); background: var(--team-color); color: var(--team-text); font-weight: 950; }
.public-friendly-team small[b-uc5hhbvhcg] { color: #68726f; font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.public-friendly-team strong[b-uc5hhbvhcg] { overflow-wrap: anywhere; font-size: 1rem; }
.public-friendly-versus[b-uc5hhbvhcg] { color: #66716f; font-size: .78rem; font-weight: 900; text-transform: uppercase; }
.public-friendly-facts[b-uc5hhbvhcg] { display: grid; gap: 8px; margin: 0; }
.public-friendly-facts div[b-uc5hhbvhcg] { display: grid; grid-template-columns: 72px minmax(0,1fr); gap: 10px; }
.public-friendly-card dt[b-uc5hhbvhcg] { font-weight: 800; }
.public-friendly-card dd[b-uc5hhbvhcg] { margin: 0; }
.public-friendly-card .public-button[b-uc5hhbvhcg] { justify-self: start; }
.public-friendly-disclaimer[b-uc5hhbvhcg] { margin: 0; color: #66716f; font-size: .9rem; }
.public-friendly-heading[b-uc5hhbvhcg] { position: relative; width: 100%; max-width: none; padding-right: 15rem; }
.public-friendly-history-button[b-uc5hhbvhcg] { position: absolute; top: 0; right: 0; justify-self: end; }
.friendly-detail-dialog.public-friendly-history-dialog[b-uc5hhbvhcg] { width: min(68rem,100%); gap: 12px; padding: 18px; }
.public-friendly-history-section[b-uc5hhbvhcg] { display: grid; gap: 6px; }
.public-friendly-history-section h3[b-uc5hhbvhcg] { margin: 0; font-size: 1.05rem; }
.public-friendly-history-table-wrap[b-uc5hhbvhcg] { overflow-x: auto; border: 1px solid #d7e1de; border-radius: 6px; }
.public-friendly-history-table[b-uc5hhbvhcg] { width: 100%; min-width: 44rem; border-collapse: collapse; background: #fff; font-size: .84rem; }
.public-friendly-history-table th[b-uc5hhbvhcg],.public-friendly-history-table td[b-uc5hhbvhcg] { padding: 7px 8px; border-bottom: 1px solid #e1e8e6; text-align: left; vertical-align: middle; }
.public-friendly-history-table th[b-uc5hhbvhcg] { background: #edf5f3; color: #17463e; font-size: .69rem; text-transform: uppercase; }
.public-friendly-history-table tr:last-child td[b-uc5hhbvhcg] { border-bottom: 0; }
.public-friendly-history-table td>small[b-uc5hhbvhcg] { display: block; margin-top: 2px; color: #68726f; font-size: .74rem; }
.public-friendly-history-fixture[b-uc5hhbvhcg] { display: inline-grid; grid-template-columns: minmax(7rem,1fr) auto minmax(7rem,1fr); align-items: center; gap: 7px; }
.public-friendly-history-fixture>.public-friendly-team[b-uc5hhbvhcg] { grid-template-columns: 1.8rem minmax(0,1fr); justify-items: start; gap: 5px; text-align: left; }
.public-friendly-history-fixture>.public-friendly-team img[b-uc5hhbvhcg],.public-friendly-history-fixture>.public-friendly-team .public-friendly-team-shield[b-uc5hhbvhcg] { width: 1.8rem; height: 1.8rem; }
.public-friendly-history-fixture>span[b-uc5hhbvhcg] { color: #68726f; font-size: .72rem; font-weight: 850; text-transform: uppercase; }
.public-friendly-history-table.encounters th[b-uc5hhbvhcg],.public-friendly-history-table.encounters td[b-uc5hhbvhcg] { padding: 5px 7px; }
.public-friendly-history-table.encounters .public-friendly-team[b-uc5hhbvhcg] { grid-template-columns: 1.55rem max-content; justify-items: start; gap: 5px; text-align: left; }
.public-friendly-history-table.encounters .public-friendly-team img[b-uc5hhbvhcg],.public-friendly-history-table.encounters .public-friendly-team-shield[b-uc5hhbvhcg] { width: 1.55rem; height: 1.55rem; }
.public-friendly-history-table.encounters .public-friendly-team strong[b-uc5hhbvhcg] { white-space: nowrap; font-size: .8rem; }
.public-friendly-history-winner[b-uc5hhbvhcg] { display: inline-block; }
.public-friendly-table-note[b-uc5hhbvhcg] { margin: 0; color: #68726f; font-size: .76rem; }
.public-friendly-history-table.standings[b-uc5hhbvhcg] { min-width: 46rem; }
.public-friendly-history-table.standings .public-friendly-team[b-uc5hhbvhcg] { grid-template-columns: 1.75rem minmax(0,1fr); justify-items: start; gap: 5px; text-align: left; }
.public-friendly-history-table.standings .public-friendly-team img[b-uc5hhbvhcg],.public-friendly-history-table.standings .public-friendly-team-shield[b-uc5hhbvhcg] { width: 1.75rem; height: 1.75rem; }

.friendly-detail-backdrop[b-uc5hhbvhcg] { position: fixed; inset: 0; z-index: 110; display: grid; place-items: center; padding: 1rem; background: rgba(15,23,42,.64); backdrop-filter: blur(7px); }
.friendly-detail-dialog[b-uc5hhbvhcg] { position: relative; display: grid; gap: 18px; width: min(44rem,100%); max-height: calc(100vh - 2rem); overflow: auto; padding: 22px; border-radius: 8px; background: white; box-shadow: 0 28px 80px rgba(0,0,0,.35); }
.friendly-detail-header[b-uc5hhbvhcg] { display: grid; gap: 6px; padding-right: 3.3rem; }
.friendly-detail-header h2[b-uc5hhbvhcg] { margin: 0; font-size: clamp(1.8rem,4vw,2.7rem); }
.friendly-detail-header .public-friendly-status[b-uc5hhbvhcg] { justify-self: start; }
.dialog-fixture[b-uc5hhbvhcg] { min-height: 10rem; }
.friendly-detail-description[b-uc5hhbvhcg] { margin: 0; padding: 14px; border-left: 4px solid #148273; background: #f5f9f8; color: #4f5b58; }
.friendly-detail-dialog>.public-button[b-uc5hhbvhcg] { justify-self: start; }
.friendly-detail-note[b-uc5hhbvhcg] { margin: 0; color: #66716f; font-size: .88rem; }

@media (max-width: 1450px) {
    .public-friendly-grid[b-uc5hhbvhcg] {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 8px;
    }

    .public-friendly-card[b-uc5hhbvhcg] {
        flex: 0 0 min(390px, calc(100vw - 56px));
        scroll-snap-align: start;
    }
}

@media (max-width: 540px) {
    .public-friendly-heading[b-uc5hhbvhcg] { padding-top: 0; padding-right: 0; }
    .public-friendly-heading .public-eyebrow[b-uc5hhbvhcg] { display: block; min-height: 2rem; padding-right: 10.5rem; }
    .public-friendly-history-button[b-uc5hhbvhcg] {
        top: 0;
        right: 0;
        width: auto;
        max-width: 10rem;
        min-height: 2rem;
        padding: .38rem .55rem;
        font-size: .67rem;
        line-height: 1.1;
        white-space: nowrap;
    }
    .public-friendly-card[b-uc5hhbvhcg] { padding: 15px; }
    .public-friendly-fixture[b-uc5hhbvhcg] { gap: 8px; padding: 10px; }
    .public-friendly-team img[b-uc5hhbvhcg],.public-friendly-team-shield[b-uc5hhbvhcg] { width: 3.1rem; height: 3.1rem; }
    .public-friendly-facts div[b-uc5hhbvhcg] { grid-template-columns: 64px minmax(0,1fr); }
    .friendly-detail-dialog[b-uc5hhbvhcg] { padding: 16px; }
}

.public-tournament-grid[b-uc5hhbvhcg] {
    display: grid;
    gap: 1rem;
}

.public-tournament-card[b-uc5hhbvhcg] {
    display: grid;
    gap: 1.2rem;
    padding: clamp(1rem, 3vw, 1.5rem);
    border: 1px solid rgba(24, 32, 44, 0.1);
    border-radius: 0.9rem;
    background: linear-gradient(180deg, #ffffff, #fffaf1);
    box-shadow: 0 1.2rem 2.8rem rgba(24, 32, 44, 0.1);
}

.public-tournament-head[b-uc5hhbvhcg] {
    position: relative;
    padding-bottom: 0.4rem;
    padding-right: min(11rem, 34vw);
    border-bottom: 1px solid rgba(24, 32, 44, 0.08);
}

.public-tournament-live-button[b-uc5hhbvhcg] {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.45rem;
    padding: 0.65rem 0.95rem;
    border-radius: 999px;
    font-weight: 950;
    text-decoration: none;
    box-shadow: 0 0.75rem 1.6rem rgba(24, 32, 44, 0.12);
    cursor: default;
}

.public-tournament-live-button[b-uc5hhbvhcg]::before {
    content: "";
    width: 0.58rem;
    height: 0.58rem;
    margin-right: 0.5rem;
    border-radius: 999px;
    flex: 0 0 auto;
}

.public-tournament-live-button.is-active[b-uc5hhbvhcg] {
    background: #dff8e7;
    color: #0a4d2d;
    cursor: pointer;
}

.public-tournament-live-button.is-active[b-uc5hhbvhcg]::before {
    background: #0a6b38;
    box-shadow: 0 0 0 0.22rem rgba(10, 107, 56, 0.12);
}

.public-tournament-live-button.is-inactive[b-uc5hhbvhcg] {
    background: #eef0f3;
    color: #6b7280;
}

.public-tournament-live-button.is-inactive[b-uc5hhbvhcg]::before {
    background: #d32f2f;
    box-shadow: 0 0 0 0.22rem rgba(211, 47, 47, 0.12);
}

.public-tournament-live-button.is-active:hover[b-uc5hhbvhcg],
.public-tournament-live-button.is-active:focus-visible[b-uc5hhbvhcg] {
    background: #c6f1d5;
}

.public-tournament-layout[b-uc5hhbvhcg] {
    display: grid;
    gap: 1rem;
    align-items: stretch;
}

.public-tournament-detail-panel[b-uc5hhbvhcg],
.public-tournament-flyer-panel[b-uc5hhbvhcg] {
    min-width: 0;
}

.public-tournament-detail-panel[b-uc5hhbvhcg] {
    display: grid;
    gap: 0.75rem;
    align-content: start;
}

.public-tournament-flyer-panel[b-uc5hhbvhcg] {
    display: grid;
    align-content: start;
}

.public-tournament-head h3[b-uc5hhbvhcg] {
    margin: 0.65rem 0 0.45rem;
    color: #18202c;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 950;
    line-height: 1.05;
}

.public-tournament-head p[b-uc5hhbvhcg],
.public-tournament-info-grid p[b-uc5hhbvhcg],
.public-registration-card p[b-uc5hhbvhcg] {
    margin: 0;
    color: #5c6472;
    line-height: 1.6;
}

.public-tournament-facts[b-uc5hhbvhcg],
.public-tournament-info-grid[b-uc5hhbvhcg] {
    width: 100%;
    display: grid;
    gap: 0.75rem;
    align-items: stretch;
}

.public-tournament-facts[b-uc5hhbvhcg] {
    margin: 0;
    padding: 0;
}

.public-tournament-facts div[b-uc5hhbvhcg],
.public-tournament-info-card[b-uc5hhbvhcg],
.public-registration-list[b-uc5hhbvhcg] {
    padding: 0.85rem;
    border-radius: 0.65rem;
    background: #fffaf1;
    border: 1px solid rgba(24, 32, 44, 0.07);
}

.public-tournament-facts div[b-uc5hhbvhcg],
.public-tournament-info-card[b-uc5hhbvhcg] {
    min-width: 0;
    display: grid;
    align-content: start;
    margin: 0;
}

.public-tournament-facts dt[b-uc5hhbvhcg],
.public-tournament-info-card strong[b-uc5hhbvhcg],
.public-registration-list > strong[b-uc5hhbvhcg],
.public-registration-card strong[b-uc5hhbvhcg] {
    color: #18202c;
    font-weight: 950;
}

.public-tournament-facts dd[b-uc5hhbvhcg] {
    margin: 0.2rem 0 0;
    color: #5c6472;
}

.public-tournament-registration-hint[b-uc5hhbvhcg] {
    margin: 0.65rem 0 0;
    color: #5c6472;
    font-size: 0.92rem;
    line-height: 1.45;
    white-space: pre-line;
}

.public-tournament-registration-hint a[b-uc5hhbvhcg] {
    color: #0e6b5c;
    font-weight: 950;
    text-decoration: none;
}

.public-tournament-registration-hint a:hover[b-uc5hhbvhcg] {
    text-decoration: underline;
}

.public-registration-list[b-uc5hhbvhcg] {
    display: grid;
    gap: 0.75rem;
}

.public-registration-list > span[b-uc5hhbvhcg],
.public-registration-table span[b-uc5hhbvhcg],
.public-registration-table td[b-uc5hhbvhcg] {
    color: #5c6472;
}

.public-registration-table-wrap[b-uc5hhbvhcg] {
    max-height: 28rem;
    overflow: auto;
    border: 1px solid rgba(24, 32, 44, 0.1);
    border-radius: 0.75rem;
    background: white;
    box-shadow: 0 0.8rem 1.8rem rgba(24, 32, 44, 0.06);
}

.public-registration-table[b-uc5hhbvhcg] {
    width: 100%;
    min-width: 54rem;
    border-collapse: collapse;
}

.public-registration-table th[b-uc5hhbvhcg],
.public-registration-table td[b-uc5hhbvhcg] {
    padding: 0.85rem;
    border-bottom: 1px solid rgba(24, 32, 44, 0.08);
    text-align: left;
    vertical-align: middle;
}

.public-registration-table th[b-uc5hhbvhcg] {
    position: sticky;
    top: 0;
    z-index: 1;
    background: #fffaf1;
    color: #18202c;
    font-size: 0.82rem;
    font-weight: 950;
    text-transform: uppercase;
}

.public-registration-table td:first-child[b-uc5hhbvhcg] {
    width: 8.5rem;
}

.public-registration-table td:nth-child(2)[b-uc5hhbvhcg] {
    width: 14rem;
}

.public-registration-table td:nth-child(3)[b-uc5hhbvhcg] {
    width: 9rem;
}

.public-registration-table tr:last-child td[b-uc5hhbvhcg] {
    border-bottom: 0;
}

.public-registration-table strong[b-uc5hhbvhcg] {
    color: #18202c;
    font-weight: 950;
}

.public-registration-logo-cell[b-uc5hhbvhcg] {
    display: inline-grid;
    justify-items: center;
    gap: 0.45rem;
}

.public-registration-logo[b-uc5hhbvhcg] {
    width: 5rem;
    height: 5rem;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 0.55rem;
    object-fit: contain;
    background: white;
    color: white;
    font-weight: 950;
    box-shadow: 0 0.6rem 1.2rem rgba(24, 32, 44, 0.12);
}

.public-registration-logo-fallback[b-uc5hhbvhcg] {
    font-size: 1.2rem;
}

.champion-badge[b-uc5hhbvhcg] {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    gap: 0.35rem;
    margin-top: 0.45rem;
    padding: 0.32rem 0.65rem;
    border-radius: 999px;
    background: #ffd166;
    color: #18202c;
    font-size: 0.78rem;
    font-weight: 950;
    box-shadow: 0 0.45rem 1rem rgba(24, 32, 44, 0.12);
}

.championship-title-cell[b-uc5hhbvhcg] {
    display: grid;
    justify-items: start;
    gap: 0.2rem;
}

.champion-badge-icon[b-uc5hhbvhcg] {
    width: 1rem;
    height: 1rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.public-teams-section[b-uc5hhbvhcg] {
    display: grid;
    gap: 1rem;
}

.public-team-more-button[b-uc5hhbvhcg] {
    width: fit-content;
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.35rem;
    padding: 0.7rem 1rem;
    border: 0;
    border-radius: 0.55rem;
    background: linear-gradient(135deg, #18202c, #0e6b5c);
    color: white;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 0.8rem 1.6rem rgba(24, 32, 44, 0.16);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.public-team-more-button:hover[b-uc5hhbvhcg] {
    transform: translateY(-2px);
    box-shadow: 0 1rem 2rem rgba(24, 32, 44, 0.22);
}

.public-team-table-shell[b-uc5hhbvhcg] {
    overflow-x: auto;
    border: 1px solid rgba(24, 32, 44, 0.1);
    border-radius: 0.85rem;
    background: white;
    box-shadow: 0 1.2rem 2.8rem rgba(24, 32, 44, 0.1);
}

.public-team-table[b-uc5hhbvhcg] {
    width: 100%;
    min-width: 55rem;
    border-collapse: collapse;
}

.public-team-table th[b-uc5hhbvhcg],
.public-team-table td[b-uc5hhbvhcg] {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(24, 32, 44, 0.08);
    text-align: left;
    vertical-align: middle;
}

.public-team-table th[b-uc5hhbvhcg] {
    background: #18202c;
    color: white;
    font-size: 0.85rem;
    font-weight: 950;
}

.public-team-table tbody tr[b-uc5hhbvhcg] {
    transition: background-color 160ms ease;
}

.public-team-table tbody tr:hover[b-uc5hhbvhcg] {
    background: rgba(255, 209, 102, 0.13);
}

.public-team-table tr:last-child td[b-uc5hhbvhcg] {
    border-bottom: 0;
}

.public-team-table td[b-uc5hhbvhcg] {
    color: #5c6472;
    line-height: 1.45;
}

.public-team-table td:first-child[b-uc5hhbvhcg] {
    width: 7rem;
    text-align: center;
}

.public-team-table strong[b-uc5hhbvhcg] {
    color: #18202c;
    font-weight: 950;
}

.public-team-logo[b-uc5hhbvhcg] {
    width: 5.4rem;
    height: 5.4rem;
    display: grid;
    place-items: center;
    border-radius: 0.65rem;
    object-fit: contain;
    background: white;
    color: white;
    font-weight: 950;
    box-shadow: 0 0.6rem 1.2rem rgba(24, 32, 44, 0.12);
}

.public-registration-logo-fallback[b-uc5hhbvhcg],
.public-team-logo-fallback[b-uc5hhbvhcg] {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-radius: 0.9rem 0.9rem 1.45rem 1.45rem;
    clip-path: polygon(50% 100%, 10% 78%, 10% 10%, 50% 0, 90% 10%, 90% 78%);
    background: var(--team-color, #2f9f98);
    color: var(--team-text, #ffffff) !important;
}

.public-registration-logo-fallback[b-uc5hhbvhcg]::before,
.public-team-logo-fallback[b-uc5hhbvhcg]::before {
    display: none;
}

.public-registration-logo-fallback[b-uc5hhbvhcg]::after,
.public-team-logo-fallback[b-uc5hhbvhcg]::after {
    display: none;
}

.public-registration-logo-fallback span[b-uc5hhbvhcg],
.public-team-logo-fallback span[b-uc5hhbvhcg] {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    padding-top: 0.1rem;
    font-size: clamp(1.25rem, 2.4vw, 2rem);
    font-weight: 950;
    line-height: 1;
    letter-spacing: 0;
    color: var(--team-text, #ffffff) !important;
    text-shadow: none;
}

.public-team-empty[b-uc5hhbvhcg] {
    padding: 1rem;
    border: 1px dashed rgba(24, 32, 44, 0.16);
    border-radius: 0.7rem;
    background: white;
    color: #5c6472;
    font-weight: 800;
}

.public-tournament-flyer[b-uc5hhbvhcg] {
    width: 100%;
    display: grid;
    place-items: center;
    overflow: visible;
    padding: 0.75rem;
    border: 1px solid rgba(24, 32, 44, 0.1);
    border-radius: 0.65rem;
    background: #fffaf1;
    color: #18202c;
    cursor: zoom-in;
    text-decoration: none;
}

.public-tournament-flyer-image[b-uc5hhbvhcg] {
    width: 100%;
    height: auto;
    display: block;
    background: white;
}

.public-tournament-file-preview[b-uc5hhbvhcg] {
    height: 100%;
    display: grid;
    place-items: center;
    color: #18202c;
    font-weight: 950;
}

.public-tournament-flyer-empty[b-uc5hhbvhcg] {
    min-height: clamp(17rem, 34vw, 25rem);
    display: grid;
    place-items: center;
    padding: 1rem;
    border: 1px dashed rgba(24, 32, 44, 0.16);
    border-radius: 0.65rem;
    background: #fffaf1;
    color: #5c6472;
    font-weight: 800;
    text-align: center;
}

.flyer-lightbox[b-uc5hhbvhcg] {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: clamp(0.75rem, 2vw, 1.5rem);
    background: rgba(24, 32, 44, 0.42);
}

.flyer-lightbox-dialog[b-uc5hhbvhcg] {
    width: min(68rem, calc(100vw - 2rem));
    max-height: calc(100vh - 2rem);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(24, 32, 44, 0.16);
    border-radius: 0.75rem;
    background: white;
    box-shadow: 0 1.4rem 4rem rgba(24, 32, 44, 0.28);
}

.flyer-lightbox-toolbar[b-uc5hhbvhcg] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem;
    border-bottom: 1px solid rgba(24, 32, 44, 0.1);
    border-radius: 0.75rem 0.75rem 0 0;
    background: white;
}

.flyer-lightbox-toolbar strong[b-uc5hhbvhcg] {
    color: #18202c;
    font-weight: 950;
}

.flyer-lightbox-toolbar span[b-uc5hhbvhcg] {
    color: #5c6472;
    font-weight: 800;
}

.flyer-lightbox-toolbar button[b-uc5hhbvhcg] {
    min-height: 2.25rem;
    padding: 0.4rem 0.7rem;
    border: 1px solid rgba(24, 32, 44, 0.14);
    border-radius: 0.45rem;
    background: #fffaf1;
    color: #18202c;
    font-weight: 900;
}

.flyer-lightbox-stage[b-uc5hhbvhcg] {
    overflow: hidden;
    display: grid;
    place-items: center;
    height: min(64vh, 38rem);
    min-height: 18rem;
    padding: 1rem;
    border-radius: 0 0 0.75rem 0.75rem;
    background:
        linear-gradient(45deg, rgba(24, 32, 44, 0.04) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(24, 32, 44, 0.04) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(24, 32, 44, 0.04) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(24, 32, 44, 0.04) 75%),
        #fffaf1;
    background-position: 0 0, 0 0.6rem, 0.6rem -0.6rem, -0.6rem 0;
    background-size: 1.2rem 1.2rem;
    cursor: grab;
    user-select: none;
}

.flyer-lightbox-stage:active[b-uc5hhbvhcg] {
    cursor: grabbing;
}

.flyer-lightbox-stage img[b-uc5hhbvhcg] {
    width: auto;
    height: auto;
    max-width: calc(100vw - 4rem);
    max-height: min(calc(64vh - 2rem), 36rem);
    display: block;
    object-fit: contain;
    transform-origin: center;
    box-shadow: 0 1rem 2rem rgba(24, 32, 44, 0.22);
    transition: transform 0.08s ease-out;
    pointer-events: none;
}

.contact-grid[b-uc5hhbvhcg] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 1rem;
}

.contact-location[b-uc5hhbvhcg] {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(24, 32, 44, 0.1);
    border-radius: 0.9rem;
    background: white;
    box-shadow: 0 1.2rem 2.8rem rgba(24, 32, 44, 0.11);
}

.contact-location-copy[b-uc5hhbvhcg] {
    padding: clamp(1.25rem, 3vw, 2rem);
    background:
        linear-gradient(180deg, rgba(18, 25, 35, 0.04), transparent),
        #ffffff;
}

.contact-location-copy h3[b-uc5hhbvhcg] {
    margin: 0.35rem 0 0.45rem;
    color: #18202c;
    font-size: clamp(1.55rem, 4vw, 2.6rem);
    line-height: 1.05;
}

.contact-location-copy p[b-uc5hhbvhcg] {
    margin: 0;
    color: #5c6472;
    font-size: 1.05rem;
    line-height: 1.55;
}

.contact-location iframe[b-uc5hhbvhcg] {
    width: 100%;
    min-height: 22rem;
    border: 0;
}

.contact-grid article[b-uc5hhbvhcg] {
    padding: 1rem;
}

.contact-grid strong[b-uc5hhbvhcg],
.contact-grid span[b-uc5hhbvhcg] {
    display: block;
}

.contact-grid span[b-uc5hhbvhcg] {
    margin-top: 0.35rem;
    color: #5c6472;
}

.newsletter-card[b-uc5hhbvhcg] {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
    padding: clamp(1.25rem, 3vw, 1.8rem);
    border: 1px solid rgba(24, 32, 44, 0.1);
    border-radius: 0.9rem;
    background: linear-gradient(135deg, #ffffff, #f4fbf7);
    box-shadow: 0 1.2rem 2.8rem rgba(24, 32, 44, 0.1);
    transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        border-color 220ms ease;
}

.newsletter-card h3[b-uc5hhbvhcg] {
    margin: 0.35rem 0 0.45rem;
    color: #18202c;
    font-size: clamp(1.55rem, 4vw, 2.4rem);
}

.newsletter-card p[b-uc5hhbvhcg] {
    margin: 0;
    color: #5c6472;
    line-height: 1.6;
}

.newsletter-form-grid[b-uc5hhbvhcg] {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.newsletter-message[b-uc5hhbvhcg] {
    margin-top: 0.75rem !important;
    color: #115f4c !important;
    font-weight: 800;
}

.social-links[b-uc5hhbvhcg] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
}

.social-links a[b-uc5hhbvhcg] {
    min-height: 2.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.75rem;
    border: 1px solid rgba(24, 32, 44, 0.14);
    border-radius: 999px;
    background: rgba(18, 25, 35, 0.34);
    color: white;
    border-color: rgba(255, 255, 255, 0.34);
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 0.45rem 1.2rem rgba(24, 32, 44, 0.08);
    transform: translateY(0) scale(1);
    transition:
        background-color 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.social-links a:hover[b-uc5hhbvhcg],
.social-links a:focus-visible[b-uc5hhbvhcg] {
    border-color: rgba(255, 209, 102, 0.72);
    background: rgba(255, 209, 102, 0.24);
    color: white;
    box-shadow: 0 0.8rem 1.8rem rgba(24, 32, 44, 0.16);
    transform: translateY(-3px) scale(1.03);
}

.social-links a:focus-visible[b-uc5hhbvhcg] {
    outline: 3px solid rgba(237, 83, 72, 0.28);
    outline-offset: 3px;
}

.social-links span[b-uc5hhbvhcg] {
    width: 1.55rem;
    height: 1.55rem;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #ffd166;
    color: #18202c;
    font-size: 0.68rem;
}

.social-links img[b-uc5hhbvhcg] {
    width: 1.3rem;
    height: 1.3rem;
    transition: transform 180ms ease;
}

.social-links a:hover img[b-uc5hhbvhcg],
.social-links a:focus-visible img[b-uc5hhbvhcg] {
    transform: rotate(-5deg) scale(1.08);
}

@keyframes heroCopyIn-b-uc5hhbvhcg {
    from {
        opacity: 0;
        transform: translateY(0.55rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-hero[b-uc5hhbvhcg],
.public-section[b-uc5hhbvhcg],
.public-band[b-uc5hhbvhcg],
.public-archive-actions[b-uc5hhbvhcg] {
    opacity: 1;
    will-change: opacity, transform;
    animation: publicPageBlockIn-b-uc5hhbvhcg 1050ms cubic-bezier(0.19, 1, 0.22, 1) both;
    animation-delay: var(--page-block-delay, 0ms);
}

.home-hero[b-uc5hhbvhcg] {
    --page-block-delay: 0ms;
}

.home-hero .hero-copy[b-uc5hhbvhcg] {
    animation: none;
}

#verein[b-uc5hhbvhcg] {
    --page-block-delay: 120ms;
}

#turniere[b-uc5hhbvhcg] {
    --page-block-delay: 180ms;
}

.public-tournaments-section[b-uc5hhbvhcg] {
    --page-block-delay: 240ms;
}

.public-archive-actions[b-uc5hhbvhcg] {
    --page-block-delay: 280ms;
}

#mannschaften[b-uc5hhbvhcg] {
    --page-block-delay: 320ms;
}

#medien[b-uc5hhbvhcg] {
    --page-block-delay: 360ms;
}

#kontakt[b-uc5hhbvhcg],
.empty-public-page[b-uc5hhbvhcg] {
    --page-block-delay: 400ms;
}

@keyframes publicPageBlockIn-b-uc5hhbvhcg {
    from {
        opacity: 0.78;
        transform: translate3d(0, 1.35rem, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero[b-uc5hhbvhcg],
    .public-section[b-uc5hhbvhcg],
    .public-band[b-uc5hhbvhcg],
    .public-archive-actions[b-uc5hhbvhcg],
    .hero-copy[b-uc5hhbvhcg] {
        animation: none !important;
        transition: none !important;
    }
}

.empty-public-page[b-uc5hhbvhcg] {
    min-height: calc(100vh - 9rem);
    display: grid;
    align-items: center;
}

.team-detail-link[b-uc5hhbvhcg] {
    border: 0;
    background: transparent;
    padding: 0;
    color: #0f766e;
    font: inherit;
    font-weight: 950;
    text-align: left;
    cursor: pointer;
}

.team-detail-link:hover[b-uc5hhbvhcg],
.team-detail-link:focus-visible[b-uc5hhbvhcg] {
    color: #0f4b42;
    text-decoration: underline;
}

.team-detail-backdrop[b-uc5hhbvhcg] {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.62);
    backdrop-filter: blur(8px);
}

.team-detail-dialog[b-uc5hhbvhcg] {
    position: relative;
    width: min(58rem, 100%);
    max-height: min(46rem, calc(100vh - 2rem));
    overflow: auto;
    padding: 1rem;
    border-radius: 0.85rem;
    background: #ffffff;
    box-shadow: 0 1.5rem 4rem rgba(15, 23, 42, 0.32);
}

.team-detail-close[b-uc5hhbvhcg] {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 2.65rem;
    height: 2.65rem;
    border: 1px solid rgba(15, 23, 42, 0.16);
    border-radius: 0.6rem;
    background: white;
    color: #18202c;
    font-size: 1.4rem;
    font-weight: 950;
    cursor: pointer;
}

.team-detail-content[b-uc5hhbvhcg] {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(14rem, 21rem);
    gap: 1rem;
    align-items: start;
}

.team-detail-header[b-uc5hhbvhcg] {
    display: flex;
    gap: 0.9rem;
    align-items: center;
    padding-right: 3rem;
}

.team-detail-logo[b-uc5hhbvhcg] {
    width: 4.8rem;
    height: 4.8rem;
    flex: 0 0 auto;
    object-fit: contain;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 0.75rem;
    background: #f8fbfa;
}

.team-detail-header h2[b-uc5hhbvhcg] {
    margin: 0;
    color: #101820;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    line-height: 1;
}

.team-detail-facts[b-uc5hhbvhcg] {
    display: grid;
    gap: 0.75rem;
    margin: 1rem 0;
}

.team-detail-facts div[b-uc5hhbvhcg] {
    padding: 0.75rem;
    border: 1px solid rgba(15, 118, 110, 0.14);
    border-radius: 0.7rem;
    background: #fffaf1;
}

.team-detail-facts dt[b-uc5hhbvhcg] {
    color: #0f766e;
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
}

.team-detail-facts dd[b-uc5hhbvhcg] {
    margin: 0.25rem 0 0;
    color: #4f5b66;
    font-weight: 760;
}

.team-detail-player-table-wrap[b-uc5hhbvhcg] {
    max-height: 18rem;
    overflow: auto;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 0.75rem;
}

.team-detail-player-table[b-uc5hhbvhcg] {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.team-detail-player-table th[b-uc5hhbvhcg],
.team-detail-player-table td[b-uc5hhbvhcg] {
    padding: 0.65rem 0.75rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.09);
    text-align: left;
}

.team-detail-player-table th[b-uc5hhbvhcg] {
    position: sticky;
    top: 0;
    background: #eef8f5;
    color: #0f766e;
    font-size: 0.78rem;
    text-transform: uppercase;
}

.team-detail-photo img[b-uc5hhbvhcg] {
    width: 100%;
    max-height: 28rem;
    object-fit: cover;
    border: 1px solid rgba(15, 23, 42, 0.14);
    border-radius: 0.8rem;
    background: #f8fbfa;
}

@media (min-width: 1451px) {
    .home-hero[b-uc5hhbvhcg] {
        grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
    }

    .public-band[b-uc5hhbvhcg] {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .contact-location[b-uc5hhbvhcg] {
        grid-template-columns: minmax(18rem, 0.75fr) minmax(0, 1.25fr);
        align-items: stretch;
    }

    .newsletter-card[b-uc5hhbvhcg] {
        grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
        align-items: start;
    }

    .newsletter-form-grid[b-uc5hhbvhcg] {
        grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
    }

    .public-tournament-layout[b-uc5hhbvhcg] {
        grid-template-columns: minmax(0, 1fr) minmax(18rem, 24rem);
    }

    .public-tournament-facts[b-uc5hhbvhcg],
    .public-tournament-info-grid[b-uc5hhbvhcg] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1450px) {
    .home-hero[b-uc5hhbvhcg] {
        min-height: auto;
    }

    .hero-copy[b-uc5hhbvhcg] {
        max-width: min(53rem, 100%);
    }

    .hero-flyer-card[b-uc5hhbvhcg] {
        width: min(19rem, 82vw);
        justify-self: center;
        transform: none;
    }

    .media-category-strip[b-uc5hhbvhcg] {
        grid-template-columns: none;
        grid-auto-columns: minmax(17rem, min(24rem, 82vw));
        overflow-x: auto;
        padding-inline: 0.15rem;
    }

    .media-category-card[b-uc5hhbvhcg] {
        width: 100%;
    }

    .media-card-list[b-uc5hhbvhcg] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .team-detail-content[b-uc5hhbvhcg] {
        grid-template-columns: 1fr;
    }

    .public-tournament-flyer-panel[b-uc5hhbvhcg] {
        width: min(32rem, 100%);
        justify-self: center;
    }
}

@media (max-width: 720px) {
    .public-tournament-head[b-uc5hhbvhcg] {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: start;
        gap: 0.8rem 0.65rem;
        padding-top: 0;
        padding-right: 0;
    }

    .public-tournament-head .content-block-type[b-uc5hhbvhcg] {
        grid-column: 1;
        align-self: center;
        min-width: 0;
        width: fit-content;
    }

    .public-tournament-live-button[b-uc5hhbvhcg] {
        position: static;
        grid-column: 2;
        grid-row: 1 / span 2;
        justify-self: end;
        align-self: start;
        min-height: 1.9rem;
        padding: 0.24rem 0.5rem;
        font-size: 0.72rem;
        white-space: nowrap;
    }

    .public-tournament-head h3[b-uc5hhbvhcg],
    .public-tournament-head p[b-uc5hhbvhcg] {
        grid-column: 1 / -1;
        min-width: 0;
    }

    .public-tournament-head h3[b-uc5hhbvhcg] {
        margin-top: 0.15rem;
        font-size: clamp(2rem, 10vw, 2.55rem);
        overflow-wrap: anywhere;
    }

    .public-tournament-head p[b-uc5hhbvhcg] {
        margin-top: -0.25rem;
        max-width: none;
    }

    .public-tournament-live-button[b-uc5hhbvhcg]::before {
        width: 0.45rem;
        height: 0.45rem;
        margin-right: 0.35rem;
    }

    .public-team-table-shell[b-uc5hhbvhcg] {
        overflow: visible;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .public-team-table[b-uc5hhbvhcg] {
        min-width: 0;
        border-collapse: separate;
        border-spacing: 0 0.75rem;
    }

    .public-team-table thead[b-uc5hhbvhcg] {
        display: none;
    }

    .public-team-table tbody[b-uc5hhbvhcg] {
        display: grid;
        gap: 0.75rem;
    }

    .public-team-table tr[b-uc5hhbvhcg] {
        display: grid;
        grid-template-columns: 4.25rem minmax(0, 1fr);
        gap: 0.65rem 0.85rem;
        padding: 0.75rem;
        border: 1px solid rgba(24, 32, 44, 0.1);
        border-radius: 0.75rem;
        background: white;
        box-shadow: 0 0.9rem 2rem rgba(24, 32, 44, 0.08);
    }

    .public-team-table td[b-uc5hhbvhcg] {
        display: grid;
        gap: 0.2rem;
        padding: 0;
        border: 0;
        min-width: 0;
    }

    .public-team-table td[b-uc5hhbvhcg]::before {
        content: attr(data-label);
        color: #0e6b5c;
        font-size: 0.72rem;
        font-weight: 950;
        text-transform: uppercase;
    }

    .public-team-table td:first-child[b-uc5hhbvhcg] {
        width: auto;
        grid-row: span 4;
        align-self: start;
        text-align: left;
    }

    .public-team-table td:first-child[b-uc5hhbvhcg]::before {
        display: none;
    }

    .public-team-table td:nth-child(2)[b-uc5hhbvhcg] {
        align-self: center;
    }

    .public-team-table td:nth-child(3)[b-uc5hhbvhcg],
    .public-team-table td:nth-child(4)[b-uc5hhbvhcg],
    .public-team-table td:nth-child(5)[b-uc5hhbvhcg] {
        grid-column: 2;
    }

    .public-team-logo[b-uc5hhbvhcg] {
        width: 4rem;
        height: 4rem;
    }

    .public-team-more-button[b-uc5hhbvhcg] {
        width: 100%;
        margin-top: 0.25rem;
    }

    .public-registration-table-wrap[b-uc5hhbvhcg] {
        max-height: 22rem;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .public-registration-table[b-uc5hhbvhcg] {
        min-width: 0;
        table-layout: auto;
    }

    .public-registration-table th:nth-child(4)[b-uc5hhbvhcg],
    .public-registration-table th:nth-child(5)[b-uc5hhbvhcg],
    .public-registration-table td:nth-child(4)[b-uc5hhbvhcg],
    .public-registration-table td:nth-child(5)[b-uc5hhbvhcg] {
        display: none;
    }

    .public-registration-table th[b-uc5hhbvhcg],
    .public-registration-table td[b-uc5hhbvhcg] {
        padding: 0.48rem 0.38rem;
        font-size: 0.84rem;
    }

    .public-registration-table th[b-uc5hhbvhcg] {
        font-size: 0.68rem;
        line-height: 1;
        letter-spacing: 0;
    }

    .public-registration-table th:first-child[b-uc5hhbvhcg],
    .public-registration-table td:first-child[b-uc5hhbvhcg] {
        width: 4.15rem;
    }

    .public-registration-table th:nth-child(2)[b-uc5hhbvhcg],
    .public-registration-table td:nth-child(2)[b-uc5hhbvhcg] {
        width: auto;
    }

    .public-registration-table th:nth-child(3)[b-uc5hhbvhcg],
    .public-registration-table td:nth-child(3)[b-uc5hhbvhcg] {
        width: 3.2rem;
        text-align: center;
    }

    .public-registration-logo-cell[b-uc5hhbvhcg] {
        justify-content: flex-start;
    }

    .public-registration-logo[b-uc5hhbvhcg] {
        width: 3.25rem;
        height: 3.25rem;
        border-radius: 0.55rem;
    }

    .public-registration-table .team-detail-link[b-uc5hhbvhcg] {
        font-size: 0.9rem;
        line-height: 1.15;
    }
}

@media (max-width: 640px) {
    .team-detail-content[b-uc5hhbvhcg] {
        grid-template-columns: 1fr;
    }

    .hero-flyer-card[b-uc5hhbvhcg] {
        width: min(16rem, 72vw);
        justify-self: center;
    }

    .media-card-list[b-uc5hhbvhcg] {
        grid-template-columns: 1fr;
    }

    .home-hero[b-uc5hhbvhcg] {
        min-height: auto;
    }

    h1[b-uc5hhbvhcg] {
        font-size: clamp(2.35rem, 10vw, 3.3rem);
        line-height: 1;
        overflow-wrap: normal;
    }

    .hero-actions[b-uc5hhbvhcg],
    .public-band[b-uc5hhbvhcg] {
        align-items: stretch;
    }

    .public-button[b-uc5hhbvhcg] {
        width: 100%;
    }
}
/* /Components/Pages/NewsletterConfirm.razor.rz.scp.css */
.newsletter-status-page[b-svxbiddh76] {
    min-height: calc(100vh - 9rem);
    display: grid;
    place-items: center;
    padding: clamp(2.5rem, 7vw, 6rem) clamp(1rem, 5vw, 5rem);
    background:
        radial-gradient(circle at 18% 14%, rgba(255, 209, 102, 0.28), transparent 28rem),
        radial-gradient(circle at 86% 18%, rgba(232, 93, 79, 0.16), transparent 24rem),
        linear-gradient(180deg, #fffaf1, #f5faf7 70%, #fffaf1);
}

.newsletter-status-card[b-svxbiddh76] {
    width: min(100%, 48rem);
    padding: clamp(1.6rem, 4vw, 3.2rem);
    border: 1px solid rgba(24, 32, 44, 0.12);
    border-radius: 0.9rem;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 241, 0.92));
    box-shadow: 0 1.6rem 3.4rem rgba(24, 32, 44, 0.14);
}

.public-eyebrow[b-svxbiddh76] {
    display: inline-flex;
    margin-bottom: 0.75rem;
    color: #c94e43;
    font-size: 0.82rem;
    font-weight: 950;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1[b-svxbiddh76] {
    max-width: 14ch;
    margin: 0;
    color: #18202c;
    font-size: clamp(2.35rem, 6vw, 5rem);
    font-weight: 950;
    line-height: 0.95;
}

p[b-svxbiddh76] {
    max-width: 40rem;
    margin: 1rem 0 1.4rem;
    color: #4d5869;
    font-size: 1.08rem;
    line-height: 1.7;
}

.public-button[b-svxbiddh76] {
    min-height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.78rem 1rem;
    border: 1px solid transparent;
    border-radius: 0.55rem;
    font-weight: 950;
    text-decoration: none;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background 180ms ease;
}

.public-button-primary[b-svxbiddh76] {
    background: #e85d4f;
    color: white;
    box-shadow: 0 0.85rem 1.8rem rgba(232, 93, 79, 0.25);
}

.public-button-primary:hover[b-svxbiddh76] {
    background: #d94f43;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 640px) {
    .newsletter-status-page[b-svxbiddh76] {
        place-items: stretch;
        padding-top: 2rem;
    }
}
/* /Components/Pages/NewsletterUnsubscribe.razor.rz.scp.css */
.newsletter-status-page[b-41swcqyqbn] {
    min-height: calc(100vh - 9rem);
    display: grid;
    place-items: center;
    padding: clamp(2.5rem, 7vw, 6rem) clamp(1rem, 5vw, 5rem);
    background:
        radial-gradient(circle at 18% 14%, rgba(255, 209, 102, 0.28), transparent 28rem),
        radial-gradient(circle at 86% 18%, rgba(232, 93, 79, 0.16), transparent 24rem),
        linear-gradient(180deg, #fffaf1, #f5faf7 70%, #fffaf1);
}

.newsletter-status-card[b-41swcqyqbn] {
    width: min(100%, 48rem);
    padding: clamp(1.6rem, 4vw, 3.2rem);
    border: 1px solid rgba(24, 32, 44, 0.12);
    border-radius: 0.9rem;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 241, 0.92));
    box-shadow: 0 1.6rem 3.4rem rgba(24, 32, 44, 0.14);
}

.public-eyebrow[b-41swcqyqbn] {
    display: inline-flex;
    margin-bottom: 0.75rem;
    color: #c94e43;
    font-size: 0.82rem;
    font-weight: 950;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1[b-41swcqyqbn] {
    max-width: 14ch;
    margin: 0;
    color: #18202c;
    font-size: clamp(2.35rem, 6vw, 5rem);
    font-weight: 950;
    line-height: 0.95;
}

p[b-41swcqyqbn] {
    max-width: 40rem;
    margin: 1rem 0 1.4rem;
    color: #4d5869;
    font-size: 1.08rem;
    line-height: 1.7;
}

.public-button[b-41swcqyqbn] {
    min-height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.78rem 1rem;
    border: 1px solid transparent;
    border-radius: 0.55rem;
    font-weight: 950;
    text-decoration: none;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background 180ms ease;
}

.public-button-primary[b-41swcqyqbn] {
    background: #e85d4f;
    color: white;
    box-shadow: 0 0.85rem 1.8rem rgba(232, 93, 79, 0.25);
}

.public-button-primary:hover[b-41swcqyqbn] {
    background: #d94f43;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 640px) {
    .newsletter-status-page[b-41swcqyqbn] {
        place-items: stretch;
        padding-top: 2rem;
    }
}
/* /Components/Pages/PublicFriendlyMatch.razor.rz.scp.css */
.public-friendly-detail[b-fjuvdii750] { display: grid; gap: 22px; max-width: 980px; margin-inline: auto; }
.public-friendly-detail h1[b-fjuvdii750] { margin: 0; font-size: clamp(2rem, 5vw, 4rem); }
.public-friendly-detail-facts[b-fjuvdii750] { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.public-friendly-detail-facts span[b-fjuvdii750] { display: grid; gap: 6px; padding: 16px; border: 1px solid #d7e1de; background: #fff; }
.public-friendly-detail .public-button[b-fjuvdii750] { justify-self: start; }
.public-friendly-legal[b-fjuvdii750] { padding: 16px; border-left: 4px solid #d69a32; background: #fff8e7; }
.public-friendly-legal p[b-fjuvdii750] { margin-bottom: 0; }
@media (max-width: 900px) { .public-friendly-detail-facts[b-fjuvdii750] { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .public-friendly-detail-facts[b-fjuvdii750] { grid-template-columns: 1fr; } }
/* /Components/Pages/Registration.razor.rz.scp.css */
.registration-page[b-7rx1rh8lyz] {
    min-height: calc(100vh - 4.75rem);
    display: grid;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
    padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 5vw, 5rem);
    background:
        linear-gradient(120deg, rgba(255, 250, 241, 0.96), rgba(255, 250, 241, 0.78)),
        linear-gradient(135deg, #ffe7a3 0%, #f7b267 52%, #7ec8c2 100%);
}

.registration-copy[b-7rx1rh8lyz] {
    max-width: 42rem;
}

.registration-copy h1[b-7rx1rh8lyz] {
    margin: 0.35rem 0 0.8rem;
    color: #18202c;
    font-size: clamp(2.6rem, 7vw, 5.4rem);
    font-weight: 950;
    line-height: 0.98;
}

.registration-copy p[b-7rx1rh8lyz] {
    color: #4f5261;
    font-size: 1.08rem;
    line-height: 1.65;
}

.process-list[b-7rx1rh8lyz] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.4rem;
}

.process-list span[b-7rx1rh8lyz] {
    padding: 0.55rem 0.7rem;
    border: 1px solid rgba(24, 32, 44, 0.12);
    border-radius: 0.55rem;
    background: rgba(255, 255, 255, 0.72);
    color: #2f3542;
    font-weight: 800;
}

.registration-panel[b-7rx1rh8lyz] {
    width: 100%;
    max-width: 36rem;
    padding: clamp(1rem, 3vw, 1.5rem);
    border: 1px solid rgba(24, 32, 44, 0.12);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 1.5rem 3rem rgba(24, 32, 44, 0.13);
}

.form-field[b-7rx1rh8lyz] {
    display: grid;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.form-field label[b-7rx1rh8lyz] {
    color: #18202c;
    font-weight: 900;
}

.form-field label span[b-7rx1rh8lyz] {
    color: #6e6470;
    font-weight: 700;
}

.form-field input[b-7rx1rh8lyz],
.form-field textarea[b-7rx1rh8lyz] {
    width: 100%;
    min-height: 2.85rem;
    padding: 0.7rem 0.8rem;
    border: 1px solid rgba(24, 32, 44, 0.16);
    border-radius: 0.55rem;
    background: white;
    color: #18202c;
}

.form-field textarea[b-7rx1rh8lyz] {
    min-height: 8rem;
    resize: vertical;
}

.form-field input:focus[b-7rx1rh8lyz],
.form-field textarea:focus[b-7rx1rh8lyz] {
    border-color: #e85d4f;
    outline: 3px solid rgba(232, 93, 79, 0.18);
}

.validation-message[b-7rx1rh8lyz] {
    color: #c0392b;
    font-weight: 700;
}

.form-message[b-7rx1rh8lyz] {
    display: grid;
    gap: 0.2rem;
    margin-bottom: 1rem;
    padding: 0.85rem;
    border-radius: 0.6rem;
    border: 1px solid transparent;
}

.form-message strong[b-7rx1rh8lyz],
.form-message span[b-7rx1rh8lyz],
.form-message a[b-7rx1rh8lyz] {
    display: block;
}

.form-message a[b-7rx1rh8lyz] {
    color: inherit;
    font-weight: 900;
}

.form-message-success[b-7rx1rh8lyz] {
    background: #edf9f3;
    border-color: #a8dcc1;
    color: #195a3b;
}

.form-message-error[b-7rx1rh8lyz] {
    background: #fff0ee;
    border-color: #f3b0aa;
    color: #9f2f26;
}

button.public-button[b-7rx1rh8lyz] {
    width: 100%;
}

button.public-button:disabled[b-7rx1rh8lyz] {
    cursor: wait;
    opacity: 0.72;
}

@media (min-width: 940px) {
    .registration-page[b-7rx1rh8lyz] {
        grid-template-columns: minmax(0, 1fr) minmax(24rem, 0.8fr);
    }
}
/* /Components/Pages/ResetTeamPassword.razor.rz.scp.css */
.login-page[b-5jodopm6mr] {
    min-height: calc(100vh - 4.75rem);
    display: grid;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
    padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 5vw, 5rem);
    background:
        linear-gradient(120deg, rgba(255, 250, 241, 0.96), rgba(255, 250, 241, 0.78)),
        linear-gradient(135deg, #ffe7a3 0%, #f7b267 52%, #7ec8c2 100%);
}

.login-copy[b-5jodopm6mr] {
    max-width: 38rem;
}

.login-copy h1[b-5jodopm6mr] {
    margin: 0.35rem 0 0.8rem;
    color: #18202c;
    font-size: clamp(2.4rem, 7vw, 5rem);
    font-weight: 950;
    line-height: 0.98;
}

.login-copy p[b-5jodopm6mr] {
    color: #4f5261;
    font-size: 1.08rem;
    line-height: 1.65;
}

.login-panel[b-5jodopm6mr] {
    width: 100%;
    max-width: 34rem;
    padding: clamp(1rem, 3vw, 1.5rem);
    border: 1px solid rgba(24, 32, 44, 0.12);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 1.5rem 3rem rgba(24, 32, 44, 0.13);
}

@media (min-width: 900px) {
    .login-page[b-5jodopm6mr] {
        grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.75fr);
    }
}
/* /Components/Pages/TeamDashboard.razor.rz.scp.css */
.team-dashboard-header[b-o0rnct965q],
.team-page-header[b-o0rnct965q] {
    margin-bottom: 1.25rem;
}

.team-dashboard-header[b-o0rnct965q] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.team-message-notice[b-o0rnct965q] {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.85rem;
    margin: 0 0 1rem;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(13, 123, 108, 0.24);
    border-radius: 0.7rem;
    background: #eaf8f4;
    color: #17463e;
    text-decoration: none;
    box-shadow: 0 0.8rem 1.8rem rgba(24, 32, 44, 0.07);
}

.team-message-notice > span:nth-child(2)[b-o0rnct965q] {
    display: grid;
    gap: 0.15rem;
    min-width: 0;
}

.team-message-notice small[b-o0rnct965q] {
    color: #53625f;
}

.team-message-notice-badge[b-o0rnct965q] {
    display: grid;
    place-items: center;
    min-width: 2rem;
    height: 2rem;
    padding: 0 0.45rem;
    border-radius: 999px;
    background: #0d7b6c;
    color: #fff;
    font-weight: 950;
}

.team-message-notice-link[b-o0rnct965q] {
    font-weight: 900;
    white-space: nowrap;
}

@media (max-width: 700px) {
    .team-message-notice[b-o0rnct965q] {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .team-message-notice-link[b-o0rnct965q] {
        grid-column: 2;
    }
}

.team-logo[b-o0rnct965q] {
    width: clamp(4.5rem, 12vw, 7rem);
    height: clamp(4.5rem, 12vw, 7rem);
    display: grid;
    place-items: center;
    border-radius: 1rem;
    color: white;
    font-size: clamp(1.5rem, 4vw, 2.6rem);
    font-weight: 950;
    box-shadow: 0 1.2rem 2.4rem rgba(24, 32, 44, 0.16);
}

.team-logo-fallback[b-o0rnct965q] {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-radius: 1rem 1rem 1.8rem 1.8rem;
    clip-path: polygon(50% 100%, 10% 78%, 10% 10%, 50% 0, 90% 10%, 90% 78%);
    background: var(--team-color, #2f9f98);
    color: var(--team-text, #ffffff) !important;
}

.team-logo-fallback[b-o0rnct965q]::before {
    display: none;
}

.team-logo-fallback span[b-o0rnct965q] {
    position: relative;
    z-index: 1;
    line-height: 1;
    letter-spacing: 0;
    color: var(--team-text, #ffffff) !important;
    text-shadow: none;
}

.team-logo-image[b-o0rnct965q] {
    object-fit: contain;
    background: white;
}

.team-dashboard-header h1[b-o0rnct965q],
.team-page-header h1[b-o0rnct965q] {
    margin: 0.3rem 0 0;
    color: #18202c;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 950;
    line-height: 1;
}

.team-dashboard-header p[b-o0rnct965q],
.team-page-header p[b-o0rnct965q],
.team-panel p[b-o0rnct965q] {
    color: #5c6472;
}

.team-page-header p[b-o0rnct965q] {
    margin-top: 0.65rem;
    line-height: 1.55;
}

.team-stat-grid[b-o0rnct965q] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.team-stat-card[b-o0rnct965q],
.team-panel[b-o0rnct965q] {
    border: 1px solid rgba(24, 32, 44, 0.1);
    border-radius: 0.75rem;
    background: white;
    box-shadow: 0 1rem 2rem rgba(24, 32, 44, 0.07);
}

.team-stat-card[b-o0rnct965q] {
    padding: 1.1rem;
}

.team-stat-card span[b-o0rnct965q],
.team-stat-card strong[b-o0rnct965q] {
    display: block;
}

.team-stat-card span[b-o0rnct965q] {
    color: #18202c;
    font-size: 1.7rem;
    font-weight: 950;
}

.team-stat-card strong[b-o0rnct965q] {
    color: #5c6472;
}

.team-grid[b-o0rnct965q] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
    gap: 1rem;
}

.team-panel[b-o0rnct965q] {
    padding: 1.25rem;
}

.team-panel h2[b-o0rnct965q] {
    margin: 0 0 0.75rem;
    color: #18202c;
    font-size: 1.25rem;
    font-weight: 950;
}

.team-panel dl[b-o0rnct965q] {
    display: grid;
    gap: 0.75rem;
    margin: 0;
}

.team-panel dl div[b-o0rnct965q] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.team-panel dt[b-o0rnct965q] {
    color: #5c6472;
    font-weight: 700;
}

.team-panel dd[b-o0rnct965q] {
    margin: 0;
    color: #18202c;
    font-weight: 900;
}

.team-form-panel[b-o0rnct965q] {
    max-width: 48rem;
}

.tournament-team-panel[b-o0rnct965q] {
    margin-top: 1rem;
}

.team-tournament-list[b-o0rnct965q] {
    display: grid;
    gap: 1rem;
}

.team-tournament-card[b-o0rnct965q] {
    display: grid;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(24, 32, 44, 0.1);
    border-radius: 0.75rem;
    background: #fffaf1;
}

.team-tournament-card h3[b-o0rnct965q] {
    margin: 0.55rem 0 0.35rem;
    color: #18202c;
    font-size: 1.45rem;
    font-weight: 950;
}

.team-tournament-card p[b-o0rnct965q] {
    margin: 0;
    color: #5c6472;
    line-height: 1.55;
}

.team-tournament-action[b-o0rnct965q] {
    border: 0;
    box-shadow: 0 0.9rem 1.8rem rgba(24, 32, 44, 0.12);
}

.team-tournament-action.is-open[b-o0rnct965q] {
    background: #0b6b45;
    color: #ffffff;
}

.team-tournament-action.is-open:hover[b-o0rnct965q],
.team-tournament-action.is-open:focus-visible[b-o0rnct965q] {
    background: #09583a;
}

.team-tournament-action.is-full[b-o0rnct965q] {
    background: #f59f2f;
    color: #18202c;
}

.team-tournament-action.is-full:hover[b-o0rnct965q],
.team-tournament-action.is-full:focus-visible[b-o0rnct965q] {
    background: #e38d18;
}

.team-tournament-action.is-closed[b-o0rnct965q],
.team-tournament-action.is-closed:disabled[b-o0rnct965q] {
    background: #e85d52;
    color: #ffffff;
    opacity: 1;
}

.team-tournament-card dl[b-o0rnct965q] {
    display: grid;
    gap: 0.55rem;
    margin: 0;
}

.team-waitlist-hint[b-o0rnct965q] {
    margin: 0;
    padding: 0.75rem 0.85rem;
    border: 1px solid rgba(245, 159, 47, 0.35);
    border-radius: 0.7rem;
    background: #fff8ea;
    color: #6b4300;
    font-weight: 800;
    line-height: 1.45;
}

.team-registration-state[b-o0rnct965q] {
    display: grid;
    gap: 0.2rem;
    padding: 0.75rem;
    border-radius: 0.65rem;
    background: white;
}

.team-registration-state strong[b-o0rnct965q],
.team-registration-state span[b-o0rnct965q] {
    display: block;
}

.team-registration-state span[b-o0rnct965q] {
    color: #5c6472;
}

.players-workspace[b-o0rnct965q] {
    display: grid;
    gap: 1rem;
}

.player-list-panel[b-o0rnct965q] {
    min-height: 24rem;
}

.panel-heading[b-o0rnct965q] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.panel-heading h2[b-o0rnct965q] {
    margin: 0;
}

.panel-heading span[b-o0rnct965q] {
    color: #5c6472;
    font-weight: 800;
}

.player-list[b-o0rnct965q] {
    max-height: 32rem;
    display: grid;
    gap: 0.75rem;
    overflow-y: auto;
    padding-right: 0.35rem;
}

.player-row[b-o0rnct965q] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem;
    border: 1px solid rgba(24, 32, 44, 0.1);
    border-radius: 0.65rem;
    background: #fffaf1;
}

.player-row strong[b-o0rnct965q],
.player-row span[b-o0rnct965q],
.player-row small[b-o0rnct965q] {
    display: block;
}

.player-row span[b-o0rnct965q],
.player-row small[b-o0rnct965q] {
    color: #5c6472;
}

.text-button[b-o0rnct965q] {
    border: none;
    background: transparent;
    color: #c94e43;
    font-weight: 900;
    text-decoration: underline;
}

.text-button:hover[b-o0rnct965q] {
    color: #9f2f26;
}

@media (min-width: 980px) {
    .players-workspace[b-o0rnct965q] {
        grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.72fr);
        align-items: start;
    }
}

@media (max-width: 640px) {
    .team-dashboard-header[b-o0rnct965q] {
        align-items: flex-start;
        flex-direction: column;
    }

    .team-panel dl div[b-o0rnct965q],
    .player-row[b-o0rnct965q] {
        align-items: flex-start;
        flex-direction: column;
    }

    .team-dashboard-header h1[b-o0rnct965q],
    .team-page-header h1[b-o0rnct965q] {
        max-width: 100%;
        font-size: clamp(1.8rem, 10vw, 2.5rem);
        line-height: 1.05;
        overflow-wrap: anywhere;
    }

    .team-logo-preview-row[b-o0rnct965q] {
        align-items: flex-start;
        flex-direction: column;
    }

    .team-logo-dropzone[b-o0rnct965q],
    .public-button[b-o0rnct965q] {
        width: 100%;
    }
}
/* /Components/Pages/TeamFriendlyMatches.razor.rz.scp.css */
.friendly-page-header h1[b-m15u0t2vhr] { font-size: clamp(2rem, 5vw, 4rem); }
.friendly-tabs[b-m15u0t2vhr] { display: flex; gap: .4rem; margin-bottom: 1rem; overflow-x: auto; }
.friendly-tabs button[b-m15u0t2vhr] { min-height: 2.7rem; padding: .65rem 1rem; border: 1px solid rgba(24,32,44,.12); border-radius: .5rem; background: white; color: #17463e; font-weight: 900; white-space: nowrap; }
.friendly-tabs button.active[b-m15u0t2vhr] { background: #17463e; color: white; }
.friendly-grid[b-m15u0t2vhr] { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit,minmax(min(100%,28rem),1fr)); }
.friendly-full-width[b-m15u0t2vhr] { grid-column: 1/-1; }
.friendly-list[b-m15u0t2vhr] { display: grid; gap: .8rem; }
.friendly-list-horizontal[b-m15u0t2vhr] { grid-template-columns: repeat(auto-fit,minmax(min(100%,20rem),1fr)); }
.friendly-card[b-m15u0t2vhr] { padding: 1rem; border: 1px solid rgba(24,32,44,.11); border-radius: .65rem; background: #fffaf1; }
.friendly-card header[b-m15u0t2vhr] { display: flex; justify-content: space-between; gap: 1rem; align-items: flex-start; }
.friendly-card h3[b-m15u0t2vhr] { margin: .45rem 0; color: #18202c; font-size: 1.1rem; }
.friendly-status[b-m15u0t2vhr] { display: inline-flex; padding: .25rem .55rem; border-radius: 999px; background: #e8efed; color: #17463e; font-size: .75rem; font-weight: 900; }
.friendly-status.open[b-m15u0t2vhr] { background: #e4f5ed; color: #0b6b45; }
.friendly-status.accepted[b-m15u0t2vhr] { background: #fff0cc; color: #845400; }
.friendly-status.cancelled[b-m15u0t2vhr],.friendly-status.expired[b-m15u0t2vhr] { background: #fde9e7; color: #a83229; }
.friendly-facts[b-m15u0t2vhr] { display: grid; grid-template-columns: repeat(auto-fit,minmax(9rem,1fr)); gap: .55rem; margin: .8rem 0; color: #5c6472; }
.friendly-facts span[b-m15u0t2vhr],.friendly-facts strong[b-m15u0t2vhr] { display: block; }
.friendly-facts strong[b-m15u0t2vhr] { color: #18202c; }
.friendly-facts p[b-m15u0t2vhr] { grid-column: 1/-1; margin: .3rem 0 0; }
.friendly-actions[b-m15u0t2vhr] { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }
.friendly-result-entry[b-m15u0t2vhr] { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: .9rem; padding: .8rem; border: 1px solid rgba(13,123,108,.2); border-radius: .55rem; background: #f1faf7; }
.friendly-result-entry>div[b-m15u0t2vhr] { display: grid; gap: .15rem; min-width: 0; }
.friendly-result-entry span[b-m15u0t2vhr] { color: #5c6472; font-size: .88rem; }
.friendly-result-entry .public-button[b-m15u0t2vhr] { flex: 0 0 auto; }
.friendly-result-entry .public-button:disabled[b-m15u0t2vhr] { border-color: #cbd4d1; background: #e5ebe9; color: #68716f; cursor: not-allowed; box-shadow: none; }
.friendly-result-form[b-m15u0t2vhr] { display: grid; gap: .45rem; margin-top: .8rem; padding: .8rem; background: white; border: 1px solid rgba(24,32,44,.1); border-radius: .55rem; }
.friendly-set-header[b-m15u0t2vhr],.friendly-set-row[b-m15u0t2vhr] { display: grid; grid-template-columns: 3rem minmax(7rem,1fr) minmax(7rem,1fr); gap: .5rem; align-items: center; }
.friendly-set-header[b-m15u0t2vhr] { color: #52605d; font-size: .78rem; }
.friendly-set-header strong:not(:first-child)[b-m15u0t2vhr] { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.friendly-set-row strong[b-m15u0t2vhr] { text-align: center; }
.friendly-set-row input[b-m15u0t2vhr] { width: 100%; min-width: 0; min-height: 2.35rem; padding: .4rem; text-align: center; }
.friendly-result-form>.public-button[b-m15u0t2vhr] { justify-self: start; margin-top: .35rem; }
.friendly-history-table td small[b-m15u0t2vhr] { display: block; margin-top: .2rem; color: #66706e; white-space: nowrap; }
.friendly-delete-actions[b-m15u0t2vhr] { align-items: center; padding-top: .7rem; border-top: 1px solid rgba(24,32,44,.09); }
.friendly-delete-actions>span[b-m15u0t2vhr] { font-weight: 800; }
.public-button-danger[b-m15u0t2vhr] { border-color: #b52f27; background: #b52f27; color: #fff; }
.friendly-create-panel[b-m15u0t2vhr] { max-width: 72rem; }
.friendly-form-grid[b-m15u0t2vhr] { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem; }
.friendly-span-full[b-m15u0t2vhr] { grid-column: 1/-1; }
.friendly-fieldset[b-m15u0t2vhr] { display: flex; flex-wrap: wrap; gap: 1rem; margin: 1.2rem 0; padding: 1rem; border: 1px solid rgba(24,32,44,.12); border-radius: .65rem; }
.friendly-fieldset legend[b-m15u0t2vhr] { padding: 0 .35rem; font-weight: 950; }
.friendly-fieldset label[b-m15u0t2vhr],.friendly-toggle[b-m15u0t2vhr],.friendly-confirmation[b-m15u0t2vhr],.friendly-setting[b-m15u0t2vhr] { display: inline-flex; align-items: center; gap: .55rem; font-weight: 800; line-height: 1.45; }
.friendly-fieldset input[b-m15u0t2vhr],.friendly-toggle input[b-m15u0t2vhr],.friendly-confirmation input[b-m15u0t2vhr] { flex: 0 0 auto; width: 1.05rem; height: 1.05rem; margin: 0; }
.friendly-fieldset label span[b-m15u0t2vhr],.friendly-toggle span[b-m15u0t2vhr],.friendly-confirmation span[b-m15u0t2vhr] { min-width: 0; }
.friendly-recipient-table-wrap[b-m15u0t2vhr] { margin-bottom: 1rem; max-height: 21rem; overflow: auto; border: 1px solid rgba(24,32,44,.12); border-radius: .55rem; background: white; }
.friendly-recipient-table[b-m15u0t2vhr] { width: 100%; min-width: 34rem; border-collapse: collapse; }
.friendly-recipient-table th[b-m15u0t2vhr],.friendly-recipient-table td[b-m15u0t2vhr] { padding: .72rem .8rem; border-bottom: 1px solid rgba(24,32,44,.09); text-align: left; vertical-align: middle; }
.friendly-recipient-table th[b-m15u0t2vhr] { position: sticky; top: 0; z-index: 1; background: #f2f7f5; font-size: .78rem; text-transform: uppercase; }
.friendly-recipient-table tr:last-child td[b-m15u0t2vhr] { border-bottom: 0; }
.friendly-recipient-table tr.unavailable[b-m15u0t2vhr] { background: #fafbfb; color: #66706f; }
.friendly-recipient-choice[b-m15u0t2vhr] { width: 5.5rem; text-align: center !important; }
.friendly-recipient-choice input[b-m15u0t2vhr] { width: 1.05rem; height: 1.05rem; }
.friendly-team-name[b-m15u0t2vhr] { display: inline-flex; align-items: center; gap: .6rem; }
.friendly-team-dot[b-m15u0t2vhr] { flex: 0 0 auto; width: 1rem; height: 1rem; border-radius: 50%; }
.friendly-recipient-status[b-m15u0t2vhr] { display: inline-flex; padding: .28rem .55rem; border-radius: 999px; font-size: .8rem; font-weight: 850; white-space: nowrap; }
.friendly-recipient-status.available[b-m15u0t2vhr] { color: #0b695b; background: #e4f6f1; }
.friendly-recipient-status.paused[b-m15u0t2vhr] { color: #8a5400; background: #fff0d5; }
.friendly-recipient-status.unavailable[b-m15u0t2vhr],.friendly-recipient-status.blocked[b-m15u0t2vhr] { color: #636c6a; background: #e9eeec; }
.friendly-toggle[b-m15u0t2vhr] { margin: 1rem 0; }
.friendly-legal-notice[b-m15u0t2vhr] { padding: 1rem; border: 1px solid #e2b45e; border-left-width: .35rem; border-radius: .55rem; background: #fff9ec; color: #503b14; line-height: 1.5; }
.friendly-legal-notice p[b-m15u0t2vhr] { margin: .6rem 0 0; color: inherit; }
.friendly-confirmation[b-m15u0t2vhr] { margin-top: 1rem; }
.friendly-form-notice[b-m15u0t2vhr],.friendly-form-error[b-m15u0t2vhr] { margin: 1rem 0; padding: .75rem .9rem; border-radius: .5rem; font-weight: 750; }
.friendly-form-notice[b-m15u0t2vhr] { border: 1px solid #e5bd70; background: #fff7e5; color: #6f4a09; }
.friendly-form-error[b-m15u0t2vhr] { border: 1px solid #e5a5a0; background: #fff0ef; color: #992b25; }
.friendly-history-table-wrap[b-m15u0t2vhr] { overflow-x: auto; }
.friendly-history-table[b-m15u0t2vhr] { width: 100%; min-width: 74rem; border-collapse: collapse; }
.friendly-history-table th[b-m15u0t2vhr],.friendly-history-table td[b-m15u0t2vhr] { padding: .75rem; border-bottom: 1px solid rgba(24,32,44,.1); text-align: left; }
.friendly-history-fixture[b-m15u0t2vhr] { display: inline-flex; align-items: center; gap: .55rem; white-space: nowrap; }
.friendly-history-fixture>span[b-m15u0t2vhr] { color: #68726f; font-size: .75rem; font-weight: 800; }
.friendly-history-team[b-m15u0t2vhr] { display: inline-flex; align-items: center; gap: .45rem; white-space: nowrap; }
.friendly-history-team img[b-m15u0t2vhr],.friendly-history-team-shield[b-m15u0t2vhr] { width: 2rem; height: 2rem; flex: 0 0 auto; object-fit: contain; }
.friendly-history-team img[b-m15u0t2vhr] { border: 1px solid rgba(24,32,44,.1); background: #fff; }
.friendly-history-team-shield[b-m15u0t2vhr] { display: grid; place-items: center; clip-path: polygon(50% 0,94% 14%,94% 73%,50% 100%,6% 73%,6% 14%); background: var(--team-color,#0d7b6c); color: var(--team-text,#fff); font-size: .67rem; font-weight: 950; }
.friendly-history-visibility[b-m15u0t2vhr] { position: relative; display: grid; grid-template-columns: 2.65rem 12rem; align-items: center; gap: .65rem; cursor: pointer; }
.friendly-history-visibility>span:last-child[b-m15u0t2vhr] { display: grid; gap: .12rem; }
.friendly-history-visibility small[b-m15u0t2vhr] { color: #68726f; font-size: .72rem; line-height: 1.25; }
.friendly-history-visibility>input:checked + .friendly-switch-control[b-m15u0t2vhr] { background: #0d7b6c; }
.friendly-history-visibility>input:checked + .friendly-switch-control[b-m15u0t2vhr]::after { transform: translateX(1.2rem); }
.friendly-settings-list[b-m15u0t2vhr] { display: grid; gap: .75rem; margin: 1rem 0; }
.friendly-switch-setting[b-m15u0t2vhr] { position: relative; display: grid; grid-template-columns: 2.75rem minmax(0,1fr); align-items: center; gap: .8rem; width: 100%; padding: .8rem; border: 1px solid rgba(24,32,44,.11); border-radius: .6rem; background: #f8faf9; cursor: pointer; }
.friendly-switch-input[b-m15u0t2vhr],.friendly-exclusion-switch>input[b-m15u0t2vhr] { position: absolute !important; width: 1px !important; height: 1px !important; margin: 0 !important; opacity: 0 !important; overflow: hidden; clip-path: inset(50%); }
.friendly-switch-setting>span:last-child[b-m15u0t2vhr] { display: grid; min-width: 0; gap: .15rem; }
.friendly-switch-setting small[b-m15u0t2vhr] { color: #626d6a; font-weight: 500; line-height: 1.35; }
.friendly-switch-control[b-m15u0t2vhr] { position: relative; width: 2.65rem; height: 1.45rem; border-radius: 999px; background: #aeb8b5; transition: background-color .18s ease; }
.friendly-switch-control[b-m15u0t2vhr]::after { content: ""; position: absolute; top: .2rem; left: .2rem; width: 1.05rem; height: 1.05rem; border-radius: 50%; background: white; box-shadow: 0 1px 3px rgba(0,0,0,.25); transition: transform .18s ease; }
.friendly-switch-setting>input:checked + .friendly-switch-control[b-m15u0t2vhr],.friendly-exclusion-switch>input:checked + .friendly-switch-control[b-m15u0t2vhr] { background: #0d7b6c; }
.friendly-switch-setting>input:checked + .friendly-switch-control[b-m15u0t2vhr]::after,.friendly-exclusion-switch>input:checked + .friendly-switch-control[b-m15u0t2vhr]::after { transform: translateX(1.2rem); }
.friendly-switch-setting>input:focus-visible + .friendly-switch-control[b-m15u0t2vhr],.friendly-exclusion-switch>input:focus-visible + .friendly-switch-control[b-m15u0t2vhr] { outline: 3px solid rgba(13,123,108,.25); outline-offset: 2px; }
.friendly-switch-setting:has(input:disabled)[b-m15u0t2vhr] { opacity: .55; cursor: not-allowed; }
.friendly-block-list[b-m15u0t2vhr] { display: grid; max-height: 28rem; overflow-y: auto; }
.friendly-block-list div[b-m15u0t2vhr] { display: flex; justify-content: space-between; gap: 1rem; align-items: center; padding: .65rem 0; border-bottom: 1px solid rgba(24,32,44,.1); }
.friendly-exclusion-switch[b-m15u0t2vhr] { position: relative; display: inline-flex; align-items: center; gap: .6rem; cursor: pointer; }
.friendly-exclusion-switch strong[b-m15u0t2vhr] { min-width: 7.5rem; color: #17463e; font-size: .88rem; }
.friendly-unavailable[b-m15u0t2vhr] { max-width: 44rem; }
.friendly-result-hint[b-m15u0t2vhr],.friendly-edit-note[b-m15u0t2vhr] { margin: .75rem 0 0; color: #5c6472; font-size: .9rem; }
.friendly-own-editor[b-m15u0t2vhr] { margin-top: 1rem; padding: 1rem; border: 1px solid rgba(24,32,44,.12); border-radius: .6rem; background: white; }
.friendly-chat-backdrop[b-m15u0t2vhr] { position: fixed; inset: 0; z-index: 140; display: grid; place-items: center; padding: 1rem; background: rgba(12,27,24,.64); }
.friendly-chat-dialog[b-m15u0t2vhr] { display: grid; gap: 1rem; width: min(44rem,100%); max-height: calc(100dvh - 2rem); padding: 1.1rem; overflow-y: auto; overscroll-behavior: contain; border-radius: .65rem; background: #fff; box-shadow: 0 24px 70px rgba(0,0,0,.32); }
.friendly-chat-header[b-m15u0t2vhr] { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.friendly-chat-header h2[b-m15u0t2vhr] { margin: .15rem 0; }
.friendly-chat-header p[b-m15u0t2vhr] { margin: 0; color: #5c6472; }
.friendly-chat-close[b-m15u0t2vhr] { display: grid; place-items: center; flex: 0 0 auto; width: 2.5rem; height: 2.5rem; border: 1px solid rgba(24,32,44,.15); border-radius: .45rem; background: #fff; color: #18202c; font: inherit; font-size: 1.55rem; cursor: pointer; }
.friendly-chat-messages[b-m15u0t2vhr] { display: grid; align-content: start; gap: .65rem; min-height: 10rem; max-height: min(24rem,42dvh); padding: .8rem; overflow-y: auto; border: 1px solid rgba(24,32,44,.11); border-radius: .55rem; background: #f5f8f7; }
.friendly-chat-empty[b-m15u0t2vhr] { margin: auto; color: #66706e; text-align: center; }
.friendly-chat-message[b-m15u0t2vhr] { display: grid; gap: .35rem; justify-self: start; width: min(85%,32rem); padding: .7rem .8rem; border: 1px solid rgba(24,32,44,.1); border-radius: .55rem; background: #fff; }
.friendly-chat-message.own[b-m15u0t2vhr] { justify-self: end; border-color: rgba(13,123,108,.2); background: #e8f7f3; }
.friendly-chat-message>div[b-m15u0t2vhr] { display: flex; justify-content: space-between; gap: .75rem; color: #4f5c59; font-size: .78rem; }
.friendly-chat-message p[b-m15u0t2vhr] { margin: 0; color: #18202c; white-space: pre-wrap; overflow-wrap: anywhere; }
.friendly-chat-composer[b-m15u0t2vhr] { display: grid; grid-template-columns: 1fr auto; gap: .55rem; align-items: end; }
.friendly-chat-composer label[b-m15u0t2vhr] { grid-column: 1/-1; font-weight: 850; }
.friendly-chat-composer textarea[b-m15u0t2vhr],.friendly-chat-report textarea[b-m15u0t2vhr] { width: 100%; min-height: 5rem; padding: .7rem; border: 1px solid #cfd9d6; border-radius: .45rem; font: inherit; resize: vertical; }
.friendly-chat-report[b-m15u0t2vhr] { padding-top: .7rem; border-top: 1px solid rgba(24,32,44,.1); }
.friendly-chat-report>div[b-m15u0t2vhr] { display: grid; gap: .55rem; margin-top: .65rem; }
.friendly-chat-report label[b-m15u0t2vhr] { font-weight: 850; }
.friendly-message-button[b-m15u0t2vhr] { display: inline-flex; align-items: center; justify-content: center; gap: .45rem; }
.friendly-unread-badge[b-m15u0t2vhr] { display: inline-grid; place-items: center; min-width: 1.45rem; height: 1.45rem; padding: 0 .35rem; border-radius: 999px; background: #e65349; color: #fff; font-size: .72rem; font-weight: 950; line-height: 1; }
@media(max-width:700px){.friendly-form-grid[b-m15u0t2vhr]{grid-template-columns:1fr}.friendly-span-full[b-m15u0t2vhr]{grid-column:auto}.friendly-card header[b-m15u0t2vhr]{display:grid}.friendly-page-header h1[b-m15u0t2vhr]{overflow-wrap:anywhere}.friendly-actions>*[b-m15u0t2vhr]{flex:1 1 auto}.friendly-result-entry[b-m15u0t2vhr]{align-items:stretch;flex-direction:column}.friendly-result-entry .public-button[b-m15u0t2vhr]{width:100%}.friendly-set-header[b-m15u0t2vhr],.friendly-set-row[b-m15u0t2vhr]{grid-template-columns:2.25rem minmax(5.25rem,1fr) minmax(5.25rem,1fr)}.friendly-set-header[b-m15u0t2vhr]{font-size:.7rem}}
@media(max-width:700px){.friendly-chat-dialog[b-m15u0t2vhr]{padding:.8rem}.friendly-chat-message[b-m15u0t2vhr]{width:92%}.friendly-chat-composer[b-m15u0t2vhr]{grid-template-columns:1fr}.friendly-chat-composer .public-button[b-m15u0t2vhr]{width:100%}}
/* /Components/Pages/TeamLogin.razor.rz.scp.css */
.login-page[b-bf29dd4klh] {
    min-height: calc(100vh - 4.75rem);
    display: grid;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
    padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 5vw, 5rem);
    background:
        linear-gradient(120deg, rgba(255, 250, 241, 0.96), rgba(255, 250, 241, 0.78)),
        linear-gradient(135deg, #ffe7a3 0%, #f7b267 52%, #7ec8c2 100%);
}

.login-copy[b-bf29dd4klh] {
    max-width: 38rem;
}

.login-copy h1[b-bf29dd4klh] {
    margin: 0.35rem 0 0.8rem;
    color: #18202c;
    font-size: clamp(2.6rem, 7vw, 5.4rem);
    font-weight: 950;
    line-height: 0.98;
}

.login-copy p[b-bf29dd4klh] {
    color: #4f5261;
    font-size: 1.08rem;
    line-height: 1.65;
}

.login-panel[b-bf29dd4klh] {
    width: 100%;
    max-width: 34rem;
    display: grid;
    gap: 1rem;
    padding: clamp(1rem, 3vw, 1.5rem);
    border: 1px solid rgba(24, 32, 44, 0.12);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 1.5rem 3rem rgba(24, 32, 44, 0.13);
}

.login-helper-link[b-bf29dd4klh] {
    color: #0d5b4c;
    font-weight: 900;
}

@media (min-width: 900px) {
    .login-page[b-bf29dd4klh] {
        grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.75fr);
    }
}
/* /Components/Shared/ToastHost.razor.rz.scp.css */
.toast-host[b-2oy5vkbo6q] {
    position: fixed;
    right: clamp(1rem, 3vw, 2rem);
    bottom: clamp(1rem, 3vw, 2rem);
    z-index: 2000;
    width: min(26rem, calc(100vw - 2rem));
}

.toast-card[b-2oy5vkbo6q] {
    display: grid;
    gap: 0.25rem;
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(24, 32, 44, 0.12);
    background: white;
    box-shadow: 0 1.5rem 3rem rgba(24, 32, 44, 0.18);
}

.toast-card strong[b-2oy5vkbo6q],
.toast-card span[b-2oy5vkbo6q] {
    display: block;
}

.toast-card span[b-2oy5vkbo6q] {
    color: #4f5261;
}

.toast-card button[b-2oy5vkbo6q] {
    justify-self: start;
    margin-top: 0.35rem;
    padding: 0;
    border: none;
    background: transparent;
    color: inherit;
    font-weight: 900;
    text-decoration: underline;
}

.toast-success[b-2oy5vkbo6q] {
    border-color: #a8dcc1;
    color: #195a3b;
}

.toast-error[b-2oy5vkbo6q] {
    border-color: #f3b0aa;
    color: #9f2f26;
}

.toast-info[b-2oy5vkbo6q] {
    border-color: #b8d8f2;
    color: #244f76;
}
