/* Plyvio V17.16 – öffentliche Login- und Hintergrunddarstellung */
:root {
  color-scheme: light dark;
  --bg: #f5f5f7;
  --surface: rgba(255, 255, 255, .72);
  --surface-strong: rgba(255, 255, 255, .94);
  --surface-muted: rgba(245, 245, 247, .78);
  --text: #17171a;
  --muted: #72727a;
  --line: rgba(20, 20, 25, .08);
  --line-strong: rgba(20, 20, 25, .14);
  --accent: #5b5ce2;
  --accent-2: #8d67ff;
  --success: #30d158;
  --danger: #ff453a;
  --game-bg: #0d111c;
  --game-grid: rgba(255, 255, 255, .055);
  --game-snake: #79e879;
  --game-snake-head: #b2ff9e;
  --game-food: #ff5e57;
  --shadow: 0 24px 70px rgba(28, 28, 35, .12);
  --shadow-soft: 0 10px 32px rgba(28, 28, 35, .075);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --sidebar-width: 234px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Helvetica, Arial, sans-serif;
}
html[data-theme="dark"] {
  --bg: #09090b;
  --surface: rgba(27, 27, 31, .72);
  --surface-strong: rgba(31, 31, 36, .94);
  --surface-muted: rgba(24, 24, 28, .82);
  --text: #f7f7f8;
  --muted: #98989f;
  --line: rgba(255, 255, 255, .08);
  --line-strong: rgba(255, 255, 255, .14);
  --shadow: 0 26px 80px rgba(0, 0, 0, .4);
  --shadow-soft: 0 12px 34px rgba(0, 0, 0, .25);
}
@media (prefers-color-scheme: dark){
html[data-theme="auto"] {
    --bg: #09090b;
    --surface: rgba(27, 27, 31, .72);
    --surface-strong: rgba(31, 31, 36, .94);
    --surface-muted: rgba(24, 24, 28, .82);
    --text: #f7f7f8;
    --muted: #98989f;
    --line: rgba(255, 255, 255, .08);
    --line-strong: rgba(255, 255, 255, .14);
    --shadow: 0 26px 80px rgba(0, 0, 0, .4);
    --shadow-soft: 0 12px 34px rgba(0, 0, 0, .25);
  }
}
* { box-sizing: border-box; }
html { min-height: 100%; background: var(--bg); scroll-behavior: smooth; }
body { margin: 0; min-height: 100vh; font-family: var(--font); color: var(--text); background: var(--bg); overflow-x: hidden; }
button, input { font: inherit; }
button { color: inherit; }
button:focus-visible, input:focus-visible { outline: 3px solid color-mix(in srgb, var(--accent) 38%, transparent); outline-offset: 3px; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ambient { position: fixed; z-index: 0; width: 580px; height: 580px; border-radius: 50%; filter: blur(110px); opacity: .15; pointer-events: none; }
.ambient-one { background: #7869ff; top: -340px; right: -100px; }
.ambient-two { background: #61c9ff; bottom: -410px; left: 10%; opacity: .09; }
.brand-mark { display: grid; place-items: center; width: 39px; aspect-ratio: 1; border-radius: 12px; background: linear-gradient(145deg, var(--accent), var(--accent-2)); color: white; font-size: 19px; font-weight: 800; box-shadow: 0 9px 23px rgba(91, 92, 226, .25); }
.eyebrow { margin: 0 0 8px; color: var(--accent); font-size: 10px; line-height: 1; font-weight: 850; text-transform: uppercase; letter-spacing: .14em; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 11px; font-size: clamp(36px, 4.6vw, 58px); line-height: .99; letter-spacing: -.058em; }
h2 { margin-bottom: 0; font-size: 27px; letter-spacing: -.038em; }
h3 { margin-bottom: 0; font-size: 19px; letter-spacing: -.025em; }
.section-heading .eyebrow { margin-bottom: 6px; }
button.game-tile { appearance: none; cursor: pointer; transition: transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease; }
button.game-tile:hover { transform: translateY(-5px); box-shadow: 0 28px 70px rgba(28, 30, 50, .2); }
.game-page-title .eyebrow { margin-bottom: 5px; }
.game-overlay.is-hidden { opacity: 0; pointer-events: none; transform: scale(1.012); }
.game-overlay p:not(.eyebrow) { max-width: 380px; color: rgba(255,255,255,.6); line-height: 1.55; }
.game-overlay .eyebrow { color: #9ef58e; }
.primary-button, .secondary-button, .text-button { appearance: none; border: 0; cursor: pointer; font-weight: 720; transition: transform .18s ease, opacity .18s ease, background .18s ease; }
.primary-button { padding: 12px 18px; border-radius: 14px; color: #fff; background: var(--accent); box-shadow: 0 9px 22px color-mix(in srgb, var(--accent) 25%, transparent); }
.primary-button.large { min-width: 155px; padding: 13px 22px; border-radius: 15px; }
.primary-button.small { padding: 10px 15px; }
.primary-button:hover, .secondary-button:hover { transform: translateY(-1px); }
.secondary-button { padding: 11px 15px; border-radius: 13px; color: var(--text); background: var(--surface-muted); border: 1px solid var(--line); }
.secondary-button:disabled { opacity: .42; cursor: default; transform: none; }
.card-heading .eyebrow { margin-bottom: 5px; }
@media (max-width: 860px){
.mobile-header .brand-mark { width: 36px; border-radius: 11px; }
}
@media (max-width: 620px){
h1 { font-size: 38px; }
}
@media (prefers-reduced-motion: reduce){
*, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
:root {
  --pong-bg: #0b1020;
  --pong-line: rgba(255,255,255,.12);
  --pong-player: #f4f5ff;
  --pong-ai: #9b8cff;
  --pong-ball: #ffffff;
  --pong-glow: rgba(139,124,255,.35);
}
.pong-overlay .eyebrow { color: #b8adff; }
.bot-card-head .eyebrow { margin-bottom: 5px; }
@media (max-width: 620px){
.pong-overlay p:not(.eyebrow) { font-size: 12px; }
}
body.auth-locked { overflow: hidden; }
body.auth-locked .app-shell { pointer-events: none; user-select: none; filter: blur(18px) saturate(.72); opacity: .2; transform: scale(.99); }
.auth-gate { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 24px; overflow-y: auto; background: radial-gradient(circle at 18% 18%, rgba(91,92,226,.18), transparent 34%), radial-gradient(circle at 84% 82%, rgba(97,201,255,.14), transparent 32%), rgba(239,241,247,.72); backdrop-filter: blur(28px) saturate(125%); -webkit-backdrop-filter: blur(28px) saturate(125%); }
body.auth-locked .auth-gate { display: flex; }
[data-theme="dark"] .auth-gate { background: radial-gradient(circle at 18% 18%, rgba(91,92,226,.2), transparent 34%), radial-gradient(circle at 84% 82%, rgba(97,201,255,.09), transparent 32%), rgba(5,6,10,.76); }
.auth-shell { width: min(1080px, 100%); min-height: min(720px, calc(100vh - 48px)); display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(390px, .88fr); overflow: hidden; border: 1px solid rgba(255,255,255,.24); border-radius: 36px; background: var(--surface-strong); box-shadow: 0 42px 130px rgba(18,20,38,.22); }
.auth-showcase { position: relative; overflow: hidden; padding: 38px; display: flex; flex-direction: column; color: #f9f9ff; background: radial-gradient(circle at 80% 12%, rgba(144,125,255,.42), transparent 31%), radial-gradient(circle at 14% 88%, rgba(81,205,255,.2), transparent 35%), linear-gradient(145deg, #17182b 0%, #111221 48%, #090a12 100%); }
.auth-showcase::before { content: ""; position: absolute; inset: 0; opacity: .35; background-image: radial-gradient(rgba(255,255,255,.16) .7px, transparent .7px); background-size: 24px 24px; mask-image: linear-gradient(to bottom, black, transparent 70%); }
.auth-showcase::after { content: ""; position: absolute; width: 360px; height: 360px; right: -190px; bottom: -190px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 55px rgba(255,255,255,.025), 0 0 0 110px rgba(255,255,255,.018); }
.auth-showcase > * { position: relative; z-index: 1; }
.auth-showcase-brand { display: flex; align-items: center; gap: 13px; }
.auth-showcase-brand .brand-mark { width: 44px; border-radius: 14px; }
.auth-showcase-brand > span:last-child { display: flex; flex-direction: column; }
.auth-showcase-brand strong { font-size: 18px; letter-spacing: -.025em; }
.auth-showcase-brand small { margin-top: 4px; color: rgba(255,255,255,.5); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.auth-showcase-copy { margin-top: clamp(54px, 9vh, 98px); max-width: 520px; }
.auth-kicker { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.62); font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.auth-kicker i { width: 7px; height: 7px; border-radius: 50%; background: #65e67d; box-shadow: 0 0 0 5px rgba(101,230,125,.11); }
.auth-showcase-copy h2 { margin: 22px 0 17px; font-size: clamp(42px, 5vw, 66px); line-height: .98; letter-spacing: -.065em; }
.auth-showcase-copy p { margin: 0; max-width: 470px; color: rgba(255,255,255,.56); font-size: 14px; line-height: 1.7; }
.auth-game-preview { margin-top: auto; display: grid; grid-template-columns: 1.22fr .78fr; gap: 12px; }
.auth-preview-card { position: relative; min-height: 142px; overflow: hidden; padding: 16px; border: 1px solid rgba(255,255,255,.1); border-radius: 22px; background: rgba(255,255,255,.065); backdrop-filter: blur(14px); }
.auth-preview-card::after { content: ""; position: absolute; inset: auto -30px -50px auto; width: 130px; height: 130px; border-radius: 50%; filter: blur(25px); opacity: .3; }
.auth-preview-snake::after { background: #68e777; }
.auth-preview-pong::after { background: #9b8cff; }
.auth-preview-label { display: flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 800; }
.auth-preview-label i { width: 6px; height: 6px; border-radius: 50%; background: #75ea83; }
.auth-preview-pong .auth-preview-label i { background: #a798ff; }
.auth-preview-card > small { position: absolute; left: 16px; bottom: 14px; color: rgba(255,255,255,.45); font-size: 9px; font-weight: 700; }
.auth-mini-snake { position: absolute; right: 18px; top: 45px; width: 150px; height: 60px; }
.auth-mini-snake i, .auth-mini-snake b { position: absolute; width: 25px; height: 25px; border-radius: 8px; background: linear-gradient(145deg, #b7ff9e, #63d86c); }
.auth-mini-snake i:nth-child(1) { left: 0; bottom: 0; }
.auth-mini-snake i:nth-child(2) { left: 29px; bottom: 0; }
.auth-mini-snake i:nth-child(3) { left: 58px; bottom: 0; }
.auth-mini-snake i:nth-child(4) { left: 87px; bottom: 0; }
.auth-mini-snake b { left: 87px; bottom: 29px; width: 29px; height: 29px; border-radius: 10px 10px 10px 5px; }
.auth-mini-pong { position: absolute; inset: 46px 18px 28px; border-block: 1px dashed rgba(255,255,255,.09); }
.auth-mini-pong i { position: absolute; width: 5px; height: 43px; top: 7px; border-radius: 9px; background: rgba(255,255,255,.9); }
.auth-mini-pong i:first-child { left: 2px; }
.auth-mini-pong i:nth-child(2) { right: 2px; top: 18px; background: #aa9cff; }
.auth-mini-pong b { position: absolute; width: 11px; height: 11px; left: 48%; top: 15px; border-radius: 50%; background: #fff; box-shadow: 0 0 15px rgba(255,255,255,.5); }
.auth-showcase-footer { margin-top: 18px; display: flex; align-items: center; gap: 12px; }
.auth-orbit { position: relative; flex: 0 0 auto; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; }
.auth-orbit i { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: #fff; }
.auth-orbit i:first-child { left: 4px; top: 7px; }
.auth-orbit i:nth-child(2) { right: 5px; top: 15px; background: #a697ff; }
.auth-orbit i:nth-child(3) { left: 18px; bottom: 5px; background: #74dfff; }
.auth-showcase-footer p { margin: 0; display: flex; flex-direction: column; }
.auth-showcase-footer strong { font-size: 11px; }
.auth-showcase-footer small { margin-top: 3px; color: rgba(255,255,255,.42); font-size: 9px; }
.auth-card { align-self: stretch; padding: clamp(34px, 5vw, 62px); display: flex; flex-direction: column; justify-content: center; background: var(--surface-strong); }
.auth-mobile-brand { display: none; align-items: center; gap: 10px; margin-bottom: 42px; }
.auth-mobile-brand .brand-mark { width: 38px; border-radius: 12px; }
.auth-mobile-brand strong { font-size: 17px; letter-spacing: -.025em; }
.auth-card > .eyebrow { margin-bottom: 13px; }
.auth-card h1 { max-width: 390px; margin-bottom: 15px; font-size: clamp(37px, 4vw, 51px); line-height: 1; letter-spacing: -.06em; }
.auth-intro { margin: 0 0 27px; max-width: 390px; color: var(--muted); font-size: 13px; line-height: 1.62; }
.auth-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; padding: 5px; border-radius: 16px; background: var(--surface-muted); border: 1px solid var(--line); }
.auth-tabs button { appearance: none; border: 0; border-radius: 12px; padding: 10px; color: var(--muted); background: transparent; font-size: 12px; font-weight: 750; cursor: pointer; transition: color .2s ease, background .2s ease, box-shadow .2s ease; }
.auth-tabs button.is-active { color: var(--text); background: var(--surface-strong); box-shadow: 0 5px 18px rgba(20,20,30,.08); }
.auth-form { display: grid; gap: 8px; margin-top: 19px; }
.auth-form.is-hidden { display: none; }
.auth-form label { margin-top: 7px; font-size: 10px; font-weight: 850; color: var(--text); letter-spacing: .02em; }
.auth-form input { width: 100%; min-height: 48px; border: 1px solid var(--line-strong); border-radius: 15px; padding: 12px 14px; color: var(--text); background: var(--surface-muted); outline: none; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.auth-form input::placeholder { color: color-mix(in srgb, var(--muted) 70%, transparent); }
.auth-form input:hover { background: var(--surface-strong); }
.auth-form input:focus { border-color: rgba(89,92,255,.72); background: var(--surface-strong); box-shadow: 0 0 0 4px rgba(89,92,255,.11); }
.auth-form small { color: var(--muted); font-size: 9px; }
.auth-form .primary-button { width: 100%; min-height: 49px; margin-top: 13px; border-radius: 15px; }
.auth-security { min-height: 35px; margin-top: 15px; padding: 9px 11px; display: flex; align-items: center; gap: 8px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface-muted); }
.auth-security > span { display: grid; place-items: center; flex: 0 0 auto; width: 18px; height: 18px; border-radius: 50%; color: #fff; background: #35ad56; font-size: 10px; font-weight: 900; }
.auth-message { min-height: 0; margin: 0; color: var(--muted); font-size: 9px; line-height: 1.45; text-align: left; }
.auth-message.is-error { color: #d64045; }
.auth-message.is-success { color: #248a3d; }
@media (max-width: 900px){
.auth-shell { width: min(520px, 100%); min-height: auto; grid-template-columns: 1fr; }
.auth-showcase { display: none; }
.auth-card { min-height: min(690px, calc(100vh - 48px)); }
.auth-mobile-brand { display: flex; }
}
@media (max-width: 520px){
.auth-gate { padding: 10px; align-items: flex-start; }
.auth-shell { margin-block: auto; border-radius: 27px; }
.auth-card { min-height: calc(100vh - 20px); padding: 27px 22px; justify-content: center; }
.auth-mobile-brand { margin-bottom: 33px; }
.auth-card h1 { font-size: 39px; }
.auth-intro { margin-bottom: 22px; }
}
.request-actions .secondary-button { padding: 9px 11px; }
button:disabled { cursor: default; opacity: .52; transform: none !important; }
.challenge-modal > p:not(.eyebrow) { color: var(--muted); line-height: 1.55; }
.pong-overlay .primary-button.is-hidden { display: none; }
.reaction-overlay .eyebrow { color: #ffc568; }
.easter-egg-active .brand-mark { animation: plyvio-secret-logo .65s ease-in-out infinite alternate; }
.easter-egg-active .ambient-one { animation: plyvio-secret-ambient 1.6s ease-in-out infinite alternate; }
.brand-mark-only { padding: 2px; border-radius: 16px; }
.brand-mark-only:hover .brand-icon { transform: translateY(-1px) scale(1.035); filter: drop-shadow(0 12px 22px rgba(28, 132, 245, .24)); }
.theme-wordmark { display: block; line-height: 0; }
.theme-wordmark img { display: block; width: 100%; height: auto; }
.theme-wordmark .logo-for-dark { display: none; }
html[data-theme="dark"] .theme-wordmark .logo-for-light { display: none; }
html[data-theme="dark"] .theme-wordmark .logo-for-dark { display: block; }
@media (prefers-color-scheme: dark){
html[data-theme="auto"] .theme-wordmark .logo-for-light { display: none; }
html[data-theme="auto"] .theme-wordmark .logo-for-dark { display: block; }
}
.brand-wordmark { display: block; width: min(210px, 47%); height: auto; object-fit: contain; }
body.auth-locked .app-shell { filter: blur(14px) saturate(.78); opacity: .16; }
.auth-gate {
  --auth-grid-x: 0px;
  --auth-grid-y: 0px;
  --auth-one-x: 0px;
  --auth-one-y: 0px;
  --auth-two-x: 0px;
  --auth-two-y: 0px;
  --auth-three-x: 0px;
  --auth-three-y: 0px;
  isolation: isolate;
  background: linear-gradient(145deg, rgba(242,245,251,.92), rgba(234,239,248,.82));
  backdrop-filter: blur(24px) saturate(120%);
  -webkit-backdrop-filter: blur(24px) saturate(120%);
}
[data-theme="dark"] .auth-gate { background: linear-gradient(145deg, rgba(5,7,13,.94), rgba(10,12,21,.9)); }
@media (prefers-color-scheme: dark){
html[data-theme="auto"] .auth-gate { background: linear-gradient(145deg, rgba(5,7,13,.94), rgba(10,12,21,.9)); }
}
.auth-motion-layer { position: absolute; z-index: 0; inset: 0; overflow: hidden; pointer-events: none; }
.auth-grid {
  position: absolute;
  inset: -8%;
  opacity: .34;
  background-image:
    linear-gradient(rgba(78,92,135,.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78,92,135,.075) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 50% 46%, black 0%, rgba(0,0,0,.62) 43%, transparent 79%);
  transform: translate3d(var(--auth-grid-x), var(--auth-grid-y), 0);
  transition: transform .9s cubic-bezier(.2,.8,.2,1);
}
[data-theme="dark"] .auth-grid { opacity: .22; }
.auth-orb { position: absolute; border-radius: 50%; will-change: transform; transition: transform 1.1s cubic-bezier(.2,.8,.2,1); }
.auth-orb i { position: absolute; inset: 0; border-radius: inherit; animation: authPulse 9s ease-in-out infinite alternate; }
.auth-orb-one { width: min(48vw, 680px); aspect-ratio: 1; left: -15vw; top: -23vw; transform: translate3d(var(--auth-one-x), var(--auth-one-y), 0); }
.auth-orb-one i { background: radial-gradient(circle at 58% 62%, rgba(55,155,255,.25), rgba(87,87,230,.13) 43%, transparent 72%); }
.auth-orb-two { width: min(42vw, 590px); aspect-ratio: 1; right: -14vw; bottom: -23vw; transform: translate3d(var(--auth-two-x), var(--auth-two-y), 0); }
.auth-orb-two i { animation-delay: -3.5s; background: radial-gradient(circle at 35% 32%, rgba(94,224,210,.18), rgba(72,110,255,.13) 42%, transparent 72%); }
.auth-orb-three { width: 380px; height: 380px; left: 57%; top: 7%; opacity: .42; transform: translate3d(var(--auth-three-x), var(--auth-three-y), 0); }
.auth-orb-three i { animation-delay: -6s; background: radial-gradient(circle, rgba(125,103,255,.17), transparent 69%); }
@keyframes authPulse { from { opacity: .68; transform: scale(.94); } to { opacity: 1; transform: scale(1.06); } }
.auth-shell {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  min-height: min(704px, calc(100vh - 48px));
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, .92fr);
  border-color: rgba(255,255,255,.38);
  border-radius: 34px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 38px 110px rgba(23,32,56,.2), 0 1px 0 rgba(255,255,255,.7) inset;
  backdrop-filter: blur(30px) saturate(125%);
  -webkit-backdrop-filter: blur(30px) saturate(125%);
}
[data-theme="dark"] .auth-shell { background: rgba(20,22,30,.9); border-color: rgba(255,255,255,.1); box-shadow: 0 42px 120px rgba(0,0,0,.52); }
.auth-showcase {
  padding: 42px;
  background:
    radial-gradient(circle at 82% 15%, rgba(51,151,255,.23), transparent 31%),
    radial-gradient(circle at 16% 88%, rgba(78,226,203,.12), transparent 33%),
    linear-gradient(150deg, #111725 0%, #0c111c 48%, #070a11 100%);
}
.auth-showcase::before { opacity: .22; background-size: 30px 30px; }
.auth-showcase::after { opacity: .75; }
.auth-showcase-brand { min-height: 55px; }
.auth-showcase-copy { margin-top: clamp(46px, 7vh, 78px); }
.auth-showcase-copy h2 { margin-top: 20px; font-size: clamp(45px, 5.2vw, 69px); line-height: .94; }
.auth-showcase-copy p { max-width: 490px; color: rgba(246,248,255,.62); font-size: 14px; }
.auth-kicker { color: rgba(246,248,255,.58); }
.auth-game-preview { gap: 13px; }
.auth-preview-card { min-height: 148px; background: rgba(255,255,255,.055); border-color: rgba(255,255,255,.085); }
.auth-showcase-footer strong { font-size: 11px; font-weight: 700; }
.auth-showcase-footer small { font-size: 9px; }
.auth-card { padding: clamp(38px, 5vw, 64px); background: color-mix(in srgb, var(--surface-strong) 95%, transparent); }
.auth-mobile-brand { width: 166px; margin-bottom: 36px; }
.auth-heading-stage { min-height: 154px; }
.auth-card > .auth-heading-stage .eyebrow { margin-bottom: 14px; }
.auth-card h1 { max-width: 420px; margin-bottom: 14px; font-size: clamp(38px, 4vw, 50px); }
.auth-intro { max-width: 410px; margin-bottom: 0; font-size: 13px; }
.auth-tabs { margin-top: 5px; }
.auth-form-stage { position: relative; min-height: 343px; }
.auth-form-stage .auth-form {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 19px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .18s ease, transform .22s ease, visibility 0s linear;
}
.auth-form-stage .auth-form.is-hidden {
  display: flex;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity .14s ease, transform .18s ease, visibility 0s linear .18s;
}
.auth-form-stage .auth-form .primary-button { margin-top: auto; }
.auth-security { margin-top: 14px; }
@media (max-width: 900px){
.auth-shell { width: min(540px, 100%); min-height: auto; }
.auth-card { min-height: min(724px, calc(100vh - 48px)); }
.auth-mobile-brand { display: block; }
}
@media (max-width: 520px){
.auth-card { min-height: calc(100vh - 20px); padding: 25px 21px; }
.auth-mobile-brand { width: 145px; margin-bottom: 26px; }
.auth-heading-stage { min-height: 142px; }
.auth-card h1 { font-size: 38px; }
.auth-form-stage { min-height: 338px; }
.auth-orb-three { display: none; }
}
@media (prefers-reduced-motion: reduce){
.auth-grid, .auth-orb, .auth-orb i { transform: none !important; animation: none !important; transition: none !important; }
}
:root {
  --orblynt-bg: #07121b;
  --orblynt-grid: rgba(255,255,255,.055);
  --orblynt-player: #f5f8ff;
  --orblynt-opponent: #71d7ff;
  --orblynt-nova: #67dcff;
  --orblynt-vanta: #b58cff;
  --orblynt-core: #ffffff;
  --orblynt-gate: #6ee7c6;
  --orblynt-accent: #5d88ff;
}
.orblynt-overlay-panel p:not(.eyebrow) { margin-inline: auto; color: rgba(255,255,255,.72); }
.orblynt-overlay-panel .primary-button { margin-top: 4px; }
.orblynt-overlay-panel p:not(.eyebrow) { margin-inline: auto; color: rgba(255,255,255,.72); }
.orblynt-overlay-panel .primary-button { margin-top: 4px; }
.auth-legal-links,
.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 16px;
}
.auth-legal-links { margin-top: 14px; font-size: 12px; }
.auth-legal-links a,
.site-footer a,
.legal-page a { color: var(--muted); text-decoration: none; }
.auth-legal-links a:hover,
.site-footer a:hover,
.legal-page a:hover { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }
#appMount:empty { display: none; }
.auth-gate.is-loading .auth-tabs,
.auth-gate.is-loading .auth-form-stage { opacity: .68; }
.auth-gate.is-loading .auth-card { cursor: progress; }
.auth-gate .auth-tabs,
.auth-gate .auth-form-stage { transition: opacity .18s ease; }
body.app-ready { overflow: auto; }
.auth-guest-entry {
  display: grid;
  gap: 11px;
  margin-top: 18px;
  text-align: center;
}
.auth-guest-entry > small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}
.auth-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}
.auth-divider i { height: 1px; background: var(--line); }
.auth-divider small { font-size: 9px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.auth-guest-button { width: 100%; }
.daily-card-head .eyebrow,
.daily-card-head h3,
.daily-card > p,
.daily-rule-chips small,
.daily-rule-chips strong,
.daily-countdown-wrap small,
.daily-countdown {
  overflow-wrap: anywhere;
}
:root {
  --plyvio-page-bg-x: 50%;
  --plyvio-page-bg-y: 50%;
  --plyvio-page-bg-soft-x: 50%;
  --plyvio-page-bg-soft-y: 50%;
}
html {
  min-height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(8,16,42,.24), rgba(3,8,24,0) 56%), linear-gradient(180deg,#020615,#040916) !important;
}
body.auth-locked {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
  overflow-x: hidden;
  background: radial-gradient(circle at 10% 16%,rgba(55,87,255,.08) 0 10rem,transparent 10rem), radial-gradient(circle at 86% 14%,rgba(91,110,255,.06) 0 8rem,transparent 8rem), radial-gradient(circle at 14% 82%,rgba(66,114,255,.055) 0 9rem,transparent 9rem), radial-gradient(circle at 90% 84%,rgba(94,102,255,.05) 0 8rem,transparent 8rem), linear-gradient(180deg,#020615,#040916) !important;
}
body.auth-locked::before, body.auth-locked::after { content:""; position:fixed; inset:0; pointer-events:none; }
body.auth-locked::before { z-index:0; background: radial-gradient(circle 22rem at 12% 18%,rgba(60,93,255,.048) 0 2%,rgba(60,93,255,.04) 2%,transparent 49%), radial-gradient(circle 15rem at 21% 30%,rgba(111,126,255,.034) 0 1.8%,rgba(111,126,255,.03) 1.8%,transparent 53%), radial-gradient(circle 20rem at 78% 18%,rgba(90,104,255,.038) 0 2%,rgba(90,104,255,.03) 2%,transparent 50%), radial-gradient(circle 14rem at 88% 30%,rgba(126,142,255,.028) 0 1.9%,rgba(126,142,255,.022) 1.9%,transparent 52%), radial-gradient(circle 18rem at 15% 72%,rgba(82,116,255,.032) 0 1.8%,rgba(82,116,255,.026) 1.8%,transparent 51%), radial-gradient(circle 20rem at 84% 74%,rgba(92,111,255,.032) 0 1.8%,rgba(92,111,255,.026) 1.8%,transparent 50%); }
body.auth-locked::after { z-index:0; opacity:.78; background: radial-gradient(circle 18rem at var(--plyvio-page-bg-x) var(--plyvio-page-bg-y),rgba(123,140,255,.075),rgba(95,118,255,.048) 18%,rgba(39,56,124,.018) 38%,transparent 64%), radial-gradient(circle 30rem at var(--plyvio-page-bg-soft-x) var(--plyvio-page-bg-soft-y),rgba(66,97,255,.048),rgba(40,66,184,.018) 35%,transparent 66%); }
body.auth-locked > #appMount { position: relative; z-index: 1; }
.auth-shell { transform:scale(.92); transform-origin:center; }
@media (max-width:1400px){
.auth-shell{transform:scale(.95)}
}
@media (max-width:1100px){
.auth-shell{transform:scale(.98)}
}
@media (max-width:900px){
.auth-shell{transform:none}
}
.phaseloom-overlay.is-hidden { opacity:0; visibility:hidden; pointer-events:none; }
.phaseloom-overlay p:not(.eyebrow) { max-width:580px; margin:0 0 20px; color:#b4bdd1; line-height:1.6; }
:root {
  --plyvio-bg-x: 56%;
  --plyvio-bg-y: 38%;
  --plyvio-bg-soft-x: 62%;
  --plyvio-bg-soft-y: 70%;
  --plyvio-bg-shift-x: 0px;
  --plyvio-bg-shift-y: 0px;
}
html {
  min-height: 100%;
  background:
    radial-gradient(circle at 50% -12%, rgba(95, 113, 255, 0.18), transparent 32%),
    linear-gradient(180deg, #050916 0%, #080d1e 52%, #090d18 100%) !important;
}
body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 14%, rgba(83, 103, 255, 0.08) 0 12rem, transparent 12rem),
    radial-gradient(circle at 88% 12%, rgba(88, 213, 255, 0.06) 0 11rem, transparent 11rem),
    radial-gradient(circle at 14% 86%, rgba(79, 118, 255, 0.06) 0 10rem, transparent 10rem),
    radial-gradient(circle at 89% 84%, rgba(132, 123, 255, 0.05) 0 11rem, transparent 11rem),
    linear-gradient(180deg, #050916 0%, #080d1e 52%, #090d18 100%) !important;
  isolation: isolate;
}
body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
body::before {
  opacity: 0.9;
  background:
    radial-gradient(circle 22rem at 12% 18%, rgba(60, 93, 255, 0.05) 0 2%, rgba(60, 93, 255, 0.04) 2%, transparent 49%),
    radial-gradient(circle 15rem at 21% 30%, rgba(111, 126, 255, 0.036) 0 1.8%, rgba(111, 126, 255, 0.03) 1.8%, transparent 53%),
    radial-gradient(circle 20rem at 78% 18%, rgba(90, 104, 255, 0.04) 0 2%, rgba(90, 104, 255, 0.03) 2%, transparent 50%),
    radial-gradient(circle 14rem at 88% 30%, rgba(126, 142, 255, 0.03) 0 1.9%, rgba(126, 142, 255, 0.022) 1.9%, transparent 52%),
    radial-gradient(circle 18rem at 15% 72%, rgba(82, 116, 255, 0.034) 0 1.8%, rgba(82, 116, 255, 0.026) 1.8%, transparent 51%),
    radial-gradient(circle 20rem at 84% 74%, rgba(92, 111, 255, 0.034) 0 1.8%, rgba(92, 111, 255, 0.026) 1.8%, transparent 50%);
}
body::after {
  opacity: 0.9;
  background:
    radial-gradient(circle 18rem at var(--plyvio-bg-x) var(--plyvio-bg-y),
      rgba(123, 140, 255, 0.09),
      rgba(95, 118, 255, 0.05) 18%,
      rgba(39, 56, 124, 0.018) 38%,
      transparent 64%
    ),
    radial-gradient(circle 30rem at var(--plyvio-bg-soft-x) var(--plyvio-bg-soft-y),
      rgba(66, 97, 255, 0.055),
      rgba(40, 66, 184, 0.02) 35%,
      transparent 66%
    );
}
body > .ambient {
  position: fixed !important;
  z-index: 0 !important;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
  opacity: 0.14;
  will-change: transform;
}
body > .ambient-one {
  top: -300px;
  right: -120px;
  background: #7869ff;
  transform: translate3d(calc(var(--plyvio-bg-shift-x) * -0.26), calc(var(--plyvio-bg-shift-y) * -0.18), 0);
}
body > .ambient-two {
  bottom: -360px;
  left: 8%;
  background: #61c9ff;
  opacity: 0.1;
  transform: translate3d(calc(var(--plyvio-bg-shift-x) * 0.22), calc(var(--plyvio-bg-shift-y) * 0.18), 0);
}
body > #appMount,
body > .app-shell,
.app-shell {
  position: relative;
  z-index: 1;
}
body.auth-locked {
  overflow-x: hidden;
}
body.auth-locked > .auth-gate {
  position: fixed !important;
  inset: 0 !important;
  z-index: 100 !important;
  background:
    radial-gradient(circle at 18% 18%, rgba(95, 108, 255, 0.14), transparent 34%),
    radial-gradient(circle at 84% 82%, rgba(97, 201, 255, 0.09), transparent 32%),
    linear-gradient(145deg, rgba(6, 9, 18, 0.68), rgba(10, 14, 26, 0.76)) !important;
  backdrop-filter: blur(22px) saturate(125%);
  -webkit-backdrop-filter: blur(22px) saturate(125%);
}
[data-theme="light"] body.auth-locked > .auth-gate {
  background:
    radial-gradient(circle at 18% 18%, rgba(95, 108, 255, 0.11), transparent 34%),
    radial-gradient(circle at 84% 82%, rgba(97, 201, 255, 0.08), transparent 32%),
    linear-gradient(145deg, rgba(243, 246, 255, 0.6), rgba(236, 240, 250, 0.72)) !important;
}
html[data-theme="auto"] body.auth-locked > .auth-gate {
  background:
    radial-gradient(circle at 18% 18%, rgba(95, 108, 255, 0.14), transparent 34%),
    radial-gradient(circle at 84% 82%, rgba(97, 201, 255, 0.09), transparent 32%),
    linear-gradient(145deg, rgba(6, 9, 18, 0.68), rgba(10, 14, 26, 0.76)) !important;
}
body.auth-locked > #appMount {
  position: relative;
  z-index: 1;
}
@media (prefers-reduced-motion: reduce){
:root {
    --plyvio-bg-x: 56%;
    --plyvio-bg-y: 38%;
    --plyvio-bg-soft-x: 62%;
    --plyvio-bg-soft-y: 70%;
    --plyvio-bg-shift-x: 0px;
    --plyvio-bg-shift-y: 0px;
  }
body > .ambient-one,
  body > .ambient-two {
    transform: none;
  }
}
@media (max-width: 900px){
body > .ambient {
    width: 520px;
    height: 520px;
    filter: blur(108px);
  }
body::after {
    opacity: 0.78;
  }
}
