/* Starfall Champions profile */
:root {
    --sfc-night: #09072a;
    --sfc-night-deep: #050419;
    --sfc-panel: #111044;
    --sfc-panel-bright: #191653;
    --sfc-white: #f8f5ff;
    --sfc-muted: #b9b3d7;
    --sfc-magenta: #ff3ca6;
    --sfc-magenta-dark: #ba146f;
    --sfc-gold: #ffca59;
    --sfc-cyan: #22e7ff;
    --sfc-violet: #8f75ff;
    --sfc-line: rgba(216, 210, 255, .18);
    --sfc-display: "Arial Black", "Segoe UI Black", Impact, sans-serif;
    --sfc-body: "Segoe UI", Arial, sans-serif;
    --sfc-max: 1460px;
    --sfc-pad: clamp(22px, 4.5vw, 74px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
    margin: 0;
    color: var(--sfc-white);
    background: var(--sfc-night);
    font-family: var(--sfc-body);
    font-size: 16px;
    line-height: 1.55;
    overflow-x: clip;
}
body.sfc-menu-open, body.sfc-dialog-open { overflow: hidden; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
svg { display: block; }
[hidden] { display: none !important; }
::selection { color: var(--sfc-night); background: var(--sfc-gold); }
:focus-visible { outline: 3px solid var(--sfc-cyan); outline-offset: 4px; }

.sfc-space-dust {
    position: fixed;
    z-index: -1;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 14% 18%, rgba(255,255,255,.7) 0 1px, transparent 1.6px),
        radial-gradient(circle at 77% 29%, rgba(34,231,255,.7) 0 1px, transparent 1.7px),
        radial-gradient(circle at 32% 76%, rgba(255,202,89,.55) 0 1px, transparent 1.7px),
        radial-gradient(circle at 90% 84%, rgba(255,255,255,.55) 0 1px, transparent 1.5px);
    background-size: 170px 170px, 230px 230px, 290px 290px, 130px 130px;
    opacity: .6;
}
.sfc-skip-link {
    position: fixed;
    z-index: 300;
    top: 12px;
    left: 14px;
    padding: 11px 18px;
    color: var(--sfc-night);
    background: var(--sfc-cyan);
    font-weight: 800;
    transform: translateY(-160%);
    transition: transform .2s ease;
}
.sfc-skip-link:focus { transform: translateY(0); }

.sfc-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid var(--sfc-line);
    background: rgba(9, 7, 42, .9);
    backdrop-filter: blur(18px);
}
.sfc-nav-shell {
    width: min(100%, var(--sfc-max));
    min-height: 78px;
    margin: auto;
    padding: 0 var(--sfc-pad);
    display: flex;
    align-items: center;
    gap: clamp(24px, 4vw, 64px);
}
.sfc-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex: 0 0 auto;
    font-family: var(--sfc-display);
    font-size: 15px;
    font-style: italic;
    letter-spacing: -.04em;
    text-transform: uppercase;
}
.sfc-brand-mark { width: 39px; height: 39px; overflow: visible; }
.sfc-mark-orbit { fill: none; stroke: var(--sfc-cyan); stroke-width: 3; }
.sfc-mark-star { fill: var(--sfc-magenta); }
.sfc-desktop-nav { margin-left: auto; display: flex; align-items: stretch; gap: clamp(19px, 2.2vw, 36px); }
.sfc-desktop-nav a {
    position: relative;
    padding: 28px 0 25px;
    color: var(--sfc-muted);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: color .2s ease;
}
.sfc-desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -1px;
    height: 3px;
    background: linear-gradient(90deg, var(--sfc-magenta), var(--sfc-gold));
    transition: right .25s ease;
}
.sfc-desktop-nav a:hover, .sfc-desktop-nav a[aria-current="true"] { color: var(--sfc-white); }
.sfc-desktop-nav a:hover::after, .sfc-desktop-nav a[aria-current="true"]::after { right: 0; }
.sfc-header-actions { display: flex; align-items: center; gap: 15px; }
.sfc-language { padding: 3px; display: flex; border: 1px solid var(--sfc-line); transform: skewX(-8deg); }
.sfc-language button {
    min-width: 35px;
    min-height: 29px;
    padding: 4px 7px;
    border: 0;
    color: var(--sfc-muted);
    background: transparent;
    cursor: pointer;
    font-size: 11px;
    font-weight: 900;
    transform: skewX(8deg);
}
.sfc-language button[aria-pressed="true"] { color: var(--sfc-night); background: var(--sfc-cyan); }
.sfc-button {
    min-height: 50px;
    padding: 13px 21px;
    border: 1px solid var(--sfc-magenta);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 27px;
    color: var(--sfc-white);
    background: linear-gradient(118deg, var(--sfc-magenta-dark), var(--sfc-magenta));
    box-shadow: 5px 5px 0 var(--sfc-gold);
    cursor: pointer;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
    transform: skewX(-7deg);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.sfc-button > * { transform: skewX(7deg); }
.sfc-button i { font-size: 18px; font-style: normal; line-height: 1; }
.sfc-button:hover { transform: translate(-3px, -3px) skewX(-7deg); box-shadow: 8px 8px 0 var(--sfc-gold); filter: saturate(1.15); }
.sfc-button:disabled { opacity: .62; cursor: wait; transform: skewX(-7deg); box-shadow: 3px 3px 0 var(--sfc-gold); }
.sfc-button-compact { min-height: 39px; padding: 8px 13px; box-shadow: 3px 3px 0 var(--sfc-gold); font-size: 10px; }
.sfc-button-large { min-height: 59px; padding: 16px 27px; }
.sfc-button-dark { color: var(--sfc-white); border-color: var(--sfc-night); background: var(--sfc-night); box-shadow: 6px 6px 0 rgba(255,255,255,.75); }
.sfc-menu-button {
    width: 44px;
    height: 42px;
    padding: 10px;
    border: 1px solid var(--sfc-line);
    display: none;
    place-content: center;
    gap: 5px;
    background: transparent;
    cursor: pointer;
}
.sfc-menu-button span { width: 21px; height: 2px; display: block; background: var(--sfc-white); transition: transform .2s ease, opacity .2s ease; }
.sfc-menu-button[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
.sfc-menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.sfc-menu-button[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }
.sfc-mobile-menu { padding: 12px var(--sfc-pad) 28px; border-top: 1px solid var(--sfc-line); background: var(--sfc-night-deep); }
.sfc-mobile-menu > a { display: block; padding: 14px 2px; border-bottom: 1px solid var(--sfc-line); font-family: var(--sfc-display); font-size: 25px; font-style: italic; text-transform: uppercase; }
.sfc-mobile-menu .sfc-button { margin-top: 24px; }

.sfc-hero {
    position: relative;
    width: min(100%, var(--sfc-max));
    min-height: calc(100svh - 78px);
    margin: auto;
    padding: clamp(58px, 8vw, 122px) var(--sfc-pad) clamp(70px, 8vw, 110px);
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr);
    align-items: center;
    gap: clamp(45px, 5vw, 80px);
}
.sfc-hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -160px;
    right: -20%;
    width: 70%;
    height: 820px;
    background: radial-gradient(ellipse, rgba(255,60,166,.17), transparent 65%);
    transform: rotate(-13deg);
}
.sfc-overline, .sfc-kicker, .sfc-section-index {
    margin: 0;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .17em;
    text-transform: uppercase;
}
.sfc-overline { display: flex; align-items: center; gap: 12px; color: var(--sfc-gold); }
.sfc-overline > span:first-child { width: 36px; height: 3px; background: var(--sfc-magenta); box-shadow: 10px 0 0 var(--sfc-cyan); transform: skewX(-25deg); }
.sfc-hero h1 {
    max-width: 780px;
    margin: 28px 0 24px;
    font-family: var(--sfc-display);
    font-size: clamp(58px, 7.2vw, 112px);
    font-style: italic;
    font-weight: 900;
    line-height: .82;
    letter-spacing: -.075em;
    text-transform: uppercase;
}
.sfc-hero h1 span, .sfc-hero h1 em { display: block; }
.sfc-hero h1 em {
    margin-top: .13em;
    color: transparent;
    -webkit-text-stroke: 2px var(--sfc-cyan);
    text-shadow: 7px 7px 0 rgba(255,60,166,.35);
}
.sfc-hero-lead { max-width: 630px; margin: 0; color: var(--sfc-muted); font-size: clamp(17px, 1.45vw, 21px); line-height: 1.65; }
.sfc-hero-actions { margin-top: 35px; display: flex; align-items: center; flex-wrap: wrap; gap: 33px; }
.sfc-link { padding: 8px 0; display: inline-flex; gap: 13px; border-bottom: 1px solid var(--sfc-cyan); color: var(--sfc-white); font-size: 13px; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
.sfc-link i { color: var(--sfc-cyan); font-size: 17px; font-style: normal; transition: transform .2s ease; }
.sfc-link:hover i { transform: translateY(4px); }
.sfc-hero-stats { margin: clamp(45px, 6vw, 82px) 0 0; padding: 18px 0 0; border-top: 1px solid var(--sfc-line); display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.sfc-hero-stats div { display: flex; flex-direction: column-reverse; gap: 3px; }
.sfc-hero-stats dt { color: var(--sfc-muted); font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.sfc-hero-stats dd { margin: 0; font-family: var(--sfc-display); font-size: clamp(25px, 2.7vw, 42px); font-style: italic; line-height: 1; }
.sfc-hero-stats dd span { color: var(--sfc-magenta); font-size: .48em; }

.sfc-arena-stage {
    position: relative;
    min-height: min(690px, 70vw);
    border: 1px solid rgba(34,231,255,.32);
    background:
        linear-gradient(145deg, rgba(255,60,166,.12), transparent 32%),
        linear-gradient(-35deg, rgba(34,231,255,.1), transparent 36%),
        #0c0a35;
    clip-path: polygon(10% 0, 100% 0, 92% 100%, 0 91%);
    overflow: hidden;
    filter: drop-shadow(18px 20px 0 rgba(255,60,166,.12));
}
.sfc-arena-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(143,117,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(143,117,255,.09) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, #000, transparent 92%);
}
.sfc-arena-stage::after { content: ""; position: absolute; inset: -60% 43%; width: 2px; background: rgba(255,255,255,.65); box-shadow: 0 0 25px 8px var(--sfc-cyan); transform: rotate(36deg); opacity: .48; }
.sfc-arena-map { position: absolute; inset: 7% 2% 7% 0; width: 96%; height: 86%; overflow: visible; transform: rotate(-4deg); }
.sfc-arena-ring { fill: rgba(143,117,255,.045); stroke: rgba(143,117,255,.55); stroke-width: 2; stroke-dasharray: 8 12; }
.sfc-ring-inner { fill: rgba(255,60,166,.04); stroke: rgba(255,255,255,.26); stroke-dasharray: 3 9; }
.sfc-lane { fill: none; stroke-width: 17; stroke-linecap: round; opacity: .75; }
.sfc-lane-magenta { stroke: url(#sfc-lane-a); }
.sfc-lane-cyan { stroke: url(#sfc-lane-b); }
.sfc-lane-gold { stroke: var(--sfc-gold); opacity: .25; }
.sfc-lane-violet { stroke: var(--sfc-violet); opacity: .25; }
.sfc-core-pulse { fill: rgba(255,60,166,.1); stroke: var(--sfc-magenta); stroke-width: 2; transform-origin: center; animation: sfc-core-pulse 2.4s ease-in-out infinite; }
.sfc-core-star { fill: var(--sfc-gold); stroke: #fff8ca; stroke-width: 2; }
.sfc-squad-alpha, .sfc-squad-omega { filter: drop-shadow(0 0 8px currentColor); animation: sfc-squad-drift 3s ease-in-out infinite alternate; }
.sfc-squad-omega { animation-delay: -1.3s; }
@keyframes sfc-core-pulse { 50% { transform: scale(1.14); opacity: .5; } }
@keyframes sfc-squad-drift { to { transform: translate(12px, -8px); } }
.sfc-stage-hud { position: absolute; z-index: 3; left: 9%; right: 8%; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 10px; font-weight: 900; letter-spacing: .13em; }
.sfc-stage-hud-top { top: 8%; color: var(--sfc-muted); }
.sfc-stage-hud-top b { padding: 6px 9px; color: var(--sfc-night); background: var(--sfc-cyan); }
.sfc-stage-hud-bottom { bottom: 11%; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.25); }
.sfc-stage-hud-bottom b { color: var(--sfc-gold); font-family: var(--sfc-display); font-size: 19px; }
.sfc-champion-chip { position: absolute; z-index: 4; min-width: 180px; padding: 8px 11px; border: 1px solid rgba(255,255,255,.3); display: grid; grid-template-columns: 35px 1fr auto; align-items: center; gap: 8px; background: rgba(5,4,25,.88); box-shadow: 7px 7px 0 rgba(0,0,0,.3); transform: skewX(-7deg); }
.sfc-champion-chip > * { transform: skewX(7deg); }
.sfc-champion-chip > span { width: 31px; height: 31px; display: grid; place-items: center; color: var(--sfc-night); background: var(--sfc-magenta); font-family: var(--sfc-display); }
.sfc-champion-chip strong { font-size: 9px; letter-spacing: .08em; }
.sfc-champion-chip small { color: var(--sfc-gold); font-weight: 900; }
.sfc-chip-alpha { left: 7%; bottom: 25%; }
.sfc-chip-omega { top: 24%; right: 5%; }
.sfc-chip-omega > span { background: var(--sfc-cyan); }

.sfc-ticker {
    padding: 17px max(var(--sfc-pad), calc((100vw - var(--sfc-max)) / 2 + var(--sfc-pad)));
    border-block: 1px solid var(--sfc-line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
    color: var(--sfc-muted);
    background: rgba(17,16,68,.78);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
    white-space: nowrap;
}
.sfc-ticker i { color: var(--sfc-magenta); font-style: normal; }
.sfc-section { padding: clamp(95px, 11vw, 170px) max(var(--sfc-pad), calc((100vw - var(--sfc-max)) / 2 + var(--sfc-pad))); }
.sfc-section-heading { margin-bottom: clamp(55px, 7vw, 100px); display: grid; grid-template-columns: minmax(145px, .45fr) minmax(400px, 1.2fr) minmax(260px, .65fr); gap: clamp(28px, 4.5vw, 70px); align-items: start; }
.sfc-section-index { padding-top: 11px; color: var(--sfc-magenta); }
.sfc-kicker { color: var(--sfc-cyan); }
.sfc-section-heading h2, .sfc-season h2, .sfc-faq h2 {
    max-width: 780px;
    margin: 15px 0 0;
    font-family: var(--sfc-display);
    font-size: clamp(43px, 5.8vw, 84px);
    font-style: italic;
    line-height: .93;
    letter-spacing: -.055em;
    text-transform: uppercase;
}
.sfc-section-heading > p:last-child { margin: 37px 0 0; color: var(--sfc-muted); font-size: 16px; line-height: 1.65; }

.sfc-champions { position: relative; }
.sfc-champions::before { content: ""; position: absolute; z-index: -1; top: 17%; left: -8%; width: 55%; height: 55%; background: radial-gradient(ellipse, rgba(143,117,255,.13), transparent 68%); }
.sfc-champion-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.sfc-champion-card { position: relative; min-height: 670px; border: 1px solid var(--sfc-line); overflow: hidden; background: var(--sfc-panel); clip-path: polygon(8% 0, 100% 0, 100% 94%, 92% 100%, 0 100%, 0 6%); }
.sfc-champion-card::before { content: ""; position: absolute; z-index: 2; inset: 0; background: linear-gradient(to top, #09072a 2%, rgba(9,7,42,.88) 26%, transparent 62%); pointer-events: none; }
.sfc-card-nyra { transform: translateY(22px); }
.sfc-card-orbit { transform: translateY(-22px); }
.sfc-card-number { position: absolute; z-index: 3; top: 24px; right: 24px; color: rgba(255,255,255,.58); font-size: 11px; font-weight: 900; letter-spacing: .16em; }
.sfc-portrait { position: absolute; inset: 0 0 26%; overflow: hidden; background: radial-gradient(circle at 50% 36%, rgba(255,255,255,.16), transparent 13%), linear-gradient(145deg, transparent 35%, rgba(255,255,255,.08) 35.2%, transparent 36%); }
.sfc-portrait::before, .sfc-portrait::after, .sfc-portrait span, .sfc-portrait i, .sfc-portrait b { content: ""; position: absolute; display: block; }
.sfc-portrait::before { width: 38%; height: 43%; top: 13%; left: 32%; border-radius: 47% 53% 42% 45%; background: var(--sfc-white); transform: rotate(-8deg) skewY(-5deg); }
.sfc-portrait::after { width: 76%; height: 56%; left: 12%; bottom: -9%; clip-path: polygon(29% 0, 71% 0, 100% 34%, 83% 100%, 15% 100%, 0 35%); background: var(--sfc-violet); }
.sfc-portrait span { z-index: 2; width: 29%; height: 8%; top: 34%; left: 37%; background: var(--sfc-night); transform: rotate(-7deg) skewX(-15deg); }
.sfc-portrait i { z-index: 3; width: 8px; height: 8px; top: 35%; left: 43%; border-radius: 50%; background: var(--sfc-cyan); box-shadow: 49px -6px 0 var(--sfc-cyan), 0 0 13px var(--sfc-cyan); }
.sfc-portrait b { z-index: 1; width: 55%; height: 52%; left: 22%; top: 4%; border: 18px solid var(--sfc-magenta); border-bottom: 0; border-radius: 60% 45% 0 0; transform: rotate(-12deg); }
.sfc-portrait-nyra { background-color: #32145a; }
.sfc-portrait-sol { background-color: #53301f; }
.sfc-portrait-sol::before { background: var(--sfc-gold); transform: rotate(5deg); }
.sfc-portrait-sol::after { background: var(--sfc-magenta); clip-path: polygon(18% 10%, 50% 0, 83% 10%, 100% 54%, 78% 100%, 22% 100%, 0 54%); }
.sfc-portrait-sol span { background: #3b180f; transform: rotate(4deg); }
.sfc-portrait-sol i { background: #fff; box-shadow: 49px 4px 0 #fff, 0 0 13px var(--sfc-gold); }
.sfc-portrait-sol b { width: 74%; height: 66%; left: 13%; top: 4%; border: 12px solid var(--sfc-gold); border-radius: 50%; }
.sfc-portrait-orbit { background-color: #0b3952; }
.sfc-portrait-orbit::before { border-radius: 50%; background: #bff8ff; }
.sfc-portrait-orbit::after { background: var(--sfc-cyan); clip-path: polygon(50% 0, 90% 22%, 100% 100%, 0 100%, 10% 22%); }
.sfc-portrait-orbit span { width: 44%; height: 13%; top: 30%; left: 28%; border: 2px solid var(--sfc-cyan); border-radius: 50%; background: var(--sfc-night); transform: none; }
.sfc-portrait-orbit i { top: 33%; left: 43%; background: var(--sfc-magenta); box-shadow: 0 0 17px var(--sfc-magenta); }
.sfc-portrait-orbit b { width: 60%; height: 60%; left: 20%; top: 4%; border: 4px solid var(--sfc-cyan); border-radius: 50%; transform: none; }
.sfc-card-copy { position: absolute; z-index: 3; inset: auto clamp(23px, 2.7vw, 40px) 32px; }
.sfc-card-copy > p:first-child { margin: 0 0 7px; color: var(--sfc-cyan); font-size: 10px; font-weight: 900; letter-spacing: .17em; }
.sfc-card-copy h3 { margin: 0; font-family: var(--sfc-display); font-size: clamp(35px, 3vw, 48px); font-style: italic; line-height: 1; letter-spacing: -.04em; text-transform: uppercase; }
.sfc-card-copy > p:nth-of-type(2) { min-height: 73px; margin: 15px 0 19px; color: var(--sfc-muted); font-size: 14px; }
.sfc-card-copy > div { padding-top: 15px; border-top: 1px solid var(--sfc-line); display: flex; flex-wrap: wrap; gap: 8px; }
.sfc-card-copy > div span { padding: 5px 8px; border: 1px solid rgba(34,231,255,.28); color: var(--sfc-cyan); font-size: 9px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.sfc-card-sol .sfc-card-copy > p:first-child, .sfc-card-sol .sfc-card-copy > div span { color: var(--sfc-gold); border-color: rgba(255,202,89,.3); }

.sfc-arenas { background: var(--sfc-night-deep); }
.sfc-arena-showcase { border: 1px solid var(--sfc-line); display: grid; grid-template-columns: 1.35fr .65fr; min-height: 590px; background: var(--sfc-panel); }
.sfc-map-panel { position: relative; min-height: 590px; overflow: hidden; background: radial-gradient(circle at 50% 50%, rgba(255,60,166,.2), transparent 24%), #0b0933; }
.sfc-map-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(34,231,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(34,231,255,.07) 1px, transparent 1px); background-size: 38px 38px; transform: perspective(700px) rotateX(58deg) scale(1.5); }
.sfc-map-panel svg { position: absolute; inset: 9% 7%; width: 86%; height: 82%; }
.sfc-map-boundary, .sfc-map-route, .sfc-map-node { fill: rgba(143,117,255,.08); stroke: var(--sfc-cyan); stroke-width: 2; }
.sfc-map-route { fill: none; stroke: rgba(255,60,166,.68); stroke-width: 8; }
.sfc-map-node { fill: rgba(255,202,89,.25); stroke: var(--sfc-gold); stroke-width: 4; }
.sfc-map-panel svg circle:not(.sfc-map-node) { fill: var(--sfc-magenta); filter: drop-shadow(0 0 9px var(--sfc-magenta)); }
.sfc-map-label { position: absolute; z-index: 2; width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid var(--sfc-line); background: var(--sfc-night); font-size: 10px; font-weight: 900; }
.sfc-map-a { left: 19%; top: 47%; }.sfc-map-core { left: calc(50% - 25px); top: calc(50% - 16px); width: 50px; color: var(--sfc-gold); }.sfc-map-b { right: 19%; top: 47%; }
.sfc-map-scan { position: absolute; left: 0; right: 0; top: 15%; height: 2px; background: var(--sfc-cyan); box-shadow: 0 0 14px 2px var(--sfc-cyan); opacity: .55; animation: sfc-scan 4.8s linear infinite; }
@keyframes sfc-scan { to { top: 86%; } }
.sfc-arena-copy { padding: clamp(37px, 4.5vw, 70px); display: flex; flex-direction: column; justify-content: center; background: linear-gradient(140deg, rgba(255,60,166,.07), transparent); }
.sfc-arena-copy h3 { margin: 16px 0; font-family: var(--sfc-display); font-size: clamp(44px, 5vw, 72px); font-style: italic; line-height: .9; text-transform: uppercase; }
.sfc-arena-copy > p:not(.sfc-kicker) { color: var(--sfc-muted); }
.sfc-arena-copy ul { margin: 23px 0 0; padding: 0; border-top: 1px solid var(--sfc-line); list-style: none; }
.sfc-arena-copy li { padding: 14px 0; border-bottom: 1px solid var(--sfc-line); display: flex; gap: 14px; }
.sfc-arena-copy li > span { color: var(--sfc-magenta); font-size: 11px; font-weight: 900; }
.sfc-arena-copy li strong, .sfc-arena-copy li small { display: block; }
.sfc-arena-copy li strong { font-size: 13px; }.sfc-arena-copy li small { margin-top: 2px; color: var(--sfc-muted); font-size: 12px; }
.sfc-arena-strip { margin-top: 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.sfc-mini-arena { position: relative; min-height: 300px; padding: clamp(28px, 3vw, 46px); border: 1px solid var(--sfc-line); overflow: hidden; background: var(--sfc-panel); }
.sfc-mini-arena > span { color: var(--sfc-muted); font-size: 11px; font-weight: 900; letter-spacing: .13em; }
.sfc-mini-arena h3 { position: relative; z-index: 2; margin: 85px 0 6px; font-family: var(--sfc-display); font-size: clamp(31px, 3vw, 44px); font-style: italic; text-transform: uppercase; }
.sfc-mini-arena p { position: relative; z-index: 2; max-width: 350px; margin: 0; color: var(--sfc-muted); }
.sfc-mini-visual { position: absolute; right: 6%; top: 8%; width: 42%; height: 82%; opacity: .65; }
.sfc-echo i { position: absolute; inset: 12% 20%; border: 2px solid var(--sfc-magenta); transform: rotate(45deg); }
.sfc-echo i:nth-child(2) { inset: 23% 31%; }.sfc-echo i:nth-child(3) { inset: 34% 42%; background: var(--sfc-gold); }
.sfc-corona i { position: absolute; left: 50%; top: 50%; width: 110px; height: 110px; border: 3px solid var(--sfc-cyan); border-radius: 50%; transform: translate(-50%,-50%); box-shadow: 0 0 32px rgba(34,231,255,.45); }
.sfc-corona i:nth-child(2) { width: 190px; height: 65px; transform: translate(-50%,-50%) rotate(35deg); }.sfc-corona i:nth-child(3) { width: 210px; height: 70px; transform: translate(-50%,-50%) rotate(-35deg); }

.sfc-modes { position: relative; }
.sfc-mode-stack { border-top: 1px solid var(--sfc-line); }
.sfc-mode-card { min-height: 195px; padding: clamp(27px, 3.5vw, 48px); border-bottom: 1px solid var(--sfc-line); display: grid; grid-template-columns: 80px minmax(0, 1fr) 190px; gap: clamp(22px, 4vw, 65px); align-items: center; background: rgba(17,16,68,.38); transition: background .25s ease, transform .25s ease; }
.sfc-mode-card:hover { background: var(--sfc-panel); transform: translateX(9px); }
.sfc-mode-featured { border-left: 4px solid var(--sfc-magenta); background: linear-gradient(90deg, rgba(255,60,166,.13), rgba(17,16,68,.35)); }
.sfc-mode-index { color: var(--sfc-magenta); font-family: var(--sfc-display); font-size: 39px; font-style: italic; }
.sfc-mode-card > div:nth-child(2) > p:first-child { margin: 0; color: var(--sfc-cyan); font-size: 10px; font-weight: 900; letter-spacing: .16em; }
.sfc-mode-card h3 { display: inline-block; margin: 6px 30px 6px 0; font-family: var(--sfc-display); font-size: clamp(34px, 4vw, 58px); font-style: italic; line-height: 1; text-transform: uppercase; }
.sfc-mode-card > div:nth-child(2) > p:last-child { max-width: 720px; margin: 0; color: var(--sfc-muted); }
.sfc-mode-meta { display: grid; gap: 12px; text-align: right; font-size: 10px; letter-spacing: .1em; }
.sfc-mode-meta span { color: var(--sfc-muted); }.sfc-mode-meta strong { color: var(--sfc-gold); }

.sfc-season { display: grid; grid-template-columns: minmax(330px, .72fr) minmax(500px, 1.28fr); gap: clamp(55px, 8vw, 120px); align-items: center; background: linear-gradient(130deg, rgba(143,117,255,.15), transparent 45%), var(--sfc-night-deep); }
.sfc-season-copy > p:not(.sfc-section-index, .sfc-kicker) { max-width: 630px; color: var(--sfc-muted); font-size: 17px; }
.sfc-season-copy .sfc-kicker { margin-top: 33px; }
.sfc-season h2 { margin-bottom: 26px; }
.sfc-season-note { margin-top: 38px; padding: 19px; border-left: 3px solid var(--sfc-gold); background: rgba(255,202,89,.07); }
.sfc-season-note strong, .sfc-season-note span { display: block; }.sfc-season-note strong { color: var(--sfc-gold); font-size: 10px; letter-spacing: .13em; }.sfc-season-note span { margin-top: 6px; color: var(--sfc-muted); font-size: 13px; }
.sfc-season-path { position: relative; padding-left: 42px; }
.sfc-season-path article { position: relative; z-index: 2; min-height: 106px; padding: 20px 22px; border: 1px solid var(--sfc-line); display: grid; grid-template-columns: 50px 1fr auto; align-items: center; gap: 20px; background: var(--sfc-panel); transform: skewX(-4deg); }
.sfc-season-path article + article { margin-top: 16px; }
.sfc-season-path article > * { transform: skewX(4deg); }
.sfc-season-path article > span { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--sfc-cyan); color: var(--sfc-cyan); font-weight: 900; }
.sfc-season-path p { margin: 0; color: var(--sfc-muted); font-size: 10px; font-weight: 900; letter-spacing: .14em; }.sfc-season-path strong { display: block; margin-top: 3px; font-size: 16px; }.sfc-season-path article > b { color: var(--sfc-gold); font-size: 11px; letter-spacing: .08em; }
.sfc-season-path .sfc-path-final { border-color: var(--sfc-magenta); background: linear-gradient(110deg, #591243, var(--sfc-panel)); box-shadow: 8px 8px 0 rgba(255,202,89,.6); }
.sfc-season-path .sfc-path-final > span { color: var(--sfc-night); border: 0; background: var(--sfc-gold); font-size: 21px; }
.sfc-path-line { position: absolute; z-index: 1; left: 13px; top: 35px; bottom: 35px; width: 2px; background: var(--sfc-line); }.sfc-path-line i { position: absolute; top: 0; left: -4px; width: 10px; height: 55%; background: var(--sfc-magenta); box-shadow: 0 0 15px var(--sfc-magenta); }

.sfc-play { position: relative; min-height: 570px; padding: clamp(90px, 10vw, 150px) max(var(--sfc-pad), calc((100vw - var(--sfc-max)) / 2 + var(--sfc-pad))); display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 60px; color: var(--sfc-night); background: linear-gradient(118deg, var(--sfc-magenta) 0 56%, var(--sfc-gold) 56%); overflow: hidden; }
.sfc-play::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(9,7,42,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(9,7,42,.09) 1px, transparent 1px); background-size: 44px 44px; transform: skewX(-9deg) scale(1.2); }
.sfc-play-copy { position: relative; z-index: 2; max-width: 920px; }
.sfc-play .sfc-kicker { color: var(--sfc-night); }
.sfc-play h2 { margin: 20px 0; font-family: var(--sfc-display); font-size: clamp(55px, 7.8vw, 112px); font-style: italic; line-height: .82; letter-spacing: -.065em; text-transform: uppercase; }
.sfc-play-copy > p:not(.sfc-kicker) { max-width: 650px; font-size: 18px; font-weight: 650; }
.sfc-play .sfc-button { margin-top: 23px; }
.sfc-play-flare { position: absolute; right: 15%; top: -160px; width: 330px; height: 900px; border: 38px solid rgba(255,255,255,.23); transform: rotate(29deg); }
.sfc-play-badge { position: relative; z-index: 2; width: 220px; height: 220px; border: 2px solid var(--sfc-night); border-radius: 50%; display: grid; place-content: center; text-align: center; transform: rotate(8deg); }
.sfc-play-badge::before, .sfc-play-badge::after { content: ""; position: absolute; inset: 13px; border: 1px dashed var(--sfc-night); border-radius: 50%; }.sfc-play-badge::after { inset: -14px; border-style: solid; clip-path: inset(0 35%); }
.sfc-play-badge span { font-size: 10px; font-weight: 900; letter-spacing: .17em; }.sfc-play-badge strong { font-family: var(--sfc-display); font-size: 78px; font-style: italic; line-height: .95; }

.sfc-faq { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(55px, 9vw, 140px); }
.sfc-faq-heading .sfc-kicker { margin-top: 35px; }.sfc-faq-heading h2 { margin: 17px 0 24px; }.sfc-faq-heading > p:last-child { max-width: 500px; color: var(--sfc-muted); }
.sfc-faq-list { border-top: 1px solid var(--sfc-line); }
.sfc-faq-item { border-bottom: 1px solid var(--sfc-line); }
.sfc-faq-item h3 { margin: 0; }
.sfc-faq-item button { width: 100%; padding: 27px 2px; border: 0; display: grid; grid-template-columns: 1fr 26px; gap: 25px; align-items: center; text-align: left; background: transparent; cursor: pointer; font-size: clamp(17px, 1.7vw, 23px); font-weight: 750; }
.sfc-faq-item button i { position: relative; width: 22px; height: 22px; }
.sfc-faq-item button i::before, .sfc-faq-item button i::after { content: ""; position: absolute; left: 2px; top: 10px; width: 18px; height: 2px; background: var(--sfc-cyan); transition: transform .2s ease; }
.sfc-faq-item button i::after { transform: rotate(90deg); }.sfc-faq-item button[aria-expanded="true"] i::after { transform: rotate(0); }
.sfc-faq-item div { padding: 0 45px 28px 2px; color: var(--sfc-muted); }.sfc-faq-item div p { max-width: 720px; margin: 0; }

.sfc-footer { padding: 70px max(var(--sfc-pad), calc((100vw - var(--sfc-max)) / 2 + var(--sfc-pad))) 28px; border-top: 1px solid var(--sfc-line); display: grid; grid-template-columns: 1.15fr .5fr .65fr; gap: clamp(40px, 8vw, 120px); background: var(--sfc-night-deep); }
.sfc-footer-brand > p { max-width: 430px; margin: 20px 0 0; color: var(--sfc-muted); }
.sfc-footer-nav, .sfc-footer-status { display: grid; align-content: start; gap: 9px; }
.sfc-footer-nav > p, .sfc-footer-status > p { margin: 0 0 10px; color: var(--sfc-magenta); font-size: 10px; font-weight: 900; letter-spacing: .16em; }
.sfc-footer-nav a { width: max-content; color: var(--sfc-muted); }.sfc-footer-nav a:hover { color: var(--sfc-cyan); }
.sfc-footer-status > span { display: flex; align-items: center; gap: 8px; color: var(--sfc-muted); font-size: 13px; }.sfc-footer-status > span i { width: 8px; height: 8px; border-radius: 50%; background: var(--sfc-cyan); box-shadow: 0 0 9px var(--sfc-cyan); }
.sfc-footer-status button { width: max-content; margin-top: 15px; padding: 5px 0; border: 0; border-bottom: 1px solid var(--sfc-magenta); background: transparent; cursor: pointer; font-weight: 800; }
.sfc-footer-bottom { grid-column: 1 / -1; margin-top: 45px; padding-top: 23px; border-top: 1px solid var(--sfc-line); display: flex; justify-content: space-between; gap: 25px; color: #777292; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.sfc-js .sfc-reveal { opacity: 0; transform: translateY(30px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.72,.22,1); }
.sfc-js .sfc-reveal.is-visible { opacity: 1; transform: none; }

.sfc-dialog {
    width: min(1060px, calc(100% - 34px));
    max-height: calc(100dvh - 34px);
    padding: 0;
    border: 1px solid rgba(34,231,255,.4);
    color: var(--sfc-white);
    background: var(--sfc-night);
    box-shadow: 0 32px 100px rgba(0,0,0,.75);
    overflow: auto;
}
.sfc-dialog::backdrop { background: rgba(3,2,17,.83); backdrop-filter: blur(7px); }
.sfc-dialog-shell { min-height: 620px; display: grid; grid-template-columns: .82fr 1.18fr; }
.sfc-dialog-aside { position: relative; padding: clamp(34px, 5vw, 66px); background: linear-gradient(145deg, rgba(255,60,166,.85), rgba(92,19,95,.93)), var(--sfc-magenta-dark); overflow: hidden; }
.sfc-dialog-aside::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px); background-size: 33px 33px; transform: skewX(-11deg) scale(1.2); }
.sfc-dialog-aside > * { position: relative; z-index: 2; }.sfc-dialog-aside .sfc-kicker { color: var(--sfc-gold); }.sfc-dialog-aside h2 { margin: 20px 0 43px; font-family: var(--sfc-display); font-size: clamp(35px, 4vw, 53px); font-style: italic; line-height: .94; text-transform: uppercase; }
.sfc-dialog-aside ol { margin: 0; padding: 0; display: grid; gap: 17px; list-style: none; }.sfc-dialog-aside li { display: grid; grid-template-columns: 33px 1fr; gap: 12px; align-items: start; }.sfc-dialog-aside li span { color: var(--sfc-gold); font-size: 11px; font-weight: 900; }.sfc-dialog-aside li p { margin: 0; font-size: 13px; }
.sfc-dialog-sigil { position: absolute; right: -55px; bottom: -55px; width: 190px; height: 190px; border: 2px solid rgba(255,255,255,.4); border-radius: 50%; display: grid; place-items: center; }.sfc-dialog-sigil i { position: absolute; inset: 18px; border: 1px dashed rgba(255,255,255,.65); border-radius: 50%; }.sfc-dialog-sigil span { color: var(--sfc-gold); font-size: 45px; }
.sfc-dialog-main { position: relative; padding: clamp(40px, 6vw, 78px); }
.sfc-dialog-close { position: absolute; top: 22px; right: 22px; width: 43px; height: 43px; border: 1px solid var(--sfc-line); background: transparent; cursor: pointer; }.sfc-dialog-close span::before, .sfc-dialog-close span::after { content: ""; position: absolute; top: 20px; left: 11px; width: 20px; height: 2px; background: var(--sfc-white); transform: rotate(45deg); }.sfc-dialog-close span::after { transform: rotate(-45deg); }
.sfc-dialog-main > h2 { margin: 22px 0 13px; font-family: var(--sfc-display); font-size: clamp(38px, 5vw, 62px); font-style: italic; line-height: .92; text-transform: uppercase; }.sfc-dialog-main > p:not(.sfc-overline) { max-width: 540px; margin: 0; color: var(--sfc-muted); }
.sfc-register-form { margin-top: 34px; display: grid; gap: 21px; }
.sfc-field label { display: block; margin-bottom: 7px; font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.sfc-field input { width: 100%; min-height: 53px; padding: 13px 15px; border: 1px solid var(--sfc-line); border-radius: 0; color: var(--sfc-white); background: rgba(255,255,255,.045); outline: none; transition: border-color .2s ease, box-shadow .2s ease; }.sfc-field input:focus { border-color: var(--sfc-cyan); box-shadow: 4px 4px 0 rgba(34,231,255,.25); }.sfc-field input[aria-invalid="true"] { border-color: var(--sfc-magenta); }.sfc-field input::placeholder { color: #777292; }
.sfc-field-error { min-height: 19px; margin-top: 4px; display: block; color: #ff82c3; font-size: 12px; }
.sfc-form-note { margin: -3px 0 0; color: var(--sfc-muted); font-size: 12px; }
.sfc-register-form > .sfc-button { justify-self: start; }
.sfc-form-status { padding: 13px 15px; border: 1px solid var(--sfc-line); color: var(--sfc-muted); background: rgba(255,255,255,.04); font-size: 13px; }.sfc-form-status.is-success { color: #bbfbff; border-color: rgba(34,231,255,.55); background: rgba(34,231,255,.08); }.sfc-form-status.is-error { color: #ffd2e9; border-color: rgba(255,60,166,.65); background: rgba(255,60,166,.08); }

@media (max-width: 1120px) {
    .sfc-desktop-nav { display: none; }
    .sfc-header-actions { margin-left: auto; }
    .sfc-menu-button { display: grid; }
    .sfc-hero { grid-template-columns: minmax(0, .95fr) minmax(430px, 1.05fr); }
    .sfc-section-heading { grid-template-columns: 125px 1fr; }
    .sfc-section-heading > p:last-child { grid-column: 2; margin-top: 0; }
    .sfc-champion-card { min-height: 620px; }
    .sfc-season { grid-template-columns: 1fr; }
    .sfc-season-copy { max-width: 840px; }
}

@media (max-width: 900px) {
    .sfc-hero { min-height: 0; grid-template-columns: 1fr; }
    .sfc-hero-copy { padding-right: 8%; }
    .sfc-arena-stage { min-height: 680px; }
    .sfc-ticker { overflow: hidden; justify-content: flex-start; }
    .sfc-section-heading { grid-template-columns: 1fr; gap: 18px; }
    .sfc-section-heading > p:last-child { grid-column: auto; margin-top: 5px; }
    .sfc-champion-grid { grid-template-columns: 1fr 1fr; }
    .sfc-champion-card { min-height: 650px; }
    .sfc-card-orbit { transform: none; grid-column: 1 / -1; width: calc(50% - 6px); justify-self: center; }
    .sfc-arena-showcase { grid-template-columns: 1fr; }
    .sfc-map-panel { min-height: 510px; }
    .sfc-mode-card { grid-template-columns: 60px 1fr; }
    .sfc-mode-meta { grid-column: 2; grid-row: 2; display: flex; text-align: left; }
    .sfc-faq { grid-template-columns: 1fr; }
    .sfc-faq-heading { max-width: 760px; }
    .sfc-footer { grid-template-columns: 1fr 1fr; }.sfc-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
    :root { --sfc-pad: 20px; }
    html { scroll-padding-top: 70px; }
    .sfc-nav-shell { min-height: 68px; gap: 9px; }
    .sfc-brand { gap: 7px; font-size: 11px; }.sfc-brand-mark { width: 31px; height: 31px; }
    .sfc-language { margin-left: auto; }.sfc-language button { min-width: 31px; min-height: 27px; }
    .sfc-desktop-cta { display: none; }
    .sfc-menu-button { width: 40px; height: 38px; }
    .sfc-hero { padding-top: 55px; gap: 55px; }
    .sfc-hero-copy { padding: 0; }
    .sfc-hero h1 { font-size: clamp(52px, 15vw, 76px); }
    .sfc-hero h1 em { -webkit-text-stroke-width: 1.5px; }
    .sfc-hero-actions { align-items: flex-start; flex-direction: column; gap: 24px; }
    .sfc-hero-stats { gap: 10px; }.sfc-hero-stats dt { font-size: 9px; }.sfc-hero-stats dd { font-size: 26px; }
    .sfc-arena-stage { min-height: 490px; clip-path: polygon(8% 0, 100% 0, 93% 100%, 0 92%); }
    .sfc-stage-hud { font-size: 8px; }.sfc-champion-chip { min-width: 140px; grid-template-columns: 29px 1fr; }.sfc-champion-chip > span { width: 26px; height: 26px; }.sfc-champion-chip small { display: none; }.sfc-chip-alpha { left: 4%; }.sfc-chip-omega { right: 2%; }
    .sfc-ticker { padding-block: 14px; }
    .sfc-section { padding-block: 86px; }
    .sfc-section-heading { margin-bottom: 46px; }
    .sfc-section-heading h2, .sfc-season h2, .sfc-faq h2 { font-size: clamp(40px, 12vw, 58px); }
    .sfc-champion-grid { grid-template-columns: 1fr; gap: 16px; }
    .sfc-champion-card, .sfc-card-nyra, .sfc-card-orbit { width: 100%; min-height: 620px; transform: none; }
    .sfc-card-orbit { grid-column: auto; }
    .sfc-card-copy > p:nth-of-type(2) { min-height: auto; }
    .sfc-map-panel { min-height: 380px; }.sfc-arena-copy { padding: 33px 25px; }
    .sfc-arena-strip { grid-template-columns: 1fr; }.sfc-mini-arena { min-height: 275px; }
    .sfc-mode-card { padding: 28px 18px; grid-template-columns: 42px 1fr; gap: 17px; }.sfc-mode-index { font-size: 27px; }.sfc-mode-card h3 { font-size: 35px; }.sfc-mode-meta { flex-wrap: wrap; gap: 9px 18px; }
    .sfc-season { gap: 48px; }.sfc-season-path { padding-left: 0; }.sfc-path-line { display: none; }.sfc-season-path article { min-height: 95px; padding: 16px 14px; grid-template-columns: 40px 1fr; gap: 11px; }.sfc-season-path article > span { width: 35px; height: 35px; }.sfc-season-path article > b { grid-column: 2; }
    .sfc-play { min-height: 620px; grid-template-columns: 1fr; align-content: center; gap: 40px; background: linear-gradient(118deg, var(--sfc-magenta) 0 72%, var(--sfc-gold) 72%); }.sfc-play h2 { font-size: clamp(53px, 16vw, 78px); }.sfc-play-badge { width: 135px; height: 135px; justify-self: end; }.sfc-play-badge strong { font-size: 45px; }
    .sfc-faq-item button { padding-block: 23px; }
    .sfc-footer { grid-template-columns: 1fr; gap: 42px; }.sfc-footer-brand { grid-column: auto; }.sfc-footer-bottom { align-items: flex-start; flex-direction: column; }
    .sfc-dialog { width: calc(100% - 16px); max-height: calc(100dvh - 16px); }
    .sfc-dialog-shell { grid-template-columns: 1fr; }.sfc-dialog-aside { min-height: 360px; }.sfc-dialog-aside h2 { padding-right: 20px; }.sfc-dialog-main { padding: 58px 24px 35px; }.sfc-dialog-close { top: 11px; right: 11px; }.sfc-register-form > .sfc-button { width: 100%; }
}

@media (max-width: 390px) {
    .sfc-brand > span { max-width: 92px; line-height: 1; }
    .sfc-language button { min-width: 28px; padding-inline: 4px; }
    .sfc-hero h1 { font-size: 49px; }
    .sfc-arena-stage { min-height: 430px; }
    .sfc-champion-card { min-height: 575px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
    .sfc-js .sfc-reveal { opacity: 1; transform: none; }
}
