/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* Authenticated app shell: everything is centered above the fixed <MeteorBackground/> (z-index 1).
   A large centered logo, a big centered icon nav with an active indicator + page-name bar, and the
   page body on a light surface so the existing Bootstrap pages stay readable. The signed-in identity
   (name + avatar menu + logout) floats in the top-right corner.

   NOTE: <NavLink> renders its own <a>, which does NOT inherit this component's CSS-isolation scope,
   so the nav-link rules must reach it through ::deep (anchored on the scoped .app-nav). */
.app-shell[b-lz3zagdq0l] {
    position: relative;
    z-index: 1;
    max-width: 1040px;
    margin: 0 auto;
    padding: 1.5rem;
    min-height: 100dvh;
}

/* Identity: top-right corner, out of the centered column's flow. */
.app-identity[b-lz3zagdq0l] {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    z-index: 6;
}

.app-identity-text[b-lz3zagdq0l] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.2;
}

.app-identity-label[b-lz3zagdq0l] {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: #99a2bd;
}

.app-identity-name[b-lz3zagdq0l] {
    font-size: 1.05rem;
    font-weight: 700;
    color: #f4f6fb;
    max-width: 32vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.app-avatar[b-lz3zagdq0l] {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    background: #232842;
    border: 2px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 0 0 2px rgba(88, 101, 242, 0.55);
}

.app-avatar img[b-lz3zagdq0l] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.app-avatar-fallback[b-lz3zagdq0l] {
    color: #cfd6ef;
    font-weight: 700;
    font-size: 1.15rem;
}

.app-logout[b-lz3zagdq0l] {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    color: #e6e9f5;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    text-decoration: none;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.app-logout:hover[b-lz3zagdq0l],
.app-logout:focus-visible[b-lz3zagdq0l] {
    background: rgba(237, 66, 69, 0.9);
    color: #fff;
    border-color: transparent;
    outline: none;
}

/* Centered logo, no wordmark. */
.app-logo[b-lz3zagdq0l] {
    display: block;
    text-align: center;
    margin: 0.25rem 0 1.25rem;
}

.app-logo img[b-lz3zagdq0l] {
    width: 128px;
    height: 128px;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.55));
}

/* Big centered icon nav. */
.app-nav[b-lz3zagdq0l] {
    display: flex;
    justify-content: center;
    gap: 1.1rem;
}

.app-nav[b-lz3zagdq0l]  .app-nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 20px;
    color: #aeb6d0;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background-color 0.15s ease, color 0.15s ease, transform 0.1s ease;
}

.app-nav[b-lz3zagdq0l]  .app-nav-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
}

.app-nav[b-lz3zagdq0l]  .app-nav-brand-icon {
    background: currentColor;
    -webkit-mask: url("/images/logos/Logo.png") center / contain no-repeat;
    mask: url("/images/logos/Logo.png") center / contain no-repeat;
}

.app-nav[b-lz3zagdq0l]  .app-nav-link:hover {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    transform: translateY(-1px);
}

/* Active page: bright icon + soft tile + a caret that points down to the page bar. */
.app-nav[b-lz3zagdq0l]  .app-nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.09);
}

.app-nav[b-lz3zagdq0l]  .app-nav-link.active::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -11px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-top: 11px solid #242938;
}

/* Hover label ("placeholder"), shown above the icon so it never collides with the caret/bar. */
.app-nav[b-lz3zagdq0l]  .app-nav-link::after {
    content: attr(data-tip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    padding: 0.3rem 0.6rem;
    background: #171b2b;
    color: #f4f6fb;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 7px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.12s ease, transform 0.12s ease;
    z-index: 30;
}

.app-nav[b-lz3zagdq0l]  .app-nav-link:hover::after,
.app-nav[b-lz3zagdq0l]  .app-nav-link:focus-visible::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* The active page's tooltip is redundant with the page bar. */
.app-nav[b-lz3zagdq0l]  .app-nav-link.active::after {
    display: none;
}

/* Column-width page-name bar; the active caret points into it. */
.app-pagebar[b-lz3zagdq0l] {
    margin-top: 11px;
    padding: 0.85rem 1rem;
    background: #242938;
    color: #f4f6fb;
    text-align: center;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.02em;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: none;
    border-radius: 13px 13px 0 0;
}

.app-surface[b-lz3zagdq0l] {
    position: relative;
    background: rgba(18, 21, 32, 0.82);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: none;
    border-radius: 0 0 16px 16px;
    padding: 1.9rem;
    color: #e9ecf5;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
}

@media (max-width: 620px) {
    .app-identity[b-lz3zagdq0l] {
        position: static;
        justify-content: flex-end;
        margin-bottom: 0.5rem;
    }

    .app-identity-name[b-lz3zagdq0l] {
        max-width: 44vw;
    }

    .app-logo img[b-lz3zagdq0l] {
        width: 104px;
        height: 104px;
    }

    .app-surface[b-lz3zagdq0l] {
        padding: 1.25rem;
    }
}

/* Avatar dropdown built on native <details>: the summary is the avatar, the menu drops below it. */
.avatar-menu[b-lz3zagdq0l] {
    position: relative;
    flex: 0 0 auto;
}

.avatar-menu summary[b-lz3zagdq0l] {
    cursor: pointer;
    list-style: none;
}

.avatar-menu summary[b-lz3zagdq0l]::-webkit-details-marker {
    display: none;
}

.avatar-menu summary[b-lz3zagdq0l]::marker {
    content: "";
}

.avatar-dropdown[b-lz3zagdq0l] {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 180px;
    padding: 0.4rem;
    background: #171b2b;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55);
    z-index: 20;
}

.avatar-dropdown a[b-lz3zagdq0l] {
    display: block;
    padding: 0.55rem 0.75rem;
    border-radius: 8px;
    color: #e6e9f5;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
}

.avatar-dropdown a:hover[b-lz3zagdq0l] {
    background: rgba(88, 101, 242, 0.85);
    color: #fff;
}
/* /Components/MeteorBackground.razor.rz.scp.css */
/* Fixed full-viewport backdrop shared by the login page and the authenticated app shell.
   Sits at z-index 0; page content is positioned above it at z-index 1. Opaque, so it hides
   whatever body background is underneath. */
.meteor-bg[b-xevye071vf] {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    background: #0b0f1a url('/images/backgrounds/Nebula-background.jpg') center / cover no-repeat;
}

.meteor-overlay[b-xevye071vf] {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(6, 8, 18, 0.5), rgba(4, 6, 14, 0.9));
}

.meteor-field[b-xevye071vf] {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* A meteor is a thin bright streak with a glowing head on its leading (right) end, rotated to
   fall diagonally. Base values are overridden per-child below for variety. */
.meteor[b-xevye071vf] {
    --meteor-angle: 25deg;
    --meteor-length: 180px;
    --meteor-travel: 65vmax;
    --meteor-opacity: 0.8;
    position: absolute;
    width: var(--meteor-length);
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg,
        rgba(190, 214, 255, 0) 0%,
        rgba(200, 222, 255, 0.75) 55%,
        rgba(245, 250, 255, 1) 100%);
    opacity: 0;
    animation: meteor-streak-b-xevye071vf 6s linear infinite;
    will-change: transform, opacity;
}

.meteor[b-xevye071vf]::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -1px;
    width: 4px;
    height: 4px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(248, 252, 255, 1);
    box-shadow: 0 0 9px 2px rgba(180, 212, 255, 0.8);
}

/* Per-meteor variety: start position, angle, streak length, travel, brightness, timing.
   Negative delays pre-populate the sky on first paint. */
.meteor:nth-child(1)[b-xevye071vf]  { top: 14%; left: -10%; --meteor-length: 200px; --meteor-travel: 72vmax; --meteor-opacity: 0.9;  animation-duration: 6.2s; animation-delay: -2.0s; }
.meteor:nth-child(2)[b-xevye071vf]  { top: -6%; left: 10%;  --meteor-length: 150px; --meteor-travel: 60vmax; --meteor-opacity: 0.7;  animation-duration: 5.2s; animation-delay: -4.6s; }
.meteor:nth-child(3)[b-xevye071vf]  { top: 4%;  left: 26%;  --meteor-angle: 22deg; --meteor-length: 210px; --meteor-travel: 68vmax; --meteor-opacity: 0.95; animation-duration: 4.4s; animation-delay: -1.2s; }
.meteor:nth-child(4)[b-xevye071vf]  { top: -8%; left: 44%;  --meteor-angle: 27deg; --meteor-length: 140px; --meteor-travel: 58vmax; --meteor-opacity: 0.68; animation-duration: 7.1s; animation-delay: -3.5s; }
.meteor:nth-child(5)[b-xevye071vf]  { top: 10%; left: 60%;  --meteor-length: 175px; --meteor-travel: 55vmax; --meteor-opacity: 0.82; animation-duration: 5.8s; animation-delay: -0.4s; }
.meteor:nth-child(6)[b-xevye071vf]  { top: -4%; left: 76%;  --meteor-angle: 23deg; --meteor-length: 190px; --meteor-travel: 64vmax; --meteor-opacity: 0.88; animation-duration: 4.9s; animation-delay: -2.8s; }
.meteor:nth-child(7)[b-xevye071vf]  { top: 20%; left: 88%;  --meteor-length: 160px; --meteor-travel: 52vmax; --meteor-opacity: 0.72; animation-duration: 6.6s; animation-delay: -5.3s; }
.meteor:nth-child(8)[b-xevye071vf]  { top: 30%; left: -6%;  --meteor-angle: 26deg; --meteor-length: 205px; --meteor-travel: 70vmax; --meteor-opacity: 0.85; animation-duration: 5.5s; animation-delay: -1.9s; }
.meteor:nth-child(9)[b-xevye071vf]  { top: 38%; left: 18%;  --meteor-length: 150px; --meteor-travel: 60vmax; --meteor-opacity: 0.7;  animation-duration: 6.9s; animation-delay: -4.1s; }
.meteor:nth-child(10)[b-xevye071vf] { top: 34%; left: 40%;  --meteor-angle: 21deg; --meteor-length: 220px; --meteor-travel: 74vmax; --meteor-opacity: 0.92; animation-duration: 4.6s; animation-delay: -0.9s; }
.meteor:nth-child(11)[b-xevye071vf] { top: 46%; left: 62%;  --meteor-length: 165px; --meteor-travel: 56vmax; --meteor-opacity: 0.78; animation-duration: 6.1s; animation-delay: -3.0s; }
.meteor:nth-child(12)[b-xevye071vf] { top: 42%; left: 82%;  --meteor-angle: 28deg; --meteor-length: 185px; --meteor-travel: 62vmax; --meteor-opacity: 0.86; animation-duration: 5.0s; animation-delay: -2.2s; }
.meteor:nth-child(13)[b-xevye071vf] { top: 56%; left: 4%;   --meteor-length: 175px; --meteor-travel: 58vmax; --meteor-opacity: 0.74; animation-duration: 7.4s; animation-delay: -5.8s; }
.meteor:nth-child(14)[b-xevye071vf] { top: 60%; left: 30%;  --meteor-angle: 24deg; --meteor-length: 200px; --meteor-travel: 66vmax; --meteor-opacity: 0.9;  animation-duration: 4.8s; animation-delay: -1.5s; }
.meteor:nth-child(15)[b-xevye071vf] { top: 64%; left: 54%;  --meteor-length: 155px; --meteor-travel: 54vmax; --meteor-opacity: 0.72; animation-duration: 6.4s; animation-delay: -3.7s; }
.meteor:nth-child(16)[b-xevye071vf] { top: 58%; left: 74%;  --meteor-angle: 26deg; --meteor-length: 195px; --meteor-travel: 64vmax; --meteor-opacity: 0.84; animation-duration: 5.6s; animation-delay: -0.7s; }

@keyframes meteor-streak-b-xevye071vf {
    0% {
        transform: rotate(var(--meteor-angle)) translateX(0);
        opacity: 0;
    }

    8% {
        opacity: var(--meteor-opacity);
    }

    40% {
        opacity: var(--meteor-opacity);
    }

    55%, 100% {
        transform: rotate(var(--meteor-angle)) translateX(var(--meteor-travel));
        opacity: 0;
    }
}

/* No prefers-reduced-motion guard: the animated meteor shower is intentionally always on
   (owner request), overriding the OS reduce-motion preference. */

@media (prefers-reduced-data: reduce) {
    .meteor-bg[b-xevye071vf] {
        background: linear-gradient(160deg, #0b0f1a, #141a2e);
    }
}
/* /Components/Pages/AccessDenied.razor.rz.scp.css */
.denied-backdrop[b-txz9u90wsq] {
    position: fixed;
    inset: 0;
    background: linear-gradient(160deg, #0b0f1a, #141a2e);
    display: grid;
    place-items: center;
    padding: 1.5rem;
    color: #f4f6fb;
}

.denied-card[b-txz9u90wsq] {
    width: min(420px, 100%);
    background: rgba(17, 20, 32, 0.80);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.denied-title[b-txz9u90wsq] {
    font-size: 1.5rem;
    margin: 0 0 0.5rem;
    font-weight: 700;
}

.denied-text[b-txz9u90wsq] {
    margin: 0 0 1.5rem;
    color: #b9c0d4;
}

.denied-link[b-txz9u90wsq] {
    color: #a9b1ff;
    font-weight: 600;
    text-decoration: none;
}

.denied-link:hover[b-txz9u90wsq] {
    text-decoration: underline;
}
/* /Components/Pages/Cookies.razor.rz.scp.css */
.cookie-shell[b-n311zcgtbp] {
    position: relative;
    z-index: 1;
    min-height: 100dvh;
    display: grid;
    place-items: center;
    padding: 3rem 1.5rem 7rem;
    color: #e9ecf5;
}

.cookie-notice[b-n311zcgtbp] {
    width: min(860px, 100%);
    padding: clamp(1.5rem, 4vw, 2.75rem);
    background: rgba(17, 20, 32, 0.86);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.52);
}

.cookie-header[b-n311zcgtbp] {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.25rem;
    align-items: start;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-close-form[b-n311zcgtbp] {
    margin: 0;
}

.cookie-close[b-n311zcgtbp] {
    padding: 0.55rem 0.9rem;
    color: #e9ecf5;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    font: inherit;
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.cookie-close:hover[b-n311zcgtbp],
.cookie-close:focus-visible[b-n311zcgtbp] {
    color: #fff;
    background: rgba(88, 101, 242, 0.22);
    border-color: rgba(161, 170, 255, 0.62);
    outline: none;
}

.cookie-home[b-n311zcgtbp] {
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: rgba(88, 101, 242, 0.11);
    border: 1px solid rgba(139, 151, 255, 0.28);
    transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.cookie-home:hover[b-n311zcgtbp],
.cookie-home:focus-visible[b-n311zcgtbp] {
    background: rgba(88, 101, 242, 0.22);
    border-color: rgba(161, 170, 255, 0.62);
    transform: translateY(-1px);
    outline: none;
}

.cookie-home img[b-n311zcgtbp] {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.cookie-eyebrow[b-n311zcgtbp] {
    margin: 0 0 0.35rem;
    color: #aeb6d0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.cookie-header h1[b-n311zcgtbp] {
    margin: 0;
    color: #fff;
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    letter-spacing: -0.045em;
}

.cookie-intro[b-n311zcgtbp] {
    max-width: 660px;
    margin: 0.8rem 0 0;
    color: #c5cbdd;
    font-size: 1.05rem;
    line-height: 1.65;
}

.cookie-ledger[b-n311zcgtbp] {
    margin-top: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

.cookie-entry[b-n311zcgtbp] {
    padding: 1.35rem 1.5rem;
    background: rgba(255, 255, 255, 0.025);
}

.cookie-entry + .cookie-entry[b-n311zcgtbp] {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-entry-heading[b-n311zcgtbp] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-entry code[b-n311zcgtbp] {
    color: #d6daff;
    font-size: 0.92rem;
    overflow-wrap: anywhere;
}

.cookie-entry-heading span[b-n311zcgtbp] {
    flex: 0 0 auto;
    padding: 0.22rem 0.58rem;
    color: #cdd3ff;
    background: rgba(88, 101, 242, 0.15);
    border: 1px solid rgba(139, 151, 255, 0.2);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
}

.cookie-entry > p[b-n311zcgtbp] {
    margin: 0.7rem 0 0.9rem;
    color: #c1c7d8;
    line-height: 1.55;
}

.cookie-entry dl[b-n311zcgtbp] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    margin: 0;
}

.cookie-entry dl div[b-n311zcgtbp] {
    min-width: 0;
}

.cookie-entry dt[b-n311zcgtbp] {
    color: #818aa7;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cookie-entry dd[b-n311zcgtbp] {
    margin: 0.2rem 0 0;
    color: #e5e8f3;
    font-size: 0.88rem;
}

.cookie-explainer[b-n311zcgtbp] {
    margin-top: 1.5rem;
    padding: 1.25rem 1.4rem;
    background: rgba(88, 101, 242, 0.08);
    border-left: 3px solid #7d89ff;
    border-radius: 0 12px 12px 0;
}

.cookie-explainer h2[b-n311zcgtbp] {
    margin: 0;
    color: #f7f8ff;
    font-size: 1rem;
    font-weight: 700;
}

.cookie-explainer p[b-n311zcgtbp] {
    margin: 0.45rem 0 0;
    color: #c8cee0;
    line-height: 1.55;
}

.cookie-updated[b-n311zcgtbp] {
    margin: 1.25rem 0 0;
    color: #838ca7;
    font-size: 0.78rem;
    text-align: right;
}

@media (max-width: 620px) {
    .cookie-shell[b-n311zcgtbp] {
        place-items: start center;
        padding: 1rem 0.85rem 7rem;
    }

    .cookie-notice[b-n311zcgtbp] {
        border-radius: 18px;
    }

    .cookie-header[b-n311zcgtbp] {
        grid-template-columns: 1fr auto;
    }

    .cookie-header > div[b-n311zcgtbp] {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .cookie-close-form[b-n311zcgtbp] {
        justify-self: end;
    }

    .cookie-home[b-n311zcgtbp] {
        width: 56px;
        height: 56px;
    }

    .cookie-home img[b-n311zcgtbp] {
        width: 44px;
        height: 44px;
    }

    .cookie-entry[b-n311zcgtbp] {
        padding: 1.15rem;
    }

    .cookie-entry-heading[b-n311zcgtbp] {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.55rem;
    }

    .cookie-entry dl[b-n311zcgtbp] {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cookie-home[b-n311zcgtbp] {
        transition: none;
    }
}

@media (prefers-contrast: more) {
    .cookie-notice[b-n311zcgtbp] {
        background: #0b0f1a;
        border-color: #fff;
    }

    .cookie-ledger[b-n311zcgtbp],
    .cookie-entry + .cookie-entry[b-n311zcgtbp] {
        border-color: #fff;
    }
}
/* /Components/Pages/Join.razor.rz.scp.css */
.join-backdrop[b-loqji49ikf] {
    position: fixed;
    inset: 0;
    background: linear-gradient(160deg, #0b0f1a, #141a2e);
    display: grid;
    place-items: center;
    padding: 1.5rem;
    color: #f4f6fb;
}

.join-card[b-loqji49ikf] {
    width: min(420px, 100%);
    background: rgba(17, 20, 32, 0.80);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.join-title[b-loqji49ikf] {
    font-size: 1.5rem;
    margin: 0 0 0.5rem;
    font-weight: 700;
}

.join-text[b-loqji49ikf] {
    margin: 0 0 1.5rem;
    color: #b9c0d4;
}

.join-button[b-loqji49ikf] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    background: #5865f2;
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
}

.join-button:hover[b-loqji49ikf] {
    background: #4752c4;
}

.join-link[b-loqji49ikf] {
    color: #a9b1ff;
    font-weight: 600;
    text-decoration: none;
}

.join-link:hover[b-loqji49ikf] {
    text-decoration: underline;
}
/* /Components/Pages/Login.razor.rz.scp.css */
/* The backdrop + meteor shower now live in <MeteorBackground/>; this page only owns the card,
   centered above that fixed layer. */
.login-shell[b-o9jcdf8bel] {
    position: relative;
    z-index: 1;
    min-height: 100dvh;
    display: grid;
    place-items: center;
    padding: 1.5rem;
}

.login-card[b-o9jcdf8bel] {
    width: min(420px, 100%);
    background: rgba(17, 20, 32, 0.80);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    color: #f4f6fb;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.login-logo[b-o9jcdf8bel] {
    width: 96px;
    height: 96px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.login-title[b-o9jcdf8bel] {
    font-size: 1.75rem;
    margin: 0 0 0.25rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.login-subtitle[b-o9jcdf8bel] {
    margin: 0 0 1.75rem;
    color: #b9c0d4;
    font-size: 0.98rem;
}

.discord-button[b-o9jcdf8bel] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    min-height: 48px;
    padding: 0.75rem 1.25rem;
    background: #5865f2;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.15s ease, transform 0.02s ease;
}

.discord-button:hover[b-o9jcdf8bel] {
    background: #4752c4;
}

.discord-button:active[b-o9jcdf8bel] {
    transform: translateY(1px);
}

.discord-button:focus-visible[b-o9jcdf8bel] {
    outline: 3px solid #a9b1ff;
    outline-offset: 2px;
}

.discord-mark[b-o9jcdf8bel] {
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
}

.login-note[b-o9jcdf8bel] {
    margin: 1rem 0 0;
    font-size: 0.82rem;
    color: #8b93a9;
}

@media (prefers-reduced-motion: reduce) {
    .discord-button[b-o9jcdf8bel] {
        transition: none;
    }
}

@media (prefers-contrast: more) {
    .login-card[b-o9jcdf8bel] {
        background: #0b0f1a;
        border-color: #ffffff;
    }

    .login-subtitle[b-o9jcdf8bel],
    .login-note[b-o9jcdf8bel] {
        color: #e6e9f2;
    }
}
/* /Components/Pages/Pair.razor.rz.scp.css */
.pair-page[b-1p9zm4eagv] {
    display: grid;
    gap: 0.9rem;
    width: min(38rem, 100%);
    margin: 0 auto;
}

.pair-intro[b-1p9zm4eagv] {
    max-width: 34rem;
    margin: 0 auto 0.2rem;
    color: #aeb6d0;
    text-align: center;
}

.pair-card[b-1p9zm4eagv] {
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 0.75rem;
}

.pair-entry[b-1p9zm4eagv] {
    width: min(28rem, 100%);
    margin: 0 auto;
}

.pair-entry .form-label[b-1p9zm4eagv],
.pair-decision .form-label[b-1p9zm4eagv] {
    margin-bottom: 0.45rem;
    color: #f4f6fb;
    font-weight: 600;
}

.pair-code-input[b-1p9zm4eagv] {
    min-height: 3.15rem;
    color: #f4f6fb;
    background: rgba(5, 8, 16, 0.55);
    border-color: rgba(255, 255, 255, 0.14);
    border-radius: 0.55rem;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-align: center;
}

.pair-code-input[b-1p9zm4eagv]::placeholder {
    color: #7f89a5;
    font-family: inherit;
    font-weight: 500;
    letter-spacing: normal;
    opacity: 1;
    text-transform: none;
}

.pair-code-input:focus[b-1p9zm4eagv],
.pair-decision .form-select:focus[b-1p9zm4eagv] {
    color: #fff;
    background: #090d18;
    border-color: #8a94f7;
    box-shadow: 0 0 0 0.18rem rgba(88, 101, 242, 0.2);
}

.pair-decision .form-select[b-1p9zm4eagv] {
    color: #e9ecf5;
    background-color: #090d18;
    border-color: rgba(255, 255, 255, 0.14);
}

.pair-primary[b-1p9zm4eagv],
.pair-danger[b-1p9zm4eagv] {
    min-height: 2.7rem;
    padding: 0.65rem 1rem;
    border-radius: 0.55rem;
    font-weight: 650;
}

    flex: 1 1 0;
    color: #fff;
    background: #5865f2;
    border: 1px solid #5865f2;[b-1p9zm4eagv]
}

.pair-primary:hover[b-1p9zm4eagv] {
    background: #4752c4;
    border-color: #4752c4;
}

.pair-primary:focus-visible[b-1p9zm4eagv],
.pair-danger:focus-visible[b-1p9zm4eagv] {
    outline: 3px solid #a9b1ff;
    outline-offset: 2px;
}

.pair-device-heading[b-1p9zm4eagv] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.pair-device-heading h2[b-1p9zm4eagv],
.pair-decision h2[b-1p9zm4eagv] {
    margin: 0;
    color: #f4f6fb;
    font-size: 1.05rem;
    font-weight: 650;
}

.pair-device-heading p[b-1p9zm4eagv],
.pair-decision p[b-1p9zm4eagv] {
    color: #aeb6d0;
}

.pair-device-heading p[b-1p9zm4eagv] {
    margin: 0.2rem 0 0;
    font-size: 0.9rem;
}

.pair-state[b-1p9zm4eagv] {
    flex: 0 0 auto;
    padding: 0.25rem 0.55rem;
    color: #d9ddff;
    background: rgba(88, 101, 242, 0.15);
    border: 1px solid rgba(138, 148, 247, 0.22);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 650;
}

.pair-facts[b-1p9zm4eagv] {
    margin: 1rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.pair-facts > div[b-1p9zm4eagv] {
    display: grid;
    grid-template-columns: minmax(9rem, 1fr) 1.4fr;
    gap: 1rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.pair-facts dt[b-1p9zm4eagv] {
    color: #8f99b7;
    font-size: 0.82rem;
    font-weight: 600;
}

.pair-facts dd[b-1p9zm4eagv] {
    margin: 0;
    color: #eef0f8;
    font-size: 0.86rem;
    text-align: right;
    overflow-wrap: anywhere;
}

.pair-decision[b-1p9zm4eagv] {
    border-color: rgba(88, 101, 242, 0.25);
}

.pair-decision > p:last-of-type[b-1p9zm4eagv] {
    margin-bottom: 0;
}

.pair-actions[b-1p9zm4eagv] {
    display: flex;
    gap: 0.7rem;
    margin-top: 0.9rem;
}

    flex: 1 1 0;
.pair-danger[b-1p9zm4eagv] {
    color: #ffb8ba;
    background: transparent;
    border: 1px solid rgba(237, 66, 69, 0.42);
}

.pair-danger:hover[b-1p9zm4eagv] {
    color: #fff;
    background: rgba(237, 66, 69, 0.82);
    border-color: transparent;
}

.pair-alert[b-1p9zm4eagv] {
    padding: 0.75rem 0.9rem;
    border: 1px solid;
    border-radius: 0.6rem;
    font-size: 0.9rem;
}

.pair-alert--neutral[b-1p9zm4eagv] {
    color: #d8deef;
    background: rgba(255, 255, 255, 0.045);
    border-color: rgba(255, 255, 255, 0.11);
}

.pair-alert--success[b-1p9zm4eagv] {
    color: #c9f5df;
    background: rgba(67, 181, 129, 0.1);
    border-color: rgba(67, 181, 129, 0.3);
}

.pair-alert--danger[b-1p9zm4eagv] {
    color: #ffd0d1;
    background: rgba(237, 66, 69, 0.1);
    border-color: rgba(237, 66, 69, 0.3);
}

@media (max-width: 620px) {
    .pair-intro[b-1p9zm4eagv] {
        text-align: left;
    }

    .pair-card[b-1p9zm4eagv] {
        padding: 1rem;
    }

    .pair-device-heading[b-1p9zm4eagv] {
        flex-direction: column;
    }

    .pair-facts > div[b-1p9zm4eagv] {
        grid-template-columns: 1fr;
        gap: 0.15rem;
    }

    .pair-facts dd[b-1p9zm4eagv] {
        text-align: left;
    }
}

@media (prefers-contrast: more) {
    .pair-card[b-1p9zm4eagv] {
        border-color: #fff;
    }
}
