:root {
  --bg: #05060a;
  --ink: #f4f1ea;
  --muted: #8b95a3;
  --orange: #f58220;
  --orange-2: #ffb056;
  --steel: rgba(18, 22, 30, .86);
  --line: rgba(245, 130, 32, .18);
  --ok: #3dce7a;
  --bad: #e05a4a;
  --glass: rgba(8, 10, 14, .62);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(245,130,32,.12), transparent 55%),
    var(--bg);
  color: var(--ink);
  font-family: "Exo 2", sans-serif;
}
h1, h2, h3, .brand span, .kicker, .nav a, .tab, .solid, .ghost, .tag, figcaption {
  font-family: Oswald, sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
}
a { color: var(--orange); text-decoration: none; }
button, input, select { font: inherit; }
.scanlines {
  pointer-events: none;
  position: fixed; inset: 0; z-index: 50;
  background:
    repeating-linear-gradient(to bottom, rgba(0,0,0,.14) 0 1px, transparent 1px 3px),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .22;
  mix-blend-mode: overlay;
}
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  display: flex; align-items: center; gap: 22px;
  padding: 12px 24px;
  background: linear-gradient(to bottom, rgba(5,6,10,.94), rgba(5,6,10,.42));
  border-bottom: 1px solid var(--line);
  border-top: 2px solid var(--orange);
  backdrop-filter: blur(10px);
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); }
.brand img { width: 36px; height: 36px; }
.brand span { font-size: 22px; }
.brand small {
  color: var(--orange); border: 1px solid var(--orange);
  padding: 1px 6px; font-size: 11px;
}
.nav nav { display: flex; gap: 16px; margin-left: auto; }
.nav nav a { color: var(--muted); font-size: 13px; }
.nav nav a:hover { color: var(--ink); }
.nav-cta { display: flex; gap: 8px; align-items: center; }
.live {
  display: flex; align-items: center; gap: 6px;
  color: var(--ok); font-size: 12px; letter-spacing: .08em;
  text-transform: uppercase; font-family: Oswald, sans-serif;
}
.live i {
  width: 7px; height: 7px; border-radius: 50%; background: var(--ok);
  box-shadow: 0 0 8px var(--ok);
}
.menu-btn {
  display: none; margin-left: auto;
  background: none; border: 1px solid var(--line); color: var(--ink);
  padding: 6px 10px; cursor: pointer;
}
.ghost, .solid {
  border: 1px solid var(--orange);
  padding: 8px 16px; cursor: pointer;
  text-transform: uppercase; letter-spacing: .08em;
  font-family: Oswald, sans-serif;
}
.ghost { background: transparent; color: var(--orange); }
.solid { background: var(--orange); color: #1a1006; box-shadow: 0 0 24px rgba(245,130,32,.25); }
.ghost.xl, .solid.xl { padding: 14px 26px; font-size: 16px; }
.solid:hover { background: var(--orange-2); }
.ghost:hover { background: rgba(245,130,32,.12); }

.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end;
  padding: 120px 48px 80px; overflow: hidden;
}
.hero-bg, .hero-shade, .hero-frame { position: absolute; inset: 0; }
.hero-bg {
  background-size: cover; background-position: 30% center;
  transform: scale(1.06);
  filter: saturate(1.18) contrast(1.08);
  animation: ken 28s ease-in-out alternate infinite;
}
@keyframes ken {
  from { transform: scale(1.04) translate(0, 0); }
  to { transform: scale(1.1) translate(-1.4%, -1%); }
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(5,6,10,.92) 0%, rgba(5,6,10,.42) 52%, rgba(5,6,10,.18) 100%),
    linear-gradient(to top, #05060a 0%, transparent 46%);
}
.hero-frame::before, .hero-frame::after {
  content: "";
  position: absolute;
  width: 52px; height: 52px;
  border: 2px solid rgba(245,130,32,.7);
  pointer-events: none;
}
.hero-frame::before { top: 88px; left: 28px; border-right: 0; border-bottom: 0; }
.hero-frame::after { right: 28px; bottom: 28px; border-left: 0; border-top: 0; }
.hero-copy { position: relative; max-width: 740px; }
.hero-copy::before {
  content: "";
  display: block;
  width: 72px; height: 3px;
  background: var(--orange);
  margin-bottom: 18px;
  box-shadow: 0 0 16px var(--orange);
}
.kicker { color: var(--orange); margin: 0 0 8px; font-size: 13px; }
.hero h1 {
  font-size: clamp(64px, 12vw, 140px); line-height: .86;
  margin: 0 0 16px; text-shadow: 0 10px 50px #000;
}
.lead { color: #d8dde4; font-size: 20px; max-width: 540px; }
.lead-sm { color: var(--muted); max-width: 520px; line-height: 1.6; }
.hero-actions { display: flex; gap: 12px; margin: 28px 0 22px; flex-wrap: wrap; }
.pills { display: flex; gap: 8px; padding: 0; list-style: none; flex-wrap: wrap; }
.pills li {
  border: 1px solid var(--line); background: rgba(0,0,0,.45);
  padding: 6px 10px; font-size: 12px; color: var(--muted);
}
.pills li.ok { color: var(--ok); border-color: #245c40; }
.pills li.bad { color: var(--bad); border-color: #5c2a24; }
.strip { background: #0b0e14; border-block: 1px solid var(--line); }
.wrap { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }
.status-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1px; background: var(--line);
}
.status-grid article { background: #0b0e14; padding: 18px 16px; }
.status-grid b { display: block; color: var(--orange); font-size: 12px; }
.status-grid span { color: var(--muted); font-size: 13px; }
.block { padding: 72px 0; }
.block.alt { background: linear-gradient(180deg, transparent, rgba(245,130,32,.05), transparent); }
.block-head { margin-bottom: 28px; }
.block h2, .page h2 { font-size: clamp(32px, 5vw, 48px); margin: 0; }
.class-grid, .mode-grid, .news-grid, .player-grid {
  display: grid; gap: 14px;
}
.class-grid { grid-template-columns: repeat(4, 1fr); }
.class-grid article, .class-tile {
  background: var(--steel); border: 1px solid var(--line); overflow: hidden;
  transition: transform .2s ease, border-color .2s;
}
.class-grid article:hover, .class-tile:hover { transform: translateY(-4px); border-color: var(--orange); }
.class-grid img { width: 100%; height: 280px; object-fit: cover; display: block; }
.class-grid div { padding: 14px; }
.class-grid h3 { margin: 0 0 6px; }

.class-tile {
  position: relative;
  min-height: 420px;
  isolation: isolate;
}
.class-tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform .6s ease;
}
.class-tile:hover img { transform: scale(1.08); }
.class-tile .class-copy {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 72px 16px 18px;
  background: linear-gradient(to top, rgba(5,6,10,.96) 12%, transparent);
  z-index: 1;
}
.class-tile .class-copy p { margin: 0; color: #d8dde4; font-size: 13px; letter-spacing: 0; text-transform: none; font-family: "Exo 2", sans-serif; }
.class-tile .class-copy .kicker { letter-spacing: .18em; font-size: 11px; }

.mode-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.mode-banner {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  color: inherit;
  display: block;
}
.mode-banner img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s ease, filter .4s;
  filter: saturate(1.1) contrast(1.05);
}
.mode-banner:hover img { transform: scale(1.07); }
.mode-banner:hover { border-color: var(--orange); }
.mode-copy {
  position: absolute; inset: auto 0 0 0;
  padding: 90px 24px 24px;
  background: linear-gradient(to top, rgba(5,6,10,.94), transparent);
}
.mode-copy h2 { font-size: 56px; line-height: .9; margin: 0 0 8px; }
.mode-copy p { color: #d8dde4; max-width: 360px; }
.mode-copy .ghost { display: inline-block; margin-top: 12px; }

.maps-block { padding: 24px 0 56px; }
.map-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  padding: 0 6px;
}
.map-strip figure {
  margin: 0; position: relative; overflow: hidden;
  min-height: 180px; border: 1px solid var(--line);
}
.map-strip img {
  width: 100%; height: 180px; object-fit: cover; display: block;
  filter: saturate(1.1);
  transition: transform .5s ease;
}
.map-strip figure:hover img { transform: scale(1.08); }
.map-strip figcaption {
  position: absolute; left: 10px; bottom: 8px;
  color: #fff; font-size: 12px; letter-spacing: .14em;
  text-shadow: 0 2px 10px #000;
}

.cta-banner {
  position: relative;
  min-height: 380px;
  display: flex; align-items: flex-end;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.cta-bg, .cta-shade { position: absolute; inset: 0; }
.cta-bg { background-size: cover; background-position: center; }
.cta-shade {
  background:
    linear-gradient(90deg, rgba(5,6,10,.88), rgba(5,6,10,.35) 55%, transparent),
    linear-gradient(to top, #05060a, transparent 50%);
}
.cta-copy { position: relative; padding: 64px 0; }
.cta-copy h2 { font-size: clamp(32px, 5vw, 52px); margin: 0 0 8px; }
.cta-copy p { color: #d8dde4; max-width: 520px; }

.play { background: #0b0d12; }
.split { display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; }
.steps { color: var(--muted); line-height: 1.7; }
pre {
  background: #000; color: #f58220; padding: 16px;
  border: 1px solid var(--line); overflow: auto;
}
.hint { color: var(--muted); font-size: 14px; }
.panel {
  min-height: 340px; background-size: cover; background-position: center;
  display: flex; align-items: flex-end; border: 1px solid var(--line);
}
.panel div { width: 100%; padding: 20px; background: linear-gradient(to top, #000, transparent); }
footer { padding: 28px 0 40px; color: var(--muted); border-top: 1px solid var(--line); }
.foot { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.foot .brand { gap: 12px; }
.foot .brand p { margin: 0; font-size: 13px; }
.foot nav { display: flex; gap: 16px; }
.modal {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(0,0,0,.72); display: grid; place-items: center; padding: 20px;
}
.modal[hidden] { display: none; }
.modal-card {
  width: min(420px, 100%); background: #12161d;
  border: 1px solid var(--orange); padding: 22px; position: relative;
}
.close {
  position: absolute; right: 10px; top: 6px;
  background: none; border: 0; color: var(--muted); font-size: 28px; cursor: pointer;
}
.tabs { display: flex; gap: 8px; margin-bottom: 16px; }
.tab {
  flex: 1; background: transparent; color: var(--muted);
  border: 1px solid var(--line); padding: 10px; cursor: pointer;
}
.tab.on { background: var(--orange); color: #1a1006; border-color: var(--orange); }
.form label { display: block; color: var(--muted); font-size: 12px; margin-bottom: 12px; }
.form input, .form select, .form textarea {
  display: block; width: 100%; margin-top: 6px;
  background: #07080b; border: 1px solid var(--line); color: var(--ink); padding: 11px;
}
.form textarea { min-height: 120px; resize: vertical; font-family: "Exo 2", sans-serif; }
.form button { width: 100%; margin-top: 6px; }
.flash { margin: 12px 0 0; font-size: 14px; }
.flash.ok { color: var(--ok); }
.flash.bad { color: var(--bad); }

.page-hero {
  position: relative;
  min-height: 340px;
  display: flex; align-items: flex-end;
  padding: 120px 0 36px;
  overflow: hidden;
  background-size: cover; background-position: center;
  border-bottom: 1px solid var(--line);
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(5,6,10,.82), rgba(5,6,10,.28) 70%),
    linear-gradient(to top, #05060a, transparent 55%);
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h2 { font-size: clamp(36px, 6vw, 64px); margin: 0; text-shadow: 0 8px 30px #000; }

.inner .page { padding: 48px 0 70px; min-height: 50vh; }
.inner.no-hero .page { padding: 110px 0 70px; min-height: 70vh; }
.row-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; flex-wrap: wrap; }
.muted { color: var(--muted); }
.news-grid, .player-grid { grid-template-columns: repeat(3, 1fr); }
.news-card, .news-list article, .player-card, .empty-box {
  background: var(--steel); border: 1px solid var(--line);
  padding: 16px; color: inherit; display: block;
}
.news-card {
  padding: 0; overflow: hidden;
}
.news-thumb {
  display: block; height: 160px;
  background-size: cover; background-position: center;
}
.news-body { display: block; padding: 16px; }
.news-card:hover, .player-card:hover { border-color: var(--orange); }
.news-one { max-width: 780px; }
.news-one p { font-size: 16px; line-height: 1.6; }
.news-card h3, .news-list h3 { margin: 8px 0; }
.news-card p, .news-list p { color: var(--muted); }
.tag {
  display: inline-block; color: #1a1006; background: var(--orange);
  font-size: 11px; padding: 2px 8px;
}
.news-list { display: grid; gap: 12px; }
.news-list article {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 0;
  overflow: hidden;
}
.news-list .nl-thumb {
  min-height: 140px;
  background-size: cover; background-position: center;
}
.news-list .nl-body { padding: 16px 16px 16px 0; }
.article { font-size: 18px; line-height: 1.6; margin-top: 16px; }
.narrow { max-width: 760px; }
.board { width: 100%; border-collapse: collapse; }
.board th, .board td { border-bottom: 1px solid var(--line); padding: 12px 8px; text-align: left; }
.board th { color: var(--orange); font-size: 12px; }
.board tr:hover td { background: rgba(245,130,32,.04); }
.empty, .empty-box { color: var(--muted); }
.empty-box { margin-top: 20px; }
.profile-hero {
  min-height: 360px; background-size: cover; background-position: center top;
  display: flex; align-items: flex-end; border: 1px solid var(--line); margin: 18px 0 16px;
}
.profile-hero .ph-copy {
  width: 100%; padding: 24px; background: linear-gradient(to top, #000 10%, transparent);
}
.profile-hero h2 { font-size: 42px; margin: 8px 0 4px; }
.xpbar {
  position: relative;
  height: 28px;
  margin: 14px 0 0;
  background: rgba(0,0,0,.55);
  border: 1px solid var(--orange);
  overflow: hidden;
}
.xpbar-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, #f58220, #ffb056);
}
.xpbar-label {
  position: relative; z-index: 1;
  display: flex; align-items: center;
  height: 28px; padding: 0 12px;
  font-family: Oswald, sans-serif;
  font-size: 13px; letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 4px #000;
}
.stat-grid, .money { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.stat-grid { grid-template-columns: 1fr 1fr; }
.stat-grid.fat { grid-template-columns: repeat(4, 1fr); }
.stat-grid li, .money li {
  background: var(--steel); border: 1px solid var(--line); padding: 14px;
}
.stat-grid b { display: block; font-size: 18px; }
.stat-grid span { color: var(--muted); font-size: 12px; }
.money { grid-template-columns: repeat(3, 1fr); margin-top: 8px; }
.money li { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.sec { margin: 28px 0 10px; }
.meta { margin-top: 24px; font-size: 13px; }
.flash-bar { padding-top: 90px; }
.flash-bar .ok { color: var(--ok); }
.flash-bar .bad { color: var(--bad); }
.nav-cta a { display: inline-block; }
.pin-form input { letter-spacing: .16em; text-transform: uppercase; font-size: 18px; }
.pin-admin { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 16px; max-width: 820px; margin: 20px 0 32px; }
.pin-admin button { grid-column: 1 / -1; width: auto; max-width: 240px; }
.code-card {
  font-size: 28px; letter-spacing: .14em; font-family: Oswald, sans-serif;
  border: 1px dashed var(--orange); padding: 18px; margin: 16px 0;
  background: rgba(245,130,32,.08);
}
code { color: var(--orange-2); }

.player-card {
  padding: 0; overflow: hidden;
}
.player-card .pc-art {
  display: block; height: 140px;
  background-size: cover; background-position: center top;
}
.player-card strong, .player-card span { display: block; padding: 0 14px; }
.player-card strong { padding-top: 12px; font-family: Oswald, sans-serif; text-transform: uppercase; }
.player-card span { color: var(--muted); font-size: 13px; }
.player-card span:last-child { padding-bottom: 14px; }

.pass-hero h2 { letter-spacing: .12em; }
.pass-meta {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
}
.pass-meta article { background: #0b0e14; padding: 22px 16px; text-align: center; }
.pass-meta b {
  display: block; font-family: Oswald, sans-serif;
  font-size: 36px; color: var(--orange); letter-spacing: .06em;
}
.pass-meta span { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.pass-tracks { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 28px; }
.pass-track {
  background: var(--steel); border: 1px solid var(--line); padding: 22px 22px 12px;
}
.pass-track.elite { border-color: var(--orange); box-shadow: 0 0 40px rgba(245,130,32,.12); }
.pass-track h3 { margin: 0 0 16px; font-size: 28px; }
.pass-track ul { list-style: none; padding: 0; margin: 0; }
.pass-track li {
  display: flex; gap: 12px; align-items: baseline;
  border-bottom: 1px solid var(--line); padding: 10px 0; color: #d8dde4;
}
.pass-track li b {
  color: var(--orange); min-width: 28px; font-family: Oswald, sans-serif;
}
.pass-levels {
  list-style: none; padding: 0; margin: 8px 0 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(36px, 1fr)); gap: 4px;
}
.pass-levels li {
  height: 42px; display: grid; place-items: center;
  border: 1px solid var(--line); background: #0b0e14;
  font-family: Oswald, sans-serif; font-size: 12px; color: var(--muted);
}
.pass-levels li.hot { border-color: var(--orange); color: var(--orange); background: rgba(245,130,32,.12); }
.mission-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.mission-card {
  background: var(--steel); border: 1px solid var(--line);
  padding: 16px; min-height: 180px;
  display: flex; flex-direction: column;
}
.mission-card:hover { border-color: var(--orange); }
.mission-card h3 { margin: 10px 0 8px; }
.mission-card p { color: var(--muted); margin: 0 0 auto; font-size: 14px; }
.mission-card b { display: block; margin-top: 14px; color: var(--orange); font-family: Oswald, sans-serif; }

@media (max-width: 980px) {
  .nav nav { display: none; }
  .nav.open nav {
    display: flex; flex-direction: column; position: absolute;
    top: 58px; left: 0; right: 0; background: #0b0e14; padding: 16px;
    border-bottom: 1px solid var(--line);
  }
  .menu-btn { display: block; }
  .class-grid, .status-grid, .split, .stat-grid.fat, .money, .pin-admin, .mode-split, .pass-tracks, .pass-meta { grid-template-columns: 1fr 1fr; }
  .mission-grid { grid-template-columns: 1fr 1fr; }
  .pass-levels { grid-template-columns: repeat(10, 1fr); }
  .map-strip { grid-template-columns: repeat(3, 1fr); }
  .hero { padding: 110px 20px 48px; }
  .news-list article { grid-template-columns: 1fr; }
  .news-list .nl-body { padding: 16px; }
}
@media (max-width: 640px) {
  .class-grid, .status-grid, .split, .news-grid, .player-grid, .stat-grid, .stat-grid.fat, .money, .pin-admin, .foot, .mode-split, .pass-tracks, .pass-meta, .mission-grid {
    grid-template-columns: 1fr;
  }
  .map-strip { grid-template-columns: 1fr 1fr; }
  .class-tile { min-height: 360px; }
  .mode-banner { min-height: 320px; }
  .foot { flex-direction: column; align-items: flex-start; }
  .nav-cta .live { display: none; }
}
