@font-face {
  font-family: "Storm Gust";
  src:
    url("assets/Storm Gust.ttf") format("truetype"),
    local("Storm Gust"),
    local("StormGust"),
    local("Storm Gust Brush");
  font-display: swap;
}

@font-face {
  font-family: "Emotios";
  src:
    url("assets/Emotios.otf") format("opentype"),
    local("Emotios"),
    local("Emotions");
  font-display: swap;
}

@font-face {
  font-family: "Road Rage";
  src:
    url("assets/Road_Rage.otf") format("opentype"),
    local("Road Rage"),
    local("RoadRage");
  font-display: swap;
}

:root {
  --bg: #02040a;
  --panel: #07101b;
  --line: rgba(255,255,255,.12);
  --blue: #0757ff;
  --blue2: #008cff;
  --blue-soft: rgba(7,87,255,.18);
  --text: #f8fbff;
  --muted: #a4aebc;
  --cond: "Bahnschrift Condensed", "Arial Narrow", Impact, sans-serif;
  --brush: "Road Rage", "Emotios", "Storm Gust", "Segoe Print", cursive;
  --body: Inter, "Segoe UI", Arial, sans-serif;
}
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(7,87,255,.18), transparent 34rem),
    radial-gradient(circle at 88% 34%, rgba(0,140,255,.1), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: var(--body);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.5), transparent 76%);
}
body.js-enabled .reveal {
  opacity: 1;
  transform: none;
  transition: transform .25s ease, filter .25s ease;
}
body.js-enabled .reveal.is-visible { opacity: 1; transform: none; }
a { color: inherit; text-decoration: none; }
.auth-locked {
  height: 100vh;
  overflow: hidden;
}
.auth-locked > :not(.auth-gate) {
  visibility: hidden;
  pointer-events: none;
}
.auth-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  align-items: center;
  justify-items: start;
  padding: clamp(22px, 6vw, 78px);
  background:
    linear-gradient(90deg, rgba(0,0,0,.95) 0%, rgba(1,5,13,.9) 43%, rgba(1,5,13,.5) 70%, rgba(0,0,0,.86) 100%),
    radial-gradient(circle at 58% 12%, rgba(7,87,255,.34), transparent 30rem),
    url("assets/pr0xy.png") 78% center / cover no-repeat,
    #02040a;
}
.auth-gate[hidden] {
  display: none;
}
.admin-locked:not(.auth-locked) {
  height: 100vh;
  overflow: hidden;
}
.admin-locked:not(.auth-locked) > :not(.auth-gate):not(.admin-vault) {
  visibility: hidden;
  pointer-events: none;
}
.admin-vault {
  position: fixed;
  inset: 0;
  z-index: 950;
  display: grid;
  align-items: center;
  justify-items: start;
  padding: clamp(22px, 6vw, 78px);
  background:
    linear-gradient(90deg, rgba(0,0,0,.97) 0%, rgba(1,5,13,.92) 44%, rgba(1,5,13,.56) 72%, rgba(0,0,0,.88) 100%),
    radial-gradient(circle at 62% 10%, rgba(7,87,255,.3), transparent 30rem),
    url("assets/pr0xy_city.png") right center / contain no-repeat,
    #02040a;
}
.admin-vault[hidden] {
  display: none;
}
.admin-vault-card h1 span {
  display: block;
  width: fit-content;
  margin-top: -10px;
  color: var(--blue);
  font-family: var(--brush);
  font-size: clamp(58px, 8vw, 98px);
  font-weight: 400;
  line-height: .8;
  text-transform: uppercase;
  transform: rotate(-2deg) skew(-8deg);
  text-shadow: 0 0 22px rgba(7,87,255,.45);
}
.auth-card {
  width: min(620px, 100%);
  padding-top: 24px;
}
.auth-logo {
  margin-bottom: clamp(48px, 8vh, 84px);
}
.auth-card h1 {
  max-width: 560px;
  margin-bottom: 28px;
  font-size: clamp(78px, 10vw, 132px);
}
.auth-card h1 span {
  display: block;
  width: fit-content;
  margin-top: -10px;
  color: var(--blue);
  font-family: var(--brush);
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 400;
  line-height: .8;
  text-transform: uppercase;
  transform: rotate(-2deg) skew(-8deg);
  text-shadow: 0 0 22px rgba(7,87,255,.45);
}
.auth-card h1 span em {
  position: relative;
  display: inline-block;
  font-style: inherit;
}
.auth-card h1 span em::after {
  content: "";
  display: block;
  position: absolute;
  left: -8%;
  right: -5%;
  bottom: -9px;
  height: 6px;
  background: var(--blue);
  clip-path: polygon(0 42%, 76% 24%, 100% 45%, 95% 78%, 10% 100%);
  transform: rotate(-2deg) skew(-16deg);
}
.auth-card label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
}
.auth-row {
  display: flex;
  gap: 12px;
  width: min(520px, 100%);
}
.auth-row input {
  min-width: 0;
  flex: 1;
  height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.18);
  outline: 0;
  background: rgba(4,10,20,.78);
  color: var(--text);
  font: 800 15px var(--body);
  box-shadow: inset 0 0 0 1px rgba(7,87,255,.08);
}
.auth-row input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(7,87,255,.22), inset 0 0 0 1px rgba(7,87,255,.16);
}
.auth-row .btn {
  min-width: 136px;
  border-color: rgba(7,87,255,.95);
}
.auth-error {
  min-height: 22px;
  margin: 14px 0 0;
  color: #ff5369;
  font-size: 13px;
  font-weight: 800;
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: 92px;
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(22px, 5vw, 68px);
  background: linear-gradient(180deg, rgba(0,0,0,.84), rgba(0,0,0,0));
  transition: background .25s ease, border-color .25s ease;
}
.site-header.is-scrolled { background: rgba(2,4,10,.9); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.logo { width: fit-content; line-height: .72; text-transform: uppercase; transform: skew(-9deg); }
.logo span { display: block; font: 900 56px/0.75 var(--cond); letter-spacing: 1px; font-style: italic; }
.logo small { display: block; margin-left: 6px; font-size: 10px; font-weight: 900; letter-spacing: 4px; }
.nav { display: flex; justify-content: center; gap: clamp(14px, 2vw, 28px); }
.nav a, .join, .btn, .link-arrow, .partners span, .footer h3 {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .7px;
}
.nav a { color: #d8dde6; transition: color .18s, text-shadow .18s; }
.nav a:hover, .nav a.is-active { color: #fff; text-shadow: 0 0 18px var(--blue2); }
.header-actions { display: flex; align-items: center; gap: 24px; }
.join, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 25px;
  border: 1px solid var(--blue);
  background-image: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,0));
  transition: transform .18s, box-shadow .18s, background .18s;
}
.join:hover, .btn:hover { transform: translateY(-3px); box-shadow: 0 0 30px rgba(7,87,255,.42); }
.menu { display: none; gap: 6px; padding: 8px; border: 0; background: transparent; }
.menu span { display: block; width: 30px; height: 2px; background: var(--blue2); }
.primary { background: var(--blue); color: #fff; }
.outline { background: rgba(2,6,14,.55); }
.blue { color: #fff; }

.hero {
  position: relative;
  min-height: 760px;
  height: 100vh;
  border-bottom: 1px solid var(--line);
  background: #000;
  isolation: isolate;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(7,87,255,.16), transparent 26rem),
    linear-gradient(90deg, #000 0%, #000 36%, rgba(0,0,0,.24) 66%, rgba(0,0,0,.56) 100%);
}
.hero-img, .hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-img {
  left: 0;
  right: auto;
  width: 118%;
  max-width: none;
  object-fit: contain;
  object-position: right center;
  transform: none;
  transform-origin: center;
  z-index: 1;
  filter: brightness(.76) saturate(.92) contrast(1.1);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 27%, rgba(0,0,0,.18) 37%, rgba(0,0,0,.78) 52%, #000 63%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, transparent 27%, rgba(0,0,0,.18) 37%, rgba(0,0,0,.78) 52%, #000 63%, #000 100%);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
.hero-shade {
  z-index: 2;
  background:
    linear-gradient(90deg, #000 0%, #000 30%, rgba(0,0,0,.68) 42%, rgba(0,0,0,.18) 62%, rgba(0,0,0,.3) 100%),
    radial-gradient(circle at 76% 22%, rgba(7,87,255,.22), transparent 29rem),
    linear-gradient(135deg, rgba(7,87,255,.05), transparent 43%, rgba(0,140,255,.07)),
    linear-gradient(0deg, rgba(2,4,10,1) 0%, rgba(2,4,10,0) 34%);
}
.hero-content {
  position: relative;
  z-index: 3;
  width: min(1220px, calc(100% - 44px));
  margin: 0 auto;
  padding-top: 24vh;
}
.kicker { margin: 0 0 18px; color: var(--blue); font-size: 14px; font-weight: 900; text-transform: uppercase; }
h1, h2 { margin: 0; font-family: var(--cond); text-transform: uppercase; letter-spacing: 0; }
h1 { max-width: 620px; font-size: clamp(76px, 8.7vw, 132px); line-height: .88; font-style: italic; }
.brush-line, h2 span {
  display: block;
  margin-top: -6px;
  color: var(--blue);
  font-family: var(--brush);
  line-height: .82;
  text-transform: uppercase;
  transform: rotate(-2deg);
  transform-origin: left center;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  -webkit-text-stroke: 0;
  text-shadow: 3px 3px 0 #00145a, 0 0 18px rgba(7,87,255,.58);
  filter: none;
}
.brush-line {
  width: fit-content;
  max-width: min(610px, 92vw);
  font-size: clamp(42px, 5.35vw, 78px);
  white-space: nowrap;
}
h2 span {
  width: fit-content;
  max-width: 100%;
  font-size: clamp(38px, 4.1vw, 64px);
}
.brush-line::after, h2 span::after {
  content: "";
  display: block;
  width: min(460px, 92%);
  height: 8px;
  margin-top: 5px;
  background: var(--blue);
  clip-path: polygon(0 40%, 8% 14%, 19% 52%, 31% 24%, 47% 58%, 63% 20%, 77% 54%, 91% 24%, 100% 40%, 98% 73%, 84% 64%, 69% 88%, 52% 66%, 33% 88%, 15% 68%, 0 82%);
  transform: skewX(-24deg) rotate(-1deg);
  box-shadow: none;
}
.intro { margin: 34px 0 26px; color: #c2c9d3; font-size: 14px; font-weight: 700; line-height: 1.8; text-transform: uppercase; }
.actions { display: flex; flex-wrap: wrap; gap: 18px; }
.play { display: grid; place-items: center; width: 22px; height: 22px; border: 1px solid #fff; border-radius: 50%; font-size: 9px; }
.side-word, .scroll-word {
  position: absolute;
  z-index: 3;
  right: 26px;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  letter-spacing: 7px;
  color: #dce4ee;
  font-size: 12px;
  font-weight: 800;
}
.side-word { top: 28%; }
.scroll-word { bottom: 9%; }
.scroll-word::after { content: ""; display: inline-block; width: 1px; height: 64px; margin-top: 16px; background: #fff; }

section { border-bottom: 1px solid var(--line); }
.anchor {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
}
.story {
  position: relative;
  min-height: 320px;
  display: grid;
  grid-template-columns: minmax(260px, 330px) minmax(280px, 430px) minmax(320px, 1fr);
  gap: 46px;
  align-items: center;
  padding: 58px clamp(22px, 7vw, 92px);
  background:
    radial-gradient(circle at 8% 12%, rgba(7,87,255,.14), transparent 24rem),
    linear-gradient(90deg, #02040a 0 45%, rgba(3,10,20,.82)),
    #02040a;
}
.story h2, .community h2, .shop h2 { font-size: clamp(54px, 6.2vw, 84px); line-height: .9; font-style: italic; }
.story-title, .community-copy, .shop-copy { min-width: 0; position: relative; z-index: 2; }
.story-title h2, .community-copy h2, .shop-copy h2 { max-width: 390px; }
.story-copy p, .community p, .shop p { color: var(--muted); line-height: 1.75; }
.link-arrow { display: inline-flex; gap: 14px; margin-top: 18px; padding-bottom: 8px; color: #fff; border-bottom: 1px solid var(--blue); }
.link-arrow span { color: var(--blue); }
.story-visual {
  position: relative;
  min-height: 278px;
  align-self: stretch;
  background:
    linear-gradient(90deg, rgba(2,4,10,.03), rgba(2,4,10,.35)),
    url("assets/story-team.png") 50% 22% / cover;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 30px 90px rgba(0,0,0,.34);
  overflow: hidden;
}
.story-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.78));
}
.story-visual span {
  position: absolute;
  right: 18px;
  bottom: 15px;
  z-index: 1;
  font: italic 30px var(--cond);
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
}
.game-links {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 2px;
}
.game-logo {
  position: relative;
  min-width: 0;
  min-height: 164px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(110,180,255,.14);
  background: rgba(5,12,24,.9);
  box-shadow: 0 18px 48px rgba(0,0,0,.28), inset 0 0 0 1px rgba(7,87,255,.05);
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.game-logo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: var(--game-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .58;
  filter: grayscale(.12) brightness(.7) contrast(1.2) saturate(1.08);
  transform: scale(1.02);
  transition: opacity .2s ease, transform .2s ease, filter .2s ease;
}
.game-logo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 44%, rgba(7,87,255,.22), transparent 58%),
    linear-gradient(180deg, rgba(2,4,10,.18) 0%, rgba(2,4,10,.62) 72%, rgba(2,4,10,.9) 100%),
    linear-gradient(90deg, rgba(0,0,0,.42), transparent 35%, rgba(0,0,0,.5));
  opacity: .86;
}
.game-mark {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(78%, 172px);
  height: 96px;
  place-items: center;
  color: #fff;
  font: italic 900 24px/.8 var(--cond);
  letter-spacing: .5px;
  text-transform: uppercase;
  background: transparent;
  border: 0;
  clip-path: none;
  box-shadow: none;
  overflow: visible;
  filter: drop-shadow(0 0 18px rgba(7,87,255,.68)) drop-shadow(0 10px 22px rgba(0,0,0,.72));
}
.game-mark img {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(1.22) contrast(1.1) saturate(1.06);
  transition: transform .2s ease;
}
.game-logo:hover {
  transform: translateY(-6px);
  border-color: rgba(7,87,255,.82);
  background: rgba(5,12,24,.96);
  box-shadow: 0 24px 70px rgba(0,0,0,.38), 0 0 30px rgba(7,87,255,.18);
}
.game-logo:hover::after {
  opacity: .76;
  transform: scale(1.1);
  filter: grayscale(0) brightness(.88) contrast(1.2) saturate(1.16);
}
.game-logo:hover .game-mark {
  filter: drop-shadow(0 0 26px rgba(7,87,255,.86)) drop-shadow(0 14px 28px rgba(0,0,0,.8));
}
.game-logo:hover .game-mark img {
  transform: scale(1.12);
}
.game-lol .game-mark img { max-width: 100%; max-height: 96%; }
.game-valorant .game-mark img { max-width: 78%; max-height: 78%; }
.game-cs2 .game-mark img { max-width: 96%; max-height: 92%; }
.game-ow .game-mark img { max-width: 88%; max-height: 88%; }
.game-r6 .game-mark img { max-width: 94%; max-height: 90%; }
.game-rl .game-mark img { max-width: 96%; max-height: 92%; }
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background:
    linear-gradient(90deg, rgba(7,87,255,.08), transparent 25%, transparent 75%, rgba(7,87,255,.07)),
    #060b13;
}
.stats article {
  min-height: 118px;
  display: grid;
  grid-template-columns: 54px auto;
  grid-template-rows: 1fr 1fr;
  align-items: center;
  padding: 22px clamp(18px, 4vw, 58px);
  border-right: 1px solid rgba(7,87,255,.55);
  position: relative;
}
.stats article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: var(--blue);
  opacity: .7;
}
.stats .icon {
  grid-row: 1 / span 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--blue);
}
.stats .icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 14px rgba(7,87,255,.5));
}
.stats strong { font: italic 54px/.8 var(--cond); }
.stats small { color: #e6ebf2; font-size: 13px; font-weight: 800; text-transform: uppercase; }

.home-base {
  position: relative;
  display: grid;
  grid-template-columns: minmax(270px, 360px) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 78px);
  padding: 78px clamp(22px, 7vw, 92px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 74% 24%, rgba(7,87,255,.18), transparent 34rem),
    linear-gradient(180deg, #02040a, #050b14);
  overflow: hidden;
}
.home-base::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7,87,255,.12) 0 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.035) 0 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: .28;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 78%, transparent);
}
.home-copy {
  position: relative;
  z-index: 2;
  align-self: center;
}
.home-copy h2,
.video-copy h2,
.spotlight-copy h2 {
  max-width: 420px;
  font-size: clamp(54px, 5.8vw, 86px);
  line-height: .9;
  font-style: italic;
}
.home-copy p,
.video-copy p,
.spotlight-copy p {
  max-width: 360px;
  color: var(--muted);
  line-height: 1.75;
}
.home-gallery {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr .85fr;
  grid-template-rows: repeat(2, minmax(180px, 1fr));
  gap: 14px;
  min-height: 520px;
}
.home-shot {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  border: 1px solid rgba(255,255,255,.14);
  background: #03060c;
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(0,0,0,.34);
}
.home-shot-main { grid-row: span 2; }
.home-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.54)),
    linear-gradient(135deg, rgba(7,87,255,.18), transparent 46%);
}
.home-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.06) brightness(.86);
  transition: transform .35s ease, filter .35s ease;
}
.home-shot:hover img {
  transform: scale(1.055);
  filter: saturate(1.16) contrast(1.08) brightness(.95);
}

.creators {
  position: relative;
  min-height: 680px;
  padding: 68px clamp(22px, 7vw, 76px) 54px;
  background:
    linear-gradient(180deg, rgba(2,4,10,.95), rgba(2,4,10,.72) 45%, #02040a),
    #02040a;
  overflow: hidden;
}
.creator-hero {
  position: absolute;
  inset: 0 auto 0 0;
  width: 67%;
  background:
    linear-gradient(90deg, rgba(2,4,10,.08), rgba(2,4,10,.76) 62%, #02040a),
    url("assets/creator-bg.png") left center / cover;
  filter: contrast(1.08);
}
.creator-heading { position: relative; z-index: 1; margin-left: 58%; padding-top: 18px; }
.creator-heading h2 { font-size: clamp(54px, 6vw, 86px); line-height: .9; font-style: italic; }
.creator-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 88px;
}
.creator-cards article {
  position: relative;
  min-height: 326px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  border: 1px solid rgba(255,255,255,.18);
  background: #07101b;
  box-shadow: 0 24px 70px rgba(0,0,0,.38);
  overflow: hidden;
  transition: transform .18s, border-color .18s;
}
.creator-cards article:hover { transform: translateY(-7px); border-color: var(--blue); }
.avatar {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  opacity: .78;
  transform: scale(1.03);
  transition: transform .22s ease, filter .22s ease;
  filter: grayscale(.28) brightness(.54) contrast(1.18) blur(1.2px);
}
.creator-cards article:hover .avatar {
  transform: scale(1.08);
  filter: grayscale(.18) brightness(.62) contrast(1.2) blur(1px);
}
.creator-cards .creator-pr0xy .avatar {
  object-position: 55% 58%;
  opacity: .88;
  filter: brightness(.62) saturate(.85) contrast(1.18);
}
.creator-cards .creator-pr0xy:hover .avatar {
  filter: brightness(.74) saturate(.95) contrast(1.22);
}
.creator-cards article::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 24%;
  z-index: 2;
  height: 74px;
  border: 1px solid rgba(110,180,255,.22);
  background:
    linear-gradient(115deg, rgba(7,87,255,.52), rgba(1,6,14,.96) 32%, rgba(0,0,0,.98) 70%, rgba(7,87,255,.34)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 1px, transparent 1px 8px);
  box-shadow: 0 16px 38px rgba(0,0,0,.55), 0 0 26px rgba(7,87,255,.24);
  transform: skewX(-12deg) rotate(-2deg);
  pointer-events: none;
}
.creator-cards .creator-pr0xy::before { display: none; }
.creator-cards article::after {
  content: "";
  position: absolute;
  inset: 38% 0 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.88));
}
.creator-cards strong, .creator-cards small, .creator-cards .card-play { position: relative; z-index: 3; }
.creator-cards strong { font: italic 30px/.9 var(--cond); }
.creator-cards small { color: #dbe2ec; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.creator-cards .card-play {
  position: absolute;
  right: 12px;
  bottom: 34px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid #fff;
  border-radius: 50%;
  background: rgba(0,0,0,.45);
  color: #fff;
  font-size: 11px;
}

.news {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
  padding: 78px clamp(22px, 7vw, 92px) 84px;
  background:
    radial-gradient(circle at 84% 12%, rgba(7,87,255,.2), transparent 28rem),
    linear-gradient(180deg, #02040a 0%, #060b13 48%, #02040a 100%);
  overflow: hidden;
}
.news::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7,87,255,.14), transparent 18%, transparent 82%, rgba(7,87,255,.1)),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: auto, 100% 52px;
  opacity: .62;
}
.news-head {
  position: sticky;
  top: 118px;
  z-index: 1;
}
.news-head h2 {
  max-width: 330px;
  font-size: clamp(54px, 5.8vw, 84px);
  line-height: .9;
  font-style: italic;
}
.news-head h2 span {
  max-width: 300px;
  font-size: clamp(38px, 4vw, 62px);
}
.news-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.news-card {
  position: relative;
  min-height: 276px;
  border: 1px solid rgba(255,255,255,.14);
  background: #07101b;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,.36);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.news-card-feature {
  grid-column: span 2;
  min-height: 380px;
}
.news-card a {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.news-card img {
  display: block;
  width: 100%;
  height: 100%;
}
.news-card img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
  opacity: .72;
  transform: scale(1.02);
  transition: transform .28s ease, opacity .28s ease, filter .28s ease;
}
.news-card:nth-child(2) img { object-position: center 18%; }
.news-card:nth-child(3) img { object-position: center; }
.news-card:nth-child(4) img { object-position: center 34%; }
.news-card a::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.9)),
    linear-gradient(90deg, rgba(2,4,10,.78), transparent 64%);
}
.news-content {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 1;
}
.news-content time {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 8px;
  color: #fff;
  background: rgba(7,87,255,.78);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .7px;
}
.news-content strong {
  display: block;
  max-width: 520px;
  font: italic clamp(28px, 3.2vw, 46px)/.92 var(--cond);
  text-transform: uppercase;
}
.news-card:not(.news-card-feature) .news-content strong {
  font-size: 30px;
}
.news-content p {
  max-width: 520px;
  margin: 12px 0 0;
  color: #c7d0dc;
  font-size: 14px;
  line-height: 1.6;
}
.news-card:hover {
  transform: translateY(-8px);
  border-color: rgba(7,87,255,.82);
  box-shadow: 0 30px 88px rgba(0,0,0,.48), 0 0 30px rgba(7,87,255,.18);
}
.news-card:hover img {
  opacity: .88;
  transform: scale(1.075);
  filter: saturate(1.16) contrast(1.06);
}

.video-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 350px) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  padding: 72px clamp(22px, 7vw, 92px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 86% 12%, rgba(7,87,255,.2), transparent 30rem),
    linear-gradient(180deg, #02040a, #030812);
}
.video-frame {
  position: relative;
  min-width: 0;
  width: min(100%, 860px);
  justify-self: end;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(110,180,255,.28);
  background:
    linear-gradient(135deg, rgba(7,87,255,.14), transparent 42%),
    #03060c;
  box-shadow: 0 28px 88px rgba(0,0,0,.46), 0 0 34px rgba(7,87,255,.12);
  overflow: hidden;
}
.video-frame::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 0 42px rgba(7,87,255,.12);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.community {
  display: grid;
  grid-template-columns: minmax(300px, 390px) minmax(0, 1fr);
  gap: clamp(44px, 6vw, 92px);
  padding: 76px clamp(22px, 7vw, 92px);
  align-items: center;
  background:
    radial-gradient(circle at 88% 18%, rgba(7,87,255,.16), transparent 27rem),
    linear-gradient(180deg, #02040a, #050b14);
}
.community-copy h2 {
  max-width: 390px;
  font-size: clamp(52px, 5.2vw, 82px);
}
.community-copy h2 span {
  max-width: 360px;
  font-size: clamp(38px, 3.8vw, 58px);
  white-space: normal;
}
.community-copy p {
  max-width: 330px;
  margin: 28px 0 24px;
}
.discord {
  position: relative;
  display: block;
  width: min(100%, 780px);
  justify-self: end;
  align-self: center;
  min-width: 0;
  aspect-ratio: 1312 / 727;
  border: 1px solid rgba(110,180,255,.24);
  border-radius: 8px;
  overflow: hidden;
  background: #07101b;
  box-shadow: 0 28px 90px rgba(0,0,0,.48), 0 0 0 1px rgba(7,87,255,.1) inset;
  transform: translateY(0) scale(1);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, filter .24s ease;
}
.discord::before {
  content: "";
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: -45%;
  width: 32%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 0 18%, rgba(255,255,255,.18) 47%, rgba(7,87,255,.28) 55%, transparent 82% 100%);
  opacity: 0;
  transform: skewX(-18deg);
  transition: left .44s ease, opacity .2s ease;
}
.discord::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), transparent 22%),
    linear-gradient(0deg, rgba(2,4,10,.38), transparent 42%);
  box-shadow: inset 0 -1px 0 rgba(7,87,255,.7), inset 0 0 34px rgba(7,87,255,.12);
  opacity: .72;
  transition: opacity .24s ease, box-shadow .24s ease;
}
.discord img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .28s ease, filter .28s ease;
}
.discord:hover {
  transform: translateY(-7px) scale(1.012);
  border-color: rgba(7,87,255,.85);
  box-shadow: 0 36px 100px rgba(0,0,0,.58), 0 0 34px rgba(7,87,255,.34), 0 0 0 1px rgba(7,87,255,.3) inset;
  filter: saturate(1.08) contrast(1.04);
}
.discord:hover::before { left: 116%; opacity: 1; }
.discord:hover::after { opacity: .94; box-shadow: inset 0 -1px 0 rgba(7,87,255,.9), inset 0 0 42px rgba(7,87,255,.18); }
.discord:hover img { transform: scale(1.025); }

.shop {
  position: relative;
  display: grid;
  grid-template-columns: minmax(270px, 360px) minmax(0, 1fr);
  gap: clamp(70px, 8vw, 128px);
  align-items: end;
  padding: 82px clamp(22px, 7vw, 92px) 76px;
  background:
    linear-gradient(90deg, rgba(2,4,10,.96), rgba(2,4,10,.86) 28%, rgba(2,4,10,.54)),
    url("assets/shop-bg.png") center / cover;
  overflow: hidden;
}
.shop-copy {
  max-width: 310px;
}
.shop-copy h2 {
  max-width: 300px;
}
.shop-copy h2 span {
  max-width: 300px;
  font-size: clamp(32px, 3vw, 48px);
  white-space: nowrap;
}
.shop-copy h2 span::after {
  width: 270px;
}
.shop::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(2,4,10,.2), #02040a 108%);
}
.products {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.2vw, 30px);
  align-items: end;
}
.products article {
  position: relative;
  padding: 0 0 4px;
  text-align: center;
  border: 0;
  background: transparent;
  box-shadow: none;
  transition: transform .18s, border-color .18s, box-shadow .18s;
}
.product-card {
  display: block;
}
.products article:hover {
  transform: translateY(-9px);
  box-shadow: none;
}
.item {
  height: clamp(260px, 25vw, 390px);
  margin-bottom: 18px;
  border: 1px solid rgba(110,180,255,.16);
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.18)),
    radial-gradient(circle at 50% 20%, rgba(7,87,255,.36), transparent 36%),
    #050b14;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.42), 0 0 0 1px rgba(7,87,255,.08) inset;
}
.item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  transform: scale(1.02);
  transition: transform .22s ease, filter .22s ease;
}
.products article:hover .item img,
.product-card:hover .item img {
  transform: scale(1.09);
  filter: saturate(1.14) contrast(1.08);
}
.item::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.55));
}
.item::before {
  content: attr(data-tag);
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 5px 8px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(7,87,255,.26);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .8px;
}
.products strong { display: block; font: 20px var(--cond); text-transform: uppercase; }
.products small { font-weight: 900; color: #d6dde8; }

.partner-spotlight {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, .85fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
  padding: 82px clamp(22px, 7vw, 92px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 14% 18%, rgba(7,87,255,.2), transparent 32rem),
    linear-gradient(180deg, #030812, #02040a);
  overflow: hidden;
}
.spotlight-media {
  position: relative;
  min-height: 470px;
  border: 1px solid rgba(110,180,255,.22);
  background: #03060c;
  box-shadow: 0 28px 92px rgba(0,0,0,.48), 0 0 34px rgba(7,87,255,.12);
  overflow: hidden;
}
.spotlight-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,.04), rgba(0,0,0,.58)),
    linear-gradient(180deg, transparent, rgba(2,4,10,.5));
}
.spotlight-aivo {
  display: grid;
  place-items: center;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(7,87,255,.14) 0 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.045) 0 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(7,87,255,.32), transparent 22rem),
    linear-gradient(135deg, #050b15, #02040a 68%);
  background-size: 82px 82px, 82px 82px, auto, auto;
}
.spotlight-aivo::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(110,180,255,.2);
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(7,87,255,.18) 49% 51%, transparent 52%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.08), transparent 26rem);
  z-index: 0;
}
.spotlight-aivo::after {
  z-index: 2;
  background:
    radial-gradient(circle at 50% 50%, transparent, rgba(2,4,10,.56) 72%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(2,4,10,.42));
}
.spotlight-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.08) brightness(.96);
  transition: transform .35s ease, filter .35s ease;
}
.partner-spotlight:hover .spotlight-media img {
  transform: scale(1.045);
  filter: saturate(1.18) contrast(1.08) brightness(.94);
}
.spotlight-aivo img {
  position: relative;
  z-index: 1;
  width: min(72%, 440px);
  height: auto;
  max-height: 170px;
  object-fit: contain;
  filter: brightness(1.18) drop-shadow(0 0 22px rgba(7,87,255,.35));
}
.partner-spotlight:hover .spotlight-aivo img {
  transform: scale(1.035);
  filter: brightness(1.24) drop-shadow(0 0 30px rgba(7,87,255,.46));
}
.spotlight-aivo-shot {
  background: #02040a;
}
.spotlight-aivo-shot::after {
  display: none;
}
.spotlight-aivo-shot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.02) brightness(1);
}
.partner-spotlight:hover .spotlight-aivo-shot img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.04) brightness(1.03);
}
.spotlight-copy {
  position: relative;
  z-index: 2;
}
.spotlight-logo {
  display: block;
  width: min(250px, 70%);
  max-height: 78px;
  margin: 0 0 26px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(1.12) drop-shadow(0 0 18px rgba(7,87,255,.22));
}
.spotlight-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 28px;
}
.spotlight-points span {
  padding: 8px 10px;
  border: 1px solid rgba(110,180,255,.22);
  background: rgba(7,87,255,.1);
  color: #dfe8f4;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .7px;
  text-transform: uppercase;
}

.partners {
  --partner-gap: 18px;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 24px clamp(22px, 7vw, 92px);
  background: linear-gradient(90deg, rgba(2,4,10,.98), rgba(7,87,255,.07), rgba(2,4,10,.98));
  overflow: hidden;
}
.partners span { color: var(--blue); }
.partner-slider {
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.partner-track {
  width: max-content;
  display: flex;
  align-items: center;
  will-change: transform;
}
body.js-enabled .partner-track.is-ready { animation: partnerSlide 28s linear infinite; }
.partner-slider:hover .partner-track { animation-play-state: paused; }
.partner-group {
  display: flex;
  flex: 0 0 auto;
  gap: var(--partner-gap);
  padding-right: var(--partner-gap);
  align-items: center;
}
.partner-logo {
  display: grid;
  width: clamp(212px, 16vw, 272px);
  height: 92px;
  place-items: center;
  padding: 14px 20px;
  opacity: .9;
  border: 1px solid rgba(255,255,255,.1);
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.015)),
    rgba(5,12,24,.72);
  box-shadow: 0 16px 44px rgba(0,0,0,.24), inset 0 0 0 1px rgba(7,87,255,.06);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.partner-logo img {
  display: block;
  width: 204px;
  height: 64px;
  object-fit: contain;
  filter: saturate(.95) brightness(1.1) contrast(1.06);
  opacity: .92;
  transition: filter .2s ease, opacity .2s ease, transform .2s ease;
}
.partner-logo:hover {
  transform: translateY(-4px);
  border-color: rgba(7,87,255,.65);
  box-shadow: 0 18px 52px rgba(0,0,0,.34), 0 0 30px rgba(7,87,255,.18), inset 0 0 0 1px rgba(7,87,255,.16);
  opacity: 1;
}
.partner-logo:hover img {
  filter: saturate(1.12) brightness(1.2) contrast(1.08);
  opacity: 1;
  transform: scale(1.04);
}
@keyframes partnerSlide {
  to { transform: translateX(calc(-1 * var(--partner-slide-distance, 1240px))); }
}

.team-lol { --team-bg: url("assets/lol.png"); --team-accent: #0ac8b9; }
.team-valorant { --team-bg: url("assets/valo.jpg"); --team-accent: #ff4655; }
.team-cs2 { --team-bg: url("assets/cs2.jpg"); --team-accent: #f1a51d; }
.team-overwatch { --team-bg: url("assets/ow.jpg"); --team-accent: #f99e1a; }
.team-r6 { --team-bg: url("assets/r6s.jpg"); --team-accent: #4fb5ff; }
.team-rl { --team-bg: url("assets/rl.jpg"); --team-accent: #00a4ff; }
.team-page {
  background:
    radial-gradient(circle at 16% 0%, rgba(7,87,255,.18), transparent 32rem),
    radial-gradient(circle at 86% 20%, color-mix(in srgb, var(--team-accent) 22%, transparent), transparent 28rem),
    #02040a;
}
.team-hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  padding: 150px clamp(22px, 7vw, 92px) 70px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(0,0,0,.96) 0%, rgba(2,4,10,.82) 42%, rgba(2,4,10,.44) 72%, rgba(0,0,0,.82) 100%),
    linear-gradient(0deg, #02040a 0%, rgba(2,4,10,0) 36%),
    var(--team-bg) center / cover no-repeat;
  overflow: hidden;
}
.team-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 30%, color-mix(in srgb, var(--team-accent) 32%, transparent), transparent 24rem),
    linear-gradient(90deg, rgba(7,87,255,.1) 0 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.025) 0 1px, transparent 1px);
  background-size: auto, 90px 90px, 90px 90px;
  opacity: .72;
}
.team-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 650px) minmax(240px, 420px);
  gap: clamp(36px, 6vw, 92px);
  align-items: end;
}
.team-title {
  max-width: 720px;
  font-size: clamp(80px, 9vw, 146px);
}
.team-lede {
  max-width: 560px;
  margin: 26px 0 28px;
  color: #c4ccd8;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.75;
  text-transform: uppercase;
}
.team-switcher {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  max-width: 760px;
}
.team-switcher a {
  display: grid;
  min-height: 42px;
  place-items: center;
  border: 1px solid rgba(110,180,255,.18);
  background: rgba(4,10,20,.72);
  color: #d9e4f2;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .7px;
  text-transform: uppercase;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.team-switcher a:hover,
.team-switcher a.is-current {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--team-accent) 72%, #0757ff);
  background: rgba(7,87,255,.22);
  box-shadow: 0 18px 42px rgba(0,0,0,.34), 0 0 22px color-mix(in srgb, var(--team-accent) 28%, transparent);
}
.team-identity {
  display: grid;
  gap: 22px;
  justify-items: end;
}
.team-logo-card {
  width: min(100%, 420px);
  min-height: 300px;
  display: grid;
  place-items: center;
  padding: 34px;
  border: 1px solid rgba(110,180,255,.22);
  background:
    radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--team-accent) 30%, transparent), transparent 62%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    rgba(4,10,20,.78);
  box-shadow: 0 30px 90px rgba(0,0,0,.48), inset 0 0 0 1px rgba(7,87,255,.08);
}
.team-game-logo {
  display: block;
  width: min(100%, 310px);
  max-height: 180px;
  object-fit: contain;
  filter: brightness(1.2) contrast(1.08) drop-shadow(0 0 28px rgba(7,87,255,.52));
}
.team-game-logo.league-logo {
  width: min(100%, 370px);
  max-height: 210px;
  filter: brightness(1.18) contrast(1.08) drop-shadow(0 0 28px rgba(7,87,255,.34));
}
.team-side-stats {
  width: min(100%, 420px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.team-side-stats span {
  min-height: 78px;
  display: grid;
  align-content: center;
  padding: 12px;
  border: 1px solid rgba(110,180,255,.16);
  background: rgba(5,12,24,.76);
  color: #dbe5f1;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.team-side-stats strong {
  display: block;
  color: #fff;
  font: italic 30px/.85 var(--cond);
}
.team-roster-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 76px clamp(22px, 7vw, 92px);
  background:
    radial-gradient(circle at 88% 10%, color-mix(in srgb, var(--team-accent) 18%, transparent), transparent 30rem),
    linear-gradient(180deg, #02040a, #050b14);
}
.team-panel {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(110,180,255,.16);
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.015)),
    rgba(5,12,24,.82);
  box-shadow: 0 26px 78px rgba(0,0,0,.36), inset 0 0 0 1px rgba(7,87,255,.05);
}
.team-entry {
  align-self: start;
  padding: 28px;
}
.team-entry h2 {
  font-size: clamp(52px, 5vw, 76px);
  line-height: .9;
  font-style: italic;
}
.team-entry p {
  color: var(--muted);
  line-height: 1.65;
}
.player-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.form-grid {
  display: grid;
  gap: 12px;
}
.player-form label {
  display: grid;
  gap: 8px;
  color: #dbe5f1;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .7px;
  text-transform: uppercase;
}
.player-form input,
.player-form select {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(255,255,255,.14);
  outline: 0;
  padding: 0 14px;
  background: rgba(2,6,14,.78);
  color: #fff;
  font: 800 14px var(--body);
}
.player-form input:focus,
.player-form select:focus {
  border-color: color-mix(in srgb, var(--team-accent) 70%, #0757ff);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--team-accent) 20%, transparent);
}
.team-form-note {
  margin: 2px 0 0;
  color: #8692a3;
  font-size: 12px;
}
.team-page:not(.backoffice-page) .team-entry .player-form {
  display: none;
}
.team-admin-link {
  width: fit-content;
  margin-top: 18px;
}
.roster-board {
  padding: clamp(20px, 3vw, 32px);
}
.roster-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-bottom: 22px;
}
.roster-head h2 {
  font-size: clamp(48px, 5.5vw, 84px);
  line-height: .9;
  font-style: italic;
}
.roster-count {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .7px;
  text-transform: uppercase;
}
.clear-roster {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.03);
  color: #cbd5e2;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
  cursor: pointer;
}
.clear-roster:disabled {
  opacity: .42;
  cursor: not-allowed;
}
.player-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.team-page:not(.backoffice-page) .player-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 280px));
  justify-content: center;
}
.player-card {
  position: relative;
  min-height: 180px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(110,180,255,.15);
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.01)),
    radial-gradient(circle at 86% 18%, color-mix(in srgb, var(--team-accent) 18%, transparent), transparent 12rem),
    #07101b;
  overflow: hidden;
  isolation: isolate;
}
.player-card.player-portrait {
  min-height: 320px;
  aspect-ratio: 3 / 4;
}
.player-card.player-portrait::before {
  display: none;
}
.player-card::before {
  content: "";
  position: absolute;
  right: -24px;
  top: -18px;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(110,180,255,.16);
  background: color-mix(in srgb, var(--team-accent) 18%, transparent);
  transform: skewX(-14deg);
  z-index: 1;
}
.player-card.player-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(2,4,10,0) 0%, rgba(2,4,10,.02) 42%, rgba(2,4,10,.62) 100%),
    linear-gradient(90deg, rgba(2,4,10,.12), transparent 58%, rgba(2,4,10,.1));
  opacity: 1;
}
.player-avatar {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 1;
  filter: saturate(1.36) contrast(1.12) brightness(1.24);
  transform: scale(1.03);
  transition: transform .24s ease, opacity .24s ease, filter .24s ease;
}
.player-card.player-portrait {
  box-shadow: 0 22px 70px rgba(0,0,0,.38), inset 0 0 0 1px rgba(255,255,255,.04);
}
.player-card.player-portrait:hover {
  border-color: color-mix(in srgb, var(--team-accent) 64%, #0757ff);
  box-shadow: 0 28px 86px rgba(0,0,0,.44), inset 0 0 0 1px rgba(255,255,255,.08);
}
.player-card:hover .player-avatar {
  opacity: 1;
  transform: scale(1.08);
  filter: saturate(1.46) contrast(1.14) brightness(1.32);
}
.player-card strong {
  position: relative;
  z-index: 2;
  font: italic 32px/.9 var(--cond);
  text-transform: uppercase;
}
.player-card small,
.player-card span,
.player-card a {
  position: relative;
  z-index: 2;
  color: #c6d0dc;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.player-card a {
  width: fit-content;
  color: var(--blue2);
}
.player-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.player-meta span {
  padding: 5px 7px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.2);
}
.remove-player {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(2,6,14,.74);
  color: #fff;
  cursor: pointer;
}
.player-card.is-placeholder {
  opacity: 1;
}
.player-card.is-placeholder .player-avatar {
  opacity: .86;
  filter: grayscale(.04) saturate(1.08) contrast(1.08) brightness(1.08);
}
.player-card.is-placeholder::before {
  opacity: .55;
}
.team-achievements {
  padding: 76px clamp(22px, 7vw, 92px);
  border-top: 1px solid rgba(110,180,255,.12);
  background:
    radial-gradient(circle at 10% 12%, color-mix(in srgb, var(--team-accent) 16%, transparent), transparent 28rem),
    linear-gradient(180deg, #050b14, #02040a);
}
.achievements-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}
.achievements-head h2 {
  margin: 0;
  font: italic clamp(48px, 5.2vw, 78px)/.9 var(--cond);
  text-transform: uppercase;
}
.achievements-head p:not(.kicker) {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.achievement-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.achievement-card {
  position: relative;
  min-height: 176px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(110,180,255,.16);
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.012)),
    radial-gradient(circle at 82% 18%, color-mix(in srgb, var(--team-accent) 18%, transparent), transparent 12rem),
    #07101b;
  box-shadow: 0 22px 64px rgba(0,0,0,.32), inset 0 0 0 1px rgba(7,87,255,.04);
  overflow: hidden;
}
.achievement-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 0 64%, rgba(255,255,255,.055) 64% 65%, transparent 65%),
    linear-gradient(180deg, transparent, rgba(2,4,10,.38));
}
.achievement-icon {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 44px;
  height: 44px;
  color: color-mix(in srgb, var(--team-accent) 78%, #0757ff);
  filter: drop-shadow(0 0 18px color-mix(in srgb, var(--team-accent) 32%, transparent));
}
.achievement-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.achievement-card strong,
.achievement-card small {
  position: relative;
  z-index: 1;
  text-transform: uppercase;
}
.achievement-card strong {
  color: #fff;
  font: italic 32px/.9 var(--cond);
}
.achievement-card small {
  color: #c6d0dc;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .6px;
}
.backoffice-page {
  --team-accent: #0757ff;
}
.backoffice-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  padding: 148px clamp(22px, 7vw, 92px) 64px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(0,0,0,.96), rgba(2,4,10,.82) 50%, rgba(2,4,10,.34)),
    radial-gradient(circle at 84% 18%, rgba(7,87,255,.28), transparent 30rem),
    url("assets/pr0xy_city.png") right center / contain no-repeat,
    #02040a;
  overflow: hidden;
}
.backoffice-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, #000 0%, rgba(0,0,0,.88) 36%, transparent 66%),
    linear-gradient(0deg, #02040a 0%, transparent 40%);
}
.backoffice-hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}
.backoffice-hero h1 {
  font-size: clamp(82px, 9vw, 142px);
}
.backoffice-hero p:not(.kicker):not(.brush-line) {
  max-width: 520px;
  color: #c5cfdb;
  font-weight: 750;
  line-height: 1.75;
  text-transform: uppercase;
}
.backoffice-shell {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 52px);
  padding: 72px clamp(22px, 7vw, 92px);
  background:
    radial-gradient(circle at 86% 6%, rgba(7,87,255,.18), transparent 30rem),
    linear-gradient(180deg, #02040a, #050b14);
}
.backoffice-sidebar,
.backoffice-panel {
  border: 1px solid rgba(110,180,255,.16);
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.015)),
    rgba(5,12,24,.82);
  box-shadow: 0 26px 78px rgba(0,0,0,.36), inset 0 0 0 1px rgba(7,87,255,.05);
}
.backoffice-sidebar {
  align-self: start;
  padding: 24px;
}
.backoffice-sidebar h2,
.backoffice-panel h2 {
  font-size: clamp(42px, 4vw, 62px);
  line-height: .9;
  font-style: italic;
}
.admin-team-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.admin-team-button {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 66px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(2,6,14,.56);
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.admin-team-button img {
  width: 46px;
  height: 38px;
  object-fit: contain;
  filter: brightness(1.16) drop-shadow(0 0 14px rgba(7,87,255,.32));
}
.admin-team-button strong {
  display: block;
  font: italic 23px/.9 var(--cond);
  text-transform: uppercase;
}
.admin-team-button small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}
.admin-team-button span {
  color: var(--blue2);
  font-size: 11px;
  font-weight: 900;
}
.admin-team-button:hover,
.admin-team-button.is-active {
  transform: translateY(-3px);
  border-color: rgba(7,87,255,.7);
  background: rgba(7,87,255,.14);
  box-shadow: 0 18px 48px rgba(0,0,0,.32), 0 0 22px rgba(7,87,255,.18);
}
.backoffice-workspace {
  min-width: 0;
  display: grid;
  gap: 18px;
}
.backoffice-panel {
  padding: clamp(20px, 3vw, 32px);
}
.backoffice-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-bottom: 24px;
}
.backoffice-topline p {
  max-width: 560px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}
.backoffice-badge {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(110,180,255,.2);
  color: var(--blue2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .7px;
  text-transform: uppercase;
}
.backoffice-form {
  display: grid;
  gap: 16px;
}
.backoffice-form .form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.form-wide {
  grid-column: 1 / -1;
}
.backoffice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.backoffice-actions .btn,
.backoffice-actions .clear-roster {
  margin: 0;
}
.file-control input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.admin-message {
  min-height: 22px;
  margin: 4px 0 0;
  color: #8fd4ff;
  font-size: 13px;
  font-weight: 800;
}
.news-admin-panel {
  margin-top: 16px;
}
.admin-news-list {
  display: grid;
  gap: 14px;
}
.admin-empty {
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(110,180,255,.14);
  background: rgba(2,6,14,.62);
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}
.admin-news-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(120px, 180px) minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 132px;
  padding: 12px;
  border: 1px solid rgba(110,180,255,.15);
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.01)),
    #07101b;
}
.admin-news-thumb {
  position: relative;
  height: 108px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: #03060c;
}
.admin-news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.admin-news-copy time {
  display: block;
  margin-bottom: 8px;
  color: var(--blue2);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.admin-news-copy strong {
  display: block;
  font: italic 30px/.9 var(--cond);
  text-transform: uppercase;
}
.admin-news-copy p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}
.admin-news-flag {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  padding: 5px 8px;
  border: 1px solid rgba(7,87,255,.42);
  background: rgba(7,87,255,.12);
  color: #fff;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}
.admin-news-actions {
  display: grid;
  gap: 8px;
}
.admin-news-actions button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(2,6,14,.74);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}
.admin-news-actions button:hover {
  border-color: rgba(7,87,255,.7);
  box-shadow: 0 0 16px rgba(7,87,255,.24);
}
.player-card-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  display: flex;
  gap: 6px;
}
.edit-player,
.admin-player-grid .remove-player {
  position: static;
  width: auto;
  min-width: 34px;
  height: 30px;
  padding: 0 9px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(2,6,14,.74);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}
.edit-player:hover,
.admin-player-grid .remove-player:hover {
  border-color: rgba(7,87,255,.7);
  box-shadow: 0 0 16px rgba(7,87,255,.24);
}
.footer {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr) 1.6fr;
  gap: 34px;
  padding: 54px clamp(22px, 7vw, 92px) 40px;
  background:
    radial-gradient(circle at 86% 12%, rgba(7,87,255,.16), transparent 22rem),
    #03060c;
}
.footer p, .footer a { color: var(--muted); font-size: 13px; line-height: 1.7; }
.footer a { display: block; margin: 8px 0; }
.footer h3 { color: var(--blue); margin: 0 0 14px; }
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.footer-socials a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(110,180,255,.22);
  background: rgba(7,87,255,.08);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(7,87,255,.05);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.footer-socials a:hover {
  transform: translateY(-3px);
  border-color: rgba(7,87,255,.78);
  background: rgba(7,87,255,.18);
  box-shadow: 0 0 24px rgba(7,87,255,.22);
}
.footer-socials span {
  display: block;
  width: 18px;
  height: 18px;
  background: center / contain no-repeat;
  color: #fff;
  font-size: 0;
  font-weight: 1000;
  letter-spacing: .4px;
}
.footer-socials a[aria-label="Discord"] span { background-image: url("assets/socials/discord.svg"); }
.footer-socials a[aria-label="Facebook"] span { background-image: url("assets/socials/facebook.svg"); }
.footer-socials a[aria-label="Instagram"] span { background-image: url("assets/socials/instagram.svg"); }
.footer-socials a[aria-label="TikTok"] span { background-image: url("assets/socials/tiktok.svg"); }
.footer-socials a[aria-label="YouTube"] span { background-image: url("assets/socials/youtube.svg"); }
.footer-socials a[aria-label="Twitch"] span { background-image: url("assets/socials/twitch.svg"); }
.footer-socials a[aria-label="X"] span { background-image: url("assets/socials/x.svg"); }
.footer-socials a[aria-label="WhatsApp"] span { background-image: url("assets/socials/whatsapp.svg"); }
.footer-cta { border-left: 1px solid var(--line); padding-left: 34px; }
.footer-cta h2 { font-size: 38px; line-height: .9; font-style: italic; }
.footer .btn {
  display: inline-flex;
  width: auto;
  min-width: 190px;
  min-height: 44px;
  margin-top: 14px;
  padding: 0 18px;
  color: #fff;
}
.footer-cta .btn {
  justify-content: center;
  box-shadow: 0 16px 38px rgba(7,87,255,.25);
}

.not-found-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 70% 20%, rgba(7,87,255,.22), transparent 28rem),
    linear-gradient(135deg, rgba(2,4,10,.96), rgba(3,12,26,.98)),
    url("assets/hero-esports.png") center / cover;
}
.not-found {
  min-height: 100vh;
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.not-found h1 {
  margin-top: 24px;
  font-size: clamp(92px, 14vw, 170px);
}
.not-found p:not(.kicker):not(.brush-line) {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.8;
}

@media (max-width: 980px) {
  .site-header { grid-template-columns: 140px auto; height: 80px; }
  .header-actions { justify-self: end; grid-column: 2; grid-row: 1; }
  .logo span { font-size: 46px; }
  .nav {
    position: fixed;
    top: 80px;
    left: 18px;
    right: 18px;
    display: grid;
    justify-content: stretch;
    padding: 18px;
    background: rgba(2,4,10,.96);
    border: 1px solid var(--line);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
  }
  .nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .join { display: none; }
  .menu { display: grid; }
  .hero { min-height: 820px; height: auto; }
  .hero-content { padding-top: 150px; }
  .hero-img {
    left: -18%;
    width: 118%;
    object-fit: cover;
    object-position: 86% center;
    transform: translateX(13%);
  }
  .hero-shade { background: linear-gradient(180deg, rgba(0,0,0,.7), rgba(0,0,0,.94) 60%, #02040a); }
  .side-word, .scroll-word { display: none; }
  .story, .home-base, .news, .video-section, .community, .shop, .partner-spotlight, .team-hero-inner, .team-roster-section, .backoffice-shell, .footer { grid-template-columns: 1fr; }
  .story { gap: 24px; }
  .story-visual { min-height: 220px; }
  .home-gallery { min-height: 460px; }
  .game-links { grid-template-columns: repeat(3, 1fr); }
  .news-head { position: relative; top: auto; }
  .news-grid, .stats, .creator-cards, .products { grid-template-columns: 1fr 1fr; }
  .news-card-feature { grid-column: span 2; }
  .video-frame { max-width: 860px; }
  .spotlight-media { min-height: 360px; }
  .partners { grid-template-columns: 1fr; }
  .partner-logo { width: 214px; height: 86px; }
  .partner-logo img { width: 184px; height: 58px; }
  .creator-hero { width: 100%; opacity: .42; }
  .creator-heading { margin-left: 0; }
  .discord { width: min(100%, 760px); justify-self: start; }
  .team-hero { min-height: 640px; padding-top: 130px; }
  .team-identity { justify-items: start; }
  .team-logo-card { min-height: 240px; }
  .team-switcher { grid-template-columns: repeat(3, 1fr); }
  .player-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .team-page:not(.backoffice-page) .player-grid {
    grid-template-columns: repeat(2, minmax(0, 280px));
    justify-content: center;
  }
  .achievement-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .achievements-head { display: grid; align-items: start; }
  .admin-team-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .backoffice-topline { display: grid; }
}
@media (max-width: 620px) {
  .site-header { padding-inline: 16px; }
  .auth-gate {
    align-items: end;
    padding: 24px 18px 48px;
    background:
      linear-gradient(180deg, rgba(0,0,0,.38), rgba(0,0,0,.94) 47%, #02040a 100%),
      url("assets/pr0xy.png") 72% top / auto 58vh no-repeat,
      #02040a;
  }
  .auth-logo { margin-bottom: 42vh; }
  .auth-card h1 {
    margin-bottom: 22px;
    font-size: 70px;
  }
  .auth-card h1 span { font-size: 50px; }
  .auth-row { display: grid; }
  .auth-row .btn { width: 100%; }
  .hero-content { width: calc(100% - 32px); }
  h1 { font-size: 72px; }
  .brush-line, h2 span { font-size: 42px; transform: rotate(-2deg); }
  .brush-line { white-space: normal; max-width: calc(100% - 12px); }
  .shop-copy h2 span { white-space: normal; max-width: 100%; }
  .actions { display: grid; }
  .story, .home-base, .creators, .news, .video-section, .community, .shop, .partner-spotlight, .partners, .team-hero, .team-roster-section, .team-achievements, .backoffice-hero, .backoffice-shell, .footer { padding-inline: 18px; }
  .home-gallery { grid-template-columns: 1fr; grid-template-rows: none; min-height: 0; }
  .home-shot, .home-shot-main { min-height: 250px; grid-row: auto; }
  .game-links { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .game-logo { min-height: 138px; padding-inline: 8px; }
  .game-mark { width: min(78%, 148px); height: 82px; }
  .game-mark img { max-height: 100%; }
  .news-grid, .stats, .creator-cards, .products { grid-template-columns: 1fr; }
  .news-card-feature { grid-column: auto; min-height: 310px; }
  .news-card { min-height: 280px; }
  .news-content strong,
  .news-card:not(.news-card-feature) .news-content strong { font-size: 30px; }
  .video-section { gap: 28px; }
  .spotlight-media { min-height: 300px; }
  .spotlight-logo { width: min(220px, 82%); }
  .partner-logo { width: 200px; height: 80px; }
  .partner-logo img { width: 172px; height: 54px; }
  .partner-slider { -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
  .partner-slider { mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
  .creator-cards { margin-top: 36px; }
  .team-title { font-size: 72px; }
  .team-switcher, .team-side-stats, .player-grid, .achievement-grid { grid-template-columns: 1fr 1fr; }
  .team-logo-card { width: 100%; min-height: 220px; padding: 24px; }
  .team-game-logo { width: min(100%, 260px); }
  .team-game-logo.league-logo { width: min(100%, 310px); }
  .team-entry, .roster-board { padding: 20px; }
  .roster-head { display: grid; align-items: start; }
  .player-card { min-height: 164px; }
  .player-card.player-portrait { min-height: 280px; }
  .team-page:not(.backoffice-page) .player-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .achievement-card { min-height: 160px; }
  .backoffice-hero { min-height: 520px; }
  .backoffice-form .form-grid,
  .admin-team-list { grid-template-columns: 1fr; }
  .admin-news-item { grid-template-columns: 1fr; }
  .admin-news-thumb { height: 170px; }
  .admin-news-actions { grid-template-columns: 1fr 1fr; }
  .backoffice-actions { display: grid; }
  .backoffice-actions .btn,
  .backoffice-actions .clear-roster,
  .file-control { width: 100%; }
  .footer-cta { border-left: 0; padding-left: 0; }
  .footer-socials a { width: 34px; height: 34px; }
}
@media (prefers-reduced-motion: reduce) {
  .partner-track { animation: none !important; }
}
