:root {
  --bg: #0d0d0d;
  --bg2: #141414;
  --panel: #1a1a1a;
  --panel-strong: #1e1e1e;
  --line: #2a2a2a;
  --line-soft: #222222;
  --text: #eeeeee;
  --muted: #888888;
  --accent: #ff6600;
  --accent-strong: #cc5200;
  --gold: #ffaa33;
  --shadow: 0 4px 16px rgba(0,0,0,0.5);
  --font: 13px/1.5 "Inter", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #0d0d0d !important;
  color: #eeeeee;
  font: 13px/1.5 "Inter", sans-serif;
  min-height: 100vh;
}
body > #app:empty::after {
  content: "Loading...";
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  color: #444;
  font-size: 14px;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: #333; }
::-webkit-scrollbar-thumb:hover { background: #444; }

.site-shell { min-height: 100vh; background: var(--bg); }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #000;
  border-bottom: 2px solid var(--accent);
}
.topbar-inner, .page-wrap, .footer-inner {
  width: min(1280px, calc(100% - 20px));
  margin: 0 auto;
}
.topbar-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  min-height: 46px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border-right: 1px solid #222;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #000;
  font: 800 15px/1 "Inter", sans-serif;
  letter-spacing: -0.5px;
}
.brand-copy strong {
  display: block;
  font: 800 16px/1 "Inter", sans-serif;
  color: #fff;
}
.brand-copy span {
  display: none;
}
.main-nav {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.main-nav::-webkit-scrollbar { display: none; }
.topbar-burger {
  display: none;
}
.topbar-menu {
  display: flex;
  align-items: stretch;
  width: 100%;
}
.main-nav a, .utility-link, .tab-link {
  transition: background 120ms ease, color 120ms ease;
  white-space: nowrap;
}
.main-nav a {
  display: flex;
  align-items: center;
  padding: 0 13px;
  color: #aaa;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-right: 1px solid #1a1a1a;
  height: 100%;
}
.main-nav a:hover {
  background: #1a1a1a;
  color: #fff;
}
.main-nav a.is-active {
  background: var(--accent);
  color: #000;
}
.topbar-tools {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0;
  border-left: 1px solid #222;
}
.search-form {
  display: flex;
  align-items: center;
  border-left: 1px solid #222;
}
.search-form input {
  border: 0;
  outline: 0;
  width: 160px;
  padding: 0 12px;
  height: 46px;
  color: #ccc;
  background: transparent;
  font-size: 12px;
}
.search-form input::placeholder { color: #555; }
.search-form .button {
  height: 46px;
  border-radius: 0;
  border: 0;
  border-left: 1px solid #222;
  background: transparent;
  color: #888;
  font-size: 12px;
  padding: 0 14px;
}
.search-form .button:hover { background: #1a1a1a; color: #fff; }
.utility-link {
  display: flex;
  align-items: center;
  padding: 0 14px;
  height: 46px;
  border-left: 1px solid #222;
  color: #888;
  font-size: 12px;
  font-weight: 600;
}
.utility-link:hover { background: #1a1a1a; color: #fff; }
.page-wrap { padding: 14px 0 24px; }

/* ===== HLTV LAYOUT ===== */
.layout-home {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) 270px;
  gap: 12px;
  align-items: start;
}

.news-home-toprow { display: none; }

.news-left-rail,
.news-main-column,
.news-right-rail {
  display: grid;
  gap: 10px;
  align-content: start;
}

/* ===== HLTV CARDS ===== */
.news-side-card,
.news-top-hero,
.news-hero-story,
.news-feed-card {
  border: 1px solid #252525;
  background: var(--panel);
}

.news-side-card__title,
.news-feed-card__head {
  padding: 8px 12px;
  border-bottom: 1px solid #252525;
  background: #111;
  color: #bbb;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.news-feed-card__head { background: #141414; }

.news-player-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 10px;
  padding: 10px;
}
.news-player-card__avatar {
  min-height: 110px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: #1e1e1e;
  border: 1px solid #2a2a2a;
  color: #555;
  font: 700 28px/1 "Inter", sans-serif;
}
.news-player-card__copy strong { display: block; font-size: 15px; color: #ccc; }
.news-player-card__copy span,
.news-player-card__copy em { display: block; color: #777; font-size: 11px; font-style: normal; }
.news-player-card__copy em { margin-top: 28px; color: var(--accent); font-weight: 700; }

.news-simple-list { display: grid; }
.news-simple-list__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 12px;
  border-top: 1px solid #1e1e1e;
  color: #ccc;
  font-size: 12px;
  cursor: pointer;
  transition: background 120ms;
}
.news-simple-list__row:hover { background: #1a1a1a; color: #fff; }
.news-simple-list__row small { color: #666; }

.news-card-footer {
  display: block;
  padding: 8px 12px;
  border-top: 1px solid #1e1e1e;
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  background: #111;
}
.news-card-footer:hover { color: #ff8533; }

/* ===== MAIN COLUMN ===== */
.news-top-hero {
  display: grid;
  gap: 10px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.news-top-hero__banner { display: none; }

.news-tournament-card {
  position: relative;
  overflow: hidden;
  min-height: 130px;
  padding: 14px 14px 0;
  border: 1px solid #252525;
  background:
    radial-gradient(circle at top, rgba(255,102,0,0.12), transparent 50%),
    #111;
}
.news-tournament-card__status {
  position: absolute;
  top: 10px; right: 10px;
  padding: 4px 8px;
  border-radius: 3px;
  background: rgba(255,102,0,0.2);
  color: #ff9944;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 800;
}
.news-tournament-card__logo {
  width: 64px; height: 64px;
  margin: 0 auto 6px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  color: #888;
  font: 700 22px/1 "Inter", sans-serif;
}
.news-tournament-card h2 {
  margin: 0;
  text-align: center;
  font: 700 18px/1.1 "Inter", sans-serif;
  color: #ddd;
}
.news-tournament-card p {
  margin: 4px 0 10px;
  text-align: center;
  color: #666;
  font-size: 11px;
}
.news-tournament-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 -14px;
  border-top: 1px solid #1e1e1e;
}
.news-tournament-tabs a {
  padding: 8px 10px;
  text-align: center;
  background: #141414;
  border-right: 1px solid #1e1e1e;
  color: #888;
  font-size: 11px;
  font-weight: 600;
  transition: background 120ms;
}
.news-tournament-tabs a:hover { background: #1a1a1a; color: #fff; }
.news-tournament-tabs a.is-active { background: #1a1a1a; color: var(--accent); }

.news-hero-story {
  overflow: hidden;
  border: 1px solid #252525;
  background: var(--panel);
}
.news-hero-story__media {
  min-height: 170px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, #1a2a1a, #0d1a0d 60%);
  color: #2a6a2a;
  font: 800 70px/1 "Inter", sans-serif;
  letter-spacing: -2px;
}
.news-hero-story__meta {
  padding: 8px 12px;
  border-top: 1px solid #1e1e1e;
  background: #111;
  color: #bbb;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ===== NEWS FEED ===== */
.news-feed-card {
  border: 1px solid #252525;
  background: var(--panel);
}
.news-feature-list { display: grid; }
.news-feature-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 100px;
  gap: 10px;
  padding: 10px 12px;
  border-top: 1px solid #1e1e1e;
  cursor: pointer;
  transition: background 120ms;
}
.news-feature-item:hover { background: #161616; }
.news-feature-item__thumb {
  min-height: 72px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: #151515;
  border: 1px solid #252525;
  color: #555;
  font: 800 18px/1 "Inter", sans-serif;
}
.news-feature-item__copy strong { display: block; font-size: 13px; line-height: 1.3; color: #ddd; }
.news-feature-item__copy p { margin: 5px 0 0; color: #666; font-size: 12px; }
.news-feature-item__meta { color: #555; font-size: 10px; text-align: right; }

.news-headline-list { display: grid; }
.news-headline-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 12px;
  border-top: 1px solid #1e1e1e;
  color: #bbb;
  font-size: 12px;
  cursor: pointer;
  transition: background 120ms;
}
.news-headline-list__item:hover { background: #161616; color: #fff; }
.news-headline-list__item small { color: #555; white-space: nowrap; }

/* ===== RIGHT RAIL ===== */
.news-match-list,
.news-activity-list,
.news-transfer-list { display: grid; }
.news-match-list__row,
.news-activity-list__row,
.news-transfer-list__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-top: 1px solid #1a1a1a;
  color: #bbb;
  font-size: 11px;
  cursor: pointer;
  transition: background 120ms;
}
.news-match-list__row:hover,
.news-activity-list__row:hover,
.news-transfer-list__row:hover { background: #161616; }
.news-match-list__row > div { display: grid; gap: 2px; min-width: 0; }
.news-match-list__row small,
.news-activity-list__row small,
.news-transfer-list__row small { color: #555; white-space: nowrap; }

.home-mini {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
}
.home-pill {
  padding: 2px 6px;
  border-radius: 3px;
  background: rgba(255,102,0,0.15);
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
}
.home-transfer-list .news-transfer-list__row strong { color: #ddd; font-size: 12px; }
.home-transfer-list .news-transfer-list__row small { font-size: 10px; }

/* ===== BUTTONS HLTV ===== */
.button-row { display: flex; flex-wrap: wrap; gap: 8px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 12px;
  transition: background 120ms;
}
.button-primary {
  color: #000;
  background: var(--accent);
}
.button-primary:hover { background: #ff8533; }
.button-ghost {
  color: #aaa;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
}
.button-ghost:hover { background: #222; color: #fff; border-color: #333; }
.home-rail,
.home-center {
  display: grid;
  gap: 12px;
}
.home-box,
.home-brandbar,
.home-promo,
.home-board {
  border: 1px solid #252525;
  background: var(--panel);
}
.home-box { padding: 0; }
.home-box__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 12px;
  border-bottom: 1px solid #1e1e1e;
  background: #111;
  color: #aaa;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.home-box__head a { color: #666; font-size: 10px; }
.home-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  padding: 1px;
  background: #1a1a1a;
}
.home-calendar span {
  min-height: 22px;
  display: grid;
  place-items: center;
  background: #141414;
  color: #666;
  font-size: 11px;
}
.home-calendar span.is-active {
  background: var(--accent);
  color: #000;
  font-weight: 800;
}
.home-filter-group {
  display: grid;
  gap: 8px;
  padding: 10px;
  border-top: 1px solid #1e1e1e;
}
.home-filter-group:first-of-type { border-top: 0; }
.home-filter-group__title { color: #888; font-size: 11px; font-weight: 700; }
.home-filter-group label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #777;
  font-size: 12px;
}
.home-brandbar {
  display: grid;
  grid-template-columns: 54px auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #111;
  border: 1px solid #252525;
}
.home-brandbar__logo {
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #000;
  font: 800 20px/1 "Inter", sans-serif;
}
.home-brandbar__title { font: 800 38px/1 "Inter", sans-serif; color: #eee; }
.home-brandbar__banner {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 8px 14px;
  background: linear-gradient(90deg, #5a2a0a, #cc5500 40%, #5a2a0a);
  color: #ffcc88;
  font-weight: 700;
  font-size: 12px;
  text-align: center;
}
.home-promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  background: #111;
  border: 1px solid #252525;
}
.home-promo__left span { display: block; color: #ff9944; font-size: 12px; }
.home-promo__left strong { display: block; margin-top: 2px; font-size: 30px; line-height: 1; color: #fff; }
.home-promo__button {
  padding: 10px 14px;
  border-radius: 4px;
  background: var(--accent);
  color: #000;
  font-weight: 800;
  font-size: 12px;
  white-space: nowrap;
}
.home-board__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 12px;
  background: #111;
  border-bottom: 1px solid #1e1e1e;
}
.home-board__head h2 { margin: 0; font: 700 16px/1.1 "Inter", sans-serif; color: #ccc; }
.home-board__head span { color: #555; font-size: 11px; }
.home-board__sort {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #555;
  font-size: 11px;
}
.home-board__sort button {
  padding: 3px 8px;
  border: 1px solid #2a2a2a;
  border-radius: 3px;
  background: #1a1a1a;
  color: #aaa;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
}
.home-board__body { display: grid; }
.home-match-row {
  display: grid;
  grid-template-columns: 50px 1px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-top: 1px solid #1a1a1a;
  background: #141414;
}
.home-match-row--live { grid-template-columns: minmax(150px, 200px) 54px minmax(0, 1fr) 28px; }
.home-match-row:hover { background: #1a1a1a; }
.home-match-row__timecol { display: grid; gap: 3px; }
.home-match-row__timecol strong { color: #ccc; font-size: 16px; }
.home-match-row__timecol span { color: #555; font-size: 10px; }
.home-match-row__divider { width: 1px; height: 40px; background: #2a2a2a; }
.home-match-row__event { color: #666; font-size: 11px; }
.home-match-row__serie, .home-match-row__eventline small { color: #555; font-size: 11px; }
.home-match-row__center { display: grid; gap: 4px; }
.home-match-row__status {
  width: fit-content;
  padding: 3px 7px;
  border-radius: 3px;
  background: #cc0000;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}
.home-match-row__bo { color: #666; font-size: 10px; }
.home-match-row__teams { display: grid; gap: 3px; }
.home-match-row__teamline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #ccc;
  font-size: 12px;
}
.home-match-row__teamline strong { font-size: 13px; }
.home-match-row__eventline { color: #bbb; font-size: 12px; font-weight: 700; }
.home-match-row__pin, .home-match-row__tag { justify-self: end; }
.home-match-row__pin {
  width: 24px; height: 24px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  color: #666;
  font-weight: 800;
  font-size: 10px;
}
.home-match-row__tag {
  padding: 2px 6px;
  border-radius: 3px;
  background: rgba(255,102,0,0.15);
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
}
.home-empty-panel { padding: 16px 18px; color: #555; }
.home-empty-panel strong { display: block; margin-bottom: 6px; color: #888; }
.home-empty-panel p { margin: 0; }
.home-activity-list, .home-transfer-list { display: grid; }
.home-activity-item, .home-transfer-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 12px;
  border-top: 1px solid #1a1a1a;
  color: #888;
  font-size: 12px;
}
.home-activity-item small, .home-transfer-item small { color: #555; }
.home-mini {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px;
}
.home-pill {
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(89, 168, 255, 0.16);
  color: #9fd2ff;
  font-size: 10px;
}
.stack { display: grid; gap: 14px; }
.card, .hero, .headline, .media-panel, .section-page, .footer-panel {
  border: 1px solid #252525;
  background: var(--panel);
}
.card-head {
  padding: 8px 14px;
  border-bottom: 1px solid #1e1e1e;
  background: #111;
  color: #aaa;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.08em;
  font-weight: 800;
}
.card-body { padding: 12px; }
.list { display: grid; }
.list a, .list .list-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border-top: 1px solid #1a1a1a;
  color: #bbb;
  transition: background 120ms;
}
.list a:hover, .list .list-row:hover { background: #161616; color: #fff; }
.list small, .muted { color: var(--muted); }

.button-row { display: flex; flex-wrap: wrap; gap: 10px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
}
.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}
.button-ghost {
  color: var(--text);
  background: rgba(50, 72, 94, 0.92);
  border: 1px solid rgba(96, 127, 160, 0.6);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background: #111;
  border: 1px solid #252525;
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -30% 45%;
  height: 200px;
  background: radial-gradient(circle, rgba(255,102,0,0.18), transparent 60%);
  pointer-events: none;
}
.hero-topline {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 10px;
}
.hero h1, .section-page h1 {
  margin: 10px 0 8px;
  font: 700 clamp(26px, 3.5vw, 44px)/1.05 "Inter", sans-serif;
  letter-spacing: -0.02em;
  color: #eee;
}
.hero p, .section-page p {
  max-width: 720px;
  margin: 0 0 18px;
  color: #888;
  font-size: 14px;
}
.hero-stats {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.stat-box {
  padding: 12px;
  border-radius: 4px;
  background: #0a0a0a;
  border: 1px solid #252525;
}
.stat-box span { display: block; color: #666; font-size: 11px; }
.stat-box strong { display: block; margin-top: 4px; font-size: 26px; color: #ddd; }
.feature-banner {
  min-height: 200px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, transparent, rgba(0,0,0,0.85)),
    linear-gradient(135deg, #1a0d00, #111 55%, #0a0a0a);
}
.feature-label {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 3px;
  background: rgba(204,0,0,0.25);
  color: #ff8888;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.feature-banner h2 {
  margin: 10px 0 8px;
  font: 700 clamp(22px, 2.5vw, 36px)/1.08 "Inter", sans-serif;
  color: #ddd;
}
.feature-tabs {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #1e1e1e;
}
.tab-link {
  flex: 1;
  min-width: 120px;
  padding: 12px 16px;
  border-right: 1px solid #1a1a1a;
  background: #111;
  color: #888;
  font-size: 12px;
  font-weight: 600;
  transition: background 120ms;
}
.tab-link:hover { background: #161616; color: #fff; }
.tab-link.is-active { color: var(--accent); }
.headline { padding: 16px 18px; background: var(--panel); border: 1px solid #252525; }
.headline-mark {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 3px;
  background: rgba(204,0,0,0.2);
  color: #ff8888;
  font-size: 11px;
  font-weight: 800;
}
.headline h3 {
  margin: 12px 0 0;
  font: 700 26px/1.15 "Inter", sans-serif;
  color: #ddd;
}
.player-highlight {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}
.player-avatar, .gallery-thumb {
  border-radius: 4px;
  border: 1px solid #252525;
}
.player-avatar {
  width: 72px; height: 110px;
  background: #141414;
  display: grid;
  place-items: center;
  font: 700 16px/1 "Inter", sans-serif;
  color: #444;
}
.gallery-thumb { min-height: 100px; background: #141414; }
.media-panel { padding: 16px; }
.media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 12px;
  align-items: start;
}
.stream-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.stream-chip {
  padding: 8px 10px;
  border: 1px solid #2a2a2a;
  background: #111;
  border-radius: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #888;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: background 120ms;
}
.stream-chip:hover { background: #1a1a1a; color: var(--accent); border-color: var(--accent); }
.video-frame {
  min-height: 260px;
  border-radius: 4px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #111;
  border: 1px solid #252525;
}
.video-frame span {
  width: 72px; height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,102,0,0.15);
  font-size: 28px;
  color: var(--accent);
}
.section-page { padding: 24px; background: var(--panel); border: 1px solid #252525; }
.section-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 14px;
}
.section-grid.single { grid-template-columns: 1fr; }
.footer {
  margin-top: 14px;
  border-top: 1px solid #1a1a1a;
  background: #080808;
}
.footer-inner {
  padding: 24px 0 32px;
  display: grid;
  gap: 14px;
}
.footer-panel {
  padding: 18px;
  background: #111;
  border: 1px solid #252525;
}
.footer-actions, .footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-meta { color: #444; font-size: 12px; }
.footer-meta span { cursor: pointer; }
.footer-meta span:hover { color: #888; }
.empty-state { padding: 14px 12px; color: #555; }

.section-stack {
  margin-top: 22px;
  display: grid;
  gap: 16px;
}
.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.section-title h2 { margin: 0; font: 700 22px/1.1 "Inter", sans-serif; color: #ddd; }
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  padding: 4px 8px;
  border-radius: 3px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  color: #888;
  font-size: 11px;
  font-weight: 700;
}

.match-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.match-controls {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px;
  border: 1px solid #1e1e1e;
  border-radius: 4px;
  background: #0d0d0d;
}
.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 12px;
  border: 1px solid #2a2a2a;
  border-radius: 3px;
  background: #141414;
  color: #aaa;
  cursor: pointer;
  font-weight: 600;
  font-size: 12px;
  min-height: 32px;
  transition: 120ms;
}
.filter-chip.is-active {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}
.filter-chip:hover { border-color: var(--accent); color: var(--accent); }

.match-card {
  display: block;
  border: 1px solid #252525;
  border-radius: 4px;
  padding: 12px;
  background: #141414;
  transition: border-color 120ms, background 120ms;
}
.match-card:hover {
  border-color: var(--accent);
  background: #181818;
}
.match-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.match-card__meta { color: #555; font-size: 10px; }
.match-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 7px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.match-status.live { background: rgba(204,0,0,0.2); color: #ff8888; }
.match-status.upcoming { background: rgba(255,102,0,0.15); color: #ff9944; }
.match-status.finished { background: rgba(100,100,100,0.15); color: #888; }

.match-teams { display: grid; gap: 6px; }
.match-team {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 5px 0;
  border-top: 1px solid #1e1e1e;
}
.match-team:first-child { border-top: 0; padding-top: 0; }
.match-team:last-child { padding-bottom: 0; }
.match-team__logo {
  width: 26px; height: 26px;
  border-radius: 4px;
  border: 1px solid #2a2a2a;
  background: #0a0a0a;
}
.match-team__name { font-size: 13px; font-weight: 700; color: #ddd; }
.match-team__sub { margin-top: 1px; color: #555; font-size: 10px; }
.match-team__score { font: 700 16px/1 "Inter", sans-serif; color: #eee; }
.match-card__footer {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid #1a1a1a;
  color: #555;
  font-size: 10px;
}
.match-card__footer-left { display: grid; gap: 3px; }
.match-card__cta { color: var(--accent); font-weight: 700; }

.match-hero { display: grid; gap: 14px; }
.match-hero__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.match-hero__header h1 { margin: 0; }
.match-scoreboard {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px;
  border-radius: 4px;
  background: #111;
  border: 1px solid #252525;
}
.scoreboard-team { display: grid; gap: 6px; }
.scoreboard-team__top { display: flex; align-items: center; gap: 10px; }
.scoreboard-team:last-child { text-align: right; }
.scoreboard-team:last-child .scoreboard-team__top { justify-content: flex-end; }
.scoreboard-logo { width: 50px; height: 50px; object-fit: cover; border-radius: 4px; border: 1px solid #2a2a2a; background: #0a0a0a; }
.scoreboard-name { font: 700 clamp(22px, 2.5vw, 32px)/1.08 "Inter", sans-serif; color: #ddd; }
.scoreboard-meta { color: #555; font-size: 12px; }
.scoreboard-center { display: grid; justify-items: center; gap: 8px; }
.scoreboard-score { font: 700 clamp(30px, 3.5vw, 50px)/1 "Inter", sans-serif; color: #eee; }
.scoreboard-divider { color: #555; font-size: 12px; }

.map-list { display: grid; gap: 8px; }
.map-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #1e1e1e;
  border-radius: 4px;
  background: #111;
}
.map-row__name { font-weight: 700; font-size: 13px; color: #ccc; }
.map-row__status { color: #555; font-size: 11px; }

.stream-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border: 1px solid #252525;
  border-radius: 4px;
  overflow: hidden;
  background: #111;
}
.stream-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.matches-shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}
.matches-sidebar { display: grid; gap: 10px; }
.matches-main { display: grid; gap: 10px; }
.matches-headline,
.matches-panel,
.matches-toolbar,
.tournament-block {
  border: 1px solid #252525;
  background: var(--panel);
}
.matches-headline { padding: 18px 20px 16px; }
.matches-headline h1 { margin: 6px 0 6px; font: 700 clamp(28px, 3.5vw, 42px)/1.02 "Inter", sans-serif; }
.matches-headline p { margin: 0; max-width: 720px; color: #666; font-size: 14px; }
.matches-panel { padding: 12px; }
.matches-panel__title {
  margin-bottom: 10px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 10px;
  font-weight: 800;
}
.matches-sidebar__stats { display: grid; gap: 6px; }
.sidebar-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid #1e1e1e;
  border-radius: 4px;
  background: #0d0d0d;
}
.sidebar-stat span { color: #555; font-size: 11px; }
.sidebar-stat strong { font: 700 16px/1 "Inter", sans-serif; color: #ddd; }
.matches-filter-list { display: grid; gap: 6px; }
.sidebar-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #1e1e1e;
  border-radius: 4px;
  background: #111;
  color: #aaa;
  cursor: pointer;
  font-size: 12px;
  transition: 120ms;
}
.sidebar-filter strong { color: #ccc; }
.sidebar-filter.is-active { border-color: var(--accent); color: var(--accent); background: #141414; }
.sidebar-filter:hover { border-color: #444; }
.matches-note { display: grid; gap: 6px; color: #555; font-size: 11px; }
.matches-note p { margin: 0; }
.matches-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 12px;
  background: #111;
}
.matches-toolbar__left, .matches-toolbar__right { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.matches-toolbar__label { color: #555; font-size: 11px; }
.sort-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid #2a2a2a;
  border-radius: 3px;
  background: #141414;
  color: #aaa;
  cursor: pointer;
  font-weight: 600;
  font-size: 11px;
  transition: 120ms;
}
.sort-chip.is-active { background: #1e1e1e; border-color: var(--accent); color: var(--accent); }
.matches-feed { display: grid; gap: 14px; }
.matches-feed-section { display: grid; gap: 8px; }
.matches-feed-section__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.matches-feed-section__head h2 { margin: 0; font: 700 20px/1.08 "Inter", sans-serif; color: #ccc; }
.matches-feed-section__badge {
  min-width: 30px;
  padding: 3px 8px;
  border-radius: 3px;
  text-align: center;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  color: #777;
  font-size: 11px;
  font-weight: 700;
}
.tournament-block { overflow: hidden; }
.tournament-block__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid #1e1e1e;
  background: #111;
}
.tournament-block__header h3 { margin: 0; font: 700 15px/1.1 "Inter", sans-serif; color: #bbb; }
.tournament-block__header p { margin: 3px 0 0; color: #555; font-size: 11px; }
.tournament-block__count {
  min-width: 28px;
  padding: 3px 7px;
  border-radius: 3px;
  text-align: center;
  background: rgba(255,102,0,0.12);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
}
.tournament-block__rows { display: grid; }
.match-row-card {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) 100px;
  gap: 12px;
  align-items: center;
  padding: 8px 12px;
  border-top: 1px solid #1a1a1a;
  background: #111;
  transition: background 120ms;
}
.match-row-card:hover { background: #141414; }
.match-row-card__meta { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.match-row-card__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  padding: 3px 6px;
  border-radius: 3px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.match-row-card__status.live { background: rgba(204,0,0,0.2); color: #ff8888; }
.match-row-card__status.upcoming { background: rgba(255,102,0,0.15); color: #ff9944; }
.match-row-card__status.finished { background: rgba(80,80,80,0.15); color: #777; }
.match-row-card__time, .match-row-card__bo { color: #555; font-size: 11px; }
.match-row-card__teams { display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); gap: 10px; align-items: center; }
.match-row-team { display: flex; align-items: center; gap: 7px; min-width: 0; }
.match-row-team--right { justify-content: flex-end; }
.match-row-team__logo { width: 24px; height: 24px; flex: 0 0 24px; object-fit: cover; border-radius: 4px; border: 1px solid #2a2a2a; background: #0a0a0a; }
.match-row-team__name { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 13px; font-weight: 700; color: #ccc; }
.match-row-score { min-width: 50px; text-align: center; font: 700 22px/1 "Inter", sans-serif; color: #ddd; }
.match-row-card__action {
  justify-self: end;
  padding: 6px 10px;
  border: 1px solid #2a2a2a;
  border-radius: 3px;
  background: #141414;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
}

.forum-page {
  display: grid;
  gap: 14px;
}
.forum-hero,
.forum-panel,
.forum-post-card {
  border: 1px solid #252525;
  background: var(--panel);
}
.forum-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.7fr);
  gap: 16px;
  padding: 20px;
  background:
    radial-gradient(circle at top right, rgba(255,102,0,0.16), transparent 35%),
    linear-gradient(180deg, #121212, #0f0f0f);
}
.forum-hero h1,
.forum-thread-head h1 {
  margin: 8px 0 8px;
  font: 700 clamp(28px, 4vw, 44px)/1.02 "Inter", sans-serif;
  color: #eee;
}
.forum-hero p,
.forum-thread-head p {
  margin: 0;
  color: #777;
  font-size: 14px;
}
.forum-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.forum-stat {
  padding: 14px;
  border: 1px solid #252525;
  background: rgba(10,10,10,0.9);
}
.forum-stat span {
  display: block;
  color: #666;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.forum-stat strong {
  display: block;
  margin-top: 6px;
  font: 700 28px/1 "Inter", sans-serif;
  color: #eee;
}
.forum-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}
.forum-category-rail,
.forum-main,
.forum-post-list {
  display: grid;
  gap: 14px;
}
.forum-panel {
  overflow: hidden;
}
.forum-panel__title,
.forum-panel__header {
  padding: 12px 14px;
  border-bottom: 1px solid #1e1e1e;
  background: #111;
}
.forum-panel__title {
  color: #aaa;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.08em;
  font-weight: 800;
}
.forum-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.forum-panel__header h2 {
  margin: 0 0 4px;
  font: 700 22px/1.08 "Inter", sans-serif;
  color: #ddd;
}
.forum-panel__header p {
  margin: 0;
  color: #666;
  font-size: 12px;
}
.forum-category-list,
.forum-note-list,
.forum-topic-list {
  display: grid;
}
.forum-category-link,
.forum-topic-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-top: 1px solid #1a1a1a;
  color: #bbb;
  transition: background 120ms, color 120ms, border-color 120ms;
}
.forum-category-link:first-child,
.forum-topic-row:first-child {
  border-top: 0;
}
.forum-category-link:hover,
.forum-topic-row:hover,
.forum-category-link.is-active {
  background: #151515;
  color: #fff;
}
.forum-category-link.is-active {
  border-left: 2px solid var(--accent);
  padding-left: 12px;
}
.forum-category-link strong {
  font-size: 13px;
}
.forum-category-link span,
.forum-topic-row__stats,
.forum-post-card__meta,
.forum-thread-head__stats {
  color: #666;
  font-size: 11px;
}
.forum-topic-row {
  align-items: flex-start;
}
.forum-topic-row__main {
  min-width: 0;
  display: grid;
  gap: 6px;
}
.forum-topic-row__main strong {
  color: #ddd;
  font-size: 15px;
  line-height: 1.3;
}
.forum-topic-row__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #777;
  font-size: 11px;
}
.forum-topic-row__stats {
  min-width: 110px;
  display: grid;
  gap: 4px;
  justify-items: end;
}
.forum-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255,102,0,0.12);
  border: 1px solid rgba(255,102,0,0.25);
  color: #ff9944;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.forum-note-list p,
.forum-empty {
  margin: 0;
  padding: 12px 14px;
  border-top: 1px solid #1a1a1a;
  color: #666;
  font-size: 12px;
}
.forum-note-list p:first-child,
.forum-empty {
  border-top: 0;
}
.forum-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
}
.forum-form label {
  display: grid;
  gap: 6px;
}
.forum-form span {
  color: #888;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.forum-form input,
.forum-form select,
.forum-form textarea {
  width: 100%;
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  background: #111;
  color: #eee;
  padding: 11px 12px;
  outline: 0;
}
.forum-form input:focus,
.forum-form select:focus,
.forum-form textarea:focus {
  border-color: var(--accent);
}
.forum-form textarea {
  resize: vertical;
  min-height: 140px;
}
.forum-form__full,
.forum-form__actions {
  grid-column: 1 / -1;
}
.forum-thread-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.forum-thread-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
}
.forum-thread-head__stats {
  padding: 9px 12px;
  border: 1px solid #252525;
  background: #111;
  white-space: nowrap;
}
.forum-post-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
}
.forum-post-card__aside {
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 16px;
  border-right: 1px solid #1e1e1e;
  background: #111;
}
.forum-avatar {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: linear-gradient(135deg, #ff6600, #8f2f00);
  color: #000;
  font: 800 22px/1 "Inter", sans-serif;
}
.forum-post-card__aside strong {
  color: #ddd;
  font-size: 15px;
}
.forum-post-card__aside span {
  color: #666;
  font-size: 11px;
}
.forum-post-card__body {
  display: grid;
  gap: 12px;
  padding: 16px;
}
.forum-post-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.forum-post-card__content {
  color: #ccc;
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .layout-home { grid-template-columns: 180px minmax(0, 1fr) 240px; }
  .section-grid, .media-grid, .match-scoreboard, .matches-shell, .forum-layout, .forum-hero { grid-template-columns: 1fr; }
  .match-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stream-wall { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .matches-sidebar { order: 2; }
  .matches-main { order: 1; }
  .news-left-rail, .news-right-rail { order: 2; }
  .news-main-column { order: 1; }
  .forum-post-card { grid-template-columns: 1fr; }
  .forum-post-card__aside { border-right: 0; border-bottom: 1px solid #1e1e1e; }
}
@media (max-width: 860px) {
  .layout-home { grid-template-columns: 1fr; }
  .topbar-inner { flex-wrap: wrap; padding: 8px 0; }
  .topbar-tools { width: 100%; margin-left: 0; justify-content: space-between; border-left: 0; }
  .search-form input { width: 100%; }
  .hero, .section-page { padding: 20px; }
  .hero-stats, .match-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stream-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .matches-headline { padding: 16px; }
  .matches-toolbar { align-items: flex-start; flex-direction: column; }
  .match-row-card { grid-template-columns: 1fr; }
  .match-row-card__action { justify-self: start; }
  .news-feature-item { grid-template-columns: 1fr; }
  .news-feature-item__meta { text-align: left; }
  .news-tournament-tabs { grid-template-columns: repeat(2, 1fr); }
  .forum-form { grid-template-columns: 1fr; }
  .forum-thread-head,
  .forum-panel__header,
  .forum-topic-row { grid-template-columns: 1fr; }
  .forum-panel__header,
  .forum-thread-head,
  .forum-topic-row {
    display: grid;
    justify-content: stretch;
  }
  .forum-topic-row__stats { justify-items: start; min-width: 0; }
}
@media (max-width: 640px) {
  body { font-size: 13px; }
  .topbar-inner, .page-wrap, .footer-inner { width: min(100%, calc(100% - 16px)); }
  .topbar { position: static; }
  .topbar-inner { gap: 10px; min-height: auto; padding: 8px 0; }
  .brand { width: 100%; padding: 0 10px 0 0; }
  .brand-mark { width: 36px; height: 36px; border-radius: 4px; font-size: 14px; }
  .brand-copy strong { font-size: 16px; }
  .brand-copy span { display: none; }
  .topbar-burger { display: inline-flex; }
  .topbar-menu { display: none; width: 100%; }
  .topbar-menu.is-open { display: flex; flex-direction: column; }
  .main-nav { width: 100%; flex-direction: column; }
  .main-nav a { width: 100%; padding: 10px 12px; font-size: 13px; border-right: 0; border-bottom: 1px solid #1a1a1a; }
  .topbar-tools { width: 100%; flex-direction: column; align-items: stretch; gap: 6px; }
  .search-form { width: 100%; }
  .search-form input { min-width: 0; font-size: 13px; height: 40px; }
  .search-form .button { height: 40px; padding: 0 12px; }
  .utility-link { justify-content: center; min-height: 40px; border: 1px solid #222; border-radius: 4px; background: #111; }
  .page-wrap { padding: 14px 0 24px; }
  .hero, .section-page, .headline, .media-panel, .footer-panel { padding: 16px; }
  .hero h1, .section-page h1 { margin: 8px 0 8px; font-size: clamp(24px, 9vw, 36px); }
  .hero p, .section-page p { font-size: 13px; }
  .button-row { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; min-height: 40px; }
  .hero-stats, .match-grid { grid-template-columns: 1fr; }
  .stat-box { padding: 12px; }
  .stat-box strong { font-size: 22px; }
  .card-head { padding: 8px 12px; }
  .card-body { padding: 10px; }
  .list a, .list .list-row { padding: 10px 12px; align-items: flex-start; }
  .matches-panel, .matches-headline, .matches-toolbar, .tournament-block { border-radius: 4px; }
  .matches-headline { padding: 14px; }
  .matches-toolbar { padding: 8px 10px; }
  .matches-toolbar__left, .matches-toolbar__right { width: 100%; }
  .matches-toolbar__left { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .filter-chip, .sort-chip { width: 100%; }
  .sidebar-filter { min-height: 40px; }
  .tournament-block__header { padding: 8px 10px; align-items: flex-start; }
  .tournament-block__header h3 { font-size: 14px; }
  .match-row-card { gap: 8px; padding: 8px 10px; }
  .match-row-card__teams { grid-template-columns: 1fr; }
  .match-row-team--right { justify-content: flex-start; }
  .match-row-score { text-align: left; font-size: 20px; }
  .match-row-card__action { width: 100%; text-align: center; justify-self: stretch; }
  .match-hero__header { flex-direction: column; }
  .match-scoreboard { padding: 14px; gap: 12px; }
  .scoreboard-team, .scoreboard-team:last-child { text-align: left; }
  .scoreboard-team__top, .scoreboard-team:last-child .scoreboard-team__top { justify-content: flex-start; }
  .scoreboard-logo { width: 42px; height: 42px; }
  .scoreboard-name { font-size: 22px; }
  .scoreboard-score { font-size: 30px; }
  .map-row { padding: 8px 10px; }
  .stream-embed { border-radius: 4px; }
  .footer-inner { padding: 18px 0 24px; }
  .footer-meta { font-size: 11px; gap: 8px; }
  .forum-hero,
  .forum-thread-head,
  .forum-form,
  .forum-post-card__body,
  .forum-post-card__aside { padding: 14px; }
  .forum-hero__stats { grid-template-columns: 1fr; }
  .forum-thread-top { flex-wrap: wrap; }
}
@media (max-width: 400px) {
  .topbar-inner, .page-wrap, .footer-inner { width: min(100%, calc(100% - 12px)); }
  .hero, .section-page, .headline, .media-panel, .footer-panel, .matches-headline { padding: 12px; }
  .hero-stats { grid-template-columns: 1fr; }
  .matches-toolbar__left { grid-template-columns: 1fr; }
  .search-form { flex-direction: column; align-items: stretch; }
  .search-form .button { width: 100%; }
  .list a, .list .list-row { flex-direction: column; gap: 4px; }
  .list a small, .list .list-row small { max-width: none; text-align: left; }
}

/* ===== Scene Refresh ===== */
:root {
  --scene-bg: #0b0f14;
  --scene-topbar: #394450;
  --scene-panel: #28323d;
  --scene-line: #4a5563;
  --scene-soft: #94a4b7;
  --scene-text: #eef3f8;
  --scene-blue: #4c96c7;
  --scene-orange: #d97d2d;
  --scene-green: #7aac0d;
}

body {
  background:
    radial-gradient(circle at top, #1a2330 0%, #0d1218 42%, #080b0f 100%) !important;
  color: var(--scene-text);
  font: 13px/1.45 "Segoe UI", "Trebuchet MS", sans-serif;
}

.site-shell {
  background: transparent;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--scene-topbar);
  border-bottom: 1px solid #566273;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
}

.topbar-inner,
.page-wrap--scene,
.footer-inner {
  width: min(1020px, calc(100% - 18px));
  margin: 0 auto;
}

.topbar-inner {
  min-height: 40px;
}

.page-wrap--scene {
  padding: 10px 0 24px;
}

.brand {
  gap: 12px;
  padding: 0 14px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-mark {
  width: 46px;
  height: 38px;
  border-radius: 0;
  background: var(--scene-blue);
  color: #fff;
  font: 800 18px/1 "Trebuchet MS", sans-serif;
}

.brand-copy strong {
  font: 800 24px/1 "Trebuchet MS", sans-serif;
  color: #fff;
}

.brand-copy span {
  display: block;
  margin-top: 2px;
  color: #b9c4d1;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.main-nav a {
  height: 40px;
  padding: 0 14px;
  color: #d2dae4;
  font-size: 12px;
  border-right: 0;
}

.main-nav a:hover {
  background: rgba(0, 0, 0, 0.12);
  color: #fff;
}

.main-nav a.is-active {
  background: rgba(0, 0, 0, 0.18);
  color: #fff;
  box-shadow: inset 0 -2px 0 #d38a3a;
}

.topbar-tools {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.search-form input {
  height: 40px;
  width: 150px;
  background: rgba(0, 0, 0, 0.14);
  color: #fff;
}

.search-form input::placeholder {
  color: #adb7c2;
}

.search-form .button,
.utility-link {
  height: 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.utility-link {
  color: #d2dae4;
}

.utility-link--icon {
  width: 40px;
  justify-content: center;
  padding: 0;
  font-size: 18px;
  font-weight: 700;
}

.button-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.1);
  color: #d2dae4;
}

.site-main {
  min-height: calc(100vh - 86px);
}

.footer {
  margin-top: 22px;
  border-top: 1px solid #2a3340;
  background: rgba(10, 13, 17, 0.92);
}

.footer-inner {
  padding: 16px 0 22px;
}

.footer-panel,
.footer-actions {
  display: none;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #6c7888;
  font-size: 11px;
}

.scene-shell {
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr) 164px;
  gap: 12px;
  align-items: start;
}

.scene-shell--matches {
  grid-template-columns: 176px minmax(0, 1fr) 164px;
}

.scene-left-rail,
.scene-main-column,
.scene-right-rail {
  display: grid;
  gap: 12px;
  align-content: start;
}

.scene-main-column--matches {
  gap: 10px;
}

.scene-panel {
  border: 1px solid var(--scene-line);
  background: rgba(40, 50, 61, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
}

.scene-panel__head {
  padding: 7px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(16, 20, 24, 0.42);
  color: #b7c4d2;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.scene-brand-panel__body {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  padding: 12px;
}

.scene-brand-panel__mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--scene-blue);
  color: #fff;
  font: 800 18px/1 "Trebuchet MS", sans-serif;
}

.scene-brand-panel__body strong {
  display: block;
  font-size: 18px;
  color: #fff;
}

.scene-brand-panel__body span {
  display: block;
  margin-top: 4px;
  color: var(--scene-soft);
  font-size: 11px;
}

.scene-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.scene-summary-grid--stacked {
  grid-template-columns: 1fr;
}

.scene-summary-grid > div {
  padding: 10px;
  background: rgba(16, 20, 24, 0.38);
}

.scene-summary-grid span {
  display: block;
  color: #91a0b3;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.scene-summary-grid strong {
  display: block;
  margin-top: 3px;
  color: #fff;
  font-size: 18px;
}

.scene-list,
.scene-chip-stack,
.scene-activity-list,
.scene-mini-match-list,
.scene-news-list,
.scene-focus-stack {
  display: grid;
}

.scene-list__row,
.scene-activity-list__row,
.scene-mini-match,
.scene-focus-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: #dee6ef;
  transition: background 120ms ease;
}

.scene-list__row:hover,
.scene-activity-list__row:hover,
.scene-mini-match:hover,
.scene-focus-row:hover {
  background: rgba(255, 255, 255, 0.05);
}

.scene-list__row small,
.scene-activity-list__row small,
.scene-mini-match small,
.scene-focus-row small {
  color: #94a4b7;
  font-size: 11px;
}

.scene-chip-stack {
  gap: 8px;
  padding: 10px;
}

.scene-event-chip {
  display: grid;
  gap: 2px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 11, 15, 0.25);
  color: #e7edf5;
}

.scene-event-chip strong {
  font-size: 12px;
}

.scene-event-chip span {
  color: #97a5b8;
  font-size: 11px;
}

.scene-brandbar {
  display: grid;
  grid-template-columns: 72px auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border: 1px solid var(--scene-line);
  background: #20262d;
}

.scene-brandbar--compact {
  padding: 8px 12px;
}

.scene-brandbar__logo {
  width: 72px;
  height: 60px;
  display: grid;
  place-items: center;
  background: var(--scene-blue);
  color: #fff;
  font: 800 24px/1 "Trebuchet MS", sans-serif;
}

.scene-brandbar__copy strong {
  display: block;
  font: 800 34px/1 "Trebuchet MS", sans-serif;
  color: #fff;
  letter-spacing: -0.02em;
}

.scene-brandbar__copy span {
  display: block;
  margin-top: 4px;
  color: #9fafc2;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.scene-brandbar__ticker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.scene-ticker-card {
  min-height: 60px;
  display: grid;
  gap: 6px;
  align-content: center;
  padding: 7px 10px;
  background: linear-gradient(90deg, #6d2c0a, #c2661c 48%, #6d2c0a);
  color: #fff;
}

.scene-ticker-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 11px;
}

.scene-ticker-card__top small {
  color: #ffe0c2;
  font-weight: 700;
}

.scene-ticker-card__teams {
  display: grid;
  gap: 3px;
}

.scene-ticker-card__teams strong {
  font-size: 12px;
}

.scene-note-banner {
  padding: 8px 12px;
  border: 1px solid var(--scene-line);
  background: rgba(76, 150, 199, 0.15);
  color: #dfeaf6;
  font-size: 12px;
}

.scene-note-banner.is-warning {
  background: rgba(217, 125, 45, 0.18);
  border-color: rgba(217, 125, 45, 0.5);
  color: #ffd7a7;
}

.scene-home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 184px;
  gap: 12px;
}

.scene-event-hero {
  position: relative;
  overflow: hidden;
  min-height: 228px;
  border: 1px solid var(--scene-line);
  background: linear-gradient(135deg, #264266 0%, #283245 42%, #3a283d 100%);
}

.scene-event-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -25% 0;
  height: 120px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent);
  pointer-events: none;
}

.scene-event-hero__status {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 3px 7px;
  background: rgba(20, 24, 31, 0.42);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.scene-event-hero__status.is-live {
  color: #ff9e9e;
}

.scene-event-hero__status.is-upcoming {
  color: #ffe09c;
}

.scene-event-hero__status.is-finished {
  color: #d2d7df;
}

.scene-event-hero__center {
  padding: 18px 18px 8px;
  text-align: center;
}

.scene-event-hero__center span {
  display: block;
  color: #f3f7fb;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.05;
}

.scene-event-hero__center strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font: 800 clamp(36px, 4vw, 58px)/1 "Trebuchet MS", sans-serif;
}

.scene-event-hero__center small {
  display: block;
  margin-top: 6px;
  color: #c6cfda;
  font-size: 13px;
}

.scene-event-hero__teams {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 8px 18px 18px;
}

.scene-side-team {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.scene-side-team--right {
  justify-content: flex-end;
  text-align: right;
}

.scene-side-team__logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.18);
  background: #12202d;
  object-fit: cover;
}

.scene-side-team__logo--fallback {
  display: grid;
  place-items: center;
  font-weight: 800;
}

.scene-side-team strong {
  display: block;
  font-size: 18px;
}

.scene-side-team span {
  display: block;
  margin-top: 4px;
  color: #d2dde8;
  font-size: 20px;
  font-weight: 700;
}

.scene-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #27313c;
}

.scene-tabs a {
  padding: 10px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  color: #d0d9e3;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
}

.scene-tabs a.is-active,
.scene-tabs a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.scene-panel--dense {
  overflow: hidden;
}

.scene-mini-match-list {
  background: rgba(18, 22, 27, 0.18);
}

.scene-mini-match {
  min-height: 54px;
}

.scene-mini-match div {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.scene-mini-match span {
  font-size: 12px;
  color: #edf3f9;
}

.scene-story-hero {
  display: block;
  min-height: 200px;
  padding: 18px 20px;
  border: 1px solid var(--scene-line);
  background: linear-gradient(120deg, #3d0c11 0%, #60181e 45%, #242d38 100%);
  color: #fff;
}

.scene-story-hero__badge {
  display: inline-flex;
  padding: 4px 8px;
  background: rgba(0, 0, 0, 0.28);
  color: #ffd8a4;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.scene-story-hero h2 {
  max-width: 680px;
  margin: 16px 0 8px;
  color: #fff;
  font: 800 clamp(30px, 4vw, 56px)/1 "Trebuchet MS", sans-serif;
  letter-spacing: -0.03em;
}

.scene-story-hero p {
  max-width: 620px;
  margin: 0;
  color: #d5deea;
  font-size: 15px;
  line-height: 1.55;
}

.scene-panel--news {
  overflow: hidden;
}

.scene-news-item {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 105px;
  gap: 12px;
  padding: 10px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(18, 22, 27, 0.18);
  color: #f1f5f9;
}

.scene-news-item.is-featured {
  background: rgba(255, 255, 255, 0.04);
}

.scene-news-item__tag {
  width: fit-content;
  height: fit-content;
  padding: 4px 8px;
  background: rgba(76, 150, 199, 0.16);
  color: #bbe1ff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.scene-news-item__copy strong {
  display: block;
  font-size: 16px;
  line-height: 1.35;
}

.scene-news-item__copy p {
  margin: 6px 0 0;
  color: #9fafc2;
  font-size: 12px;
  line-height: 1.45;
}

.scene-news-item__meta {
  display: grid;
  justify-items: end;
  align-content: start;
  gap: 6px;
  color: #a5b3c4;
  font-size: 11px;
}

.scene-news-item__meta small {
  color: #7e8a9a;
}

.scene-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.scene-section-head h1,
.scene-section-head h2 {
  margin: 0;
  color: #eaf1f8;
  font: 800 24px/1.05 "Trebuchet MS", sans-serif;
}

.scene-section-head p {
  margin: 6px 0 0;
  color: #90a0b3;
  font-size: 12px;
}

.scene-sort-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.scene-sort-pill {
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #c8d3de;
  font-size: 11px;
}

.scene-sort-pill.is-active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.scene-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  border: 1px solid #7b9620;
  background: linear-gradient(120deg, #5b830a 0%, var(--scene-green) 40%, #87b811 100%);
  color: #122000;
}

.scene-strip-match {
  display: grid;
  gap: 6px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #102007;
}

.scene-strip-match small {
  color: rgba(18, 32, 7, 0.72);
  font-weight: 700;
}

.scene-strip-match__teams {
  display: grid;
  gap: 4px;
}

.scene-strip-match__teams span {
  color: #fffde2;
  font-size: 13px;
  font-weight: 700;
}

.scene-strip-match strong {
  font-size: 12px;
}

.scene-calendar {
  padding: 8px;
}

.scene-calendar__weekdays,
.scene-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.scene-calendar__weekdays span {
  padding: 4px 0;
  color: #9dadc0;
  text-align: center;
  font-size: 10px;
  text-transform: uppercase;
}

.scene-calendar__grid span {
  min-height: 28px;
  display: grid;
  place-items: center;
  background: rgba(18, 22, 27, 0.35);
  color: #d9e1ea;
  font-size: 12px;
}

.scene-calendar__grid span.outside {
  color: #5f6c7c;
}

.scene-calendar__grid span.active {
  background: var(--scene-blue);
  color: #fff;
  font-weight: 800;
}

.scene-filter-list {
  display: grid;
}

.scene-filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: #dfe7f1;
}

.scene-filter-row strong {
  color: #fff;
  font-size: 12px;
}

.scene-tournament-card {
  overflow: hidden;
  border: 1px solid var(--scene-line);
  background: rgba(40, 50, 61, 0.95);
}

.scene-tournament-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 12px;
  background: rgba(16, 20, 24, 0.42);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.scene-tournament-card__head span {
  display: block;
  color: #93a2b4;
  font-size: 11px;
}

.scene-tournament-card__head strong {
  display: block;
  color: #fff;
  font-size: 16px;
}

.scene-tournament-card__head small {
  color: #cfd7e0;
  font-size: 11px;
}

.scene-tournament-card__body {
  display: grid;
}

.scene-match-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 140px 52px;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(18, 22, 27, 0.16);
  color: #f0f5fa;
}

.scene-match-row:hover {
  background: rgba(255, 255, 255, 0.04);
}

.scene-match-row.is-selected {
  box-shadow: inset 3px 0 0 var(--scene-blue);
  background: rgba(76, 150, 199, 0.08);
}

.scene-match-row__time {
  display: grid;
  gap: 6px;
}

.scene-match-row__time strong {
  color: #fff;
  font-size: 18px;
}

.scene-match-row__time small {
  color: #93a2b4;
  font-size: 11px;
}

.scene-badge {
  width: fit-content;
  padding: 3px 7px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.scene-badge--live {
  color: #ff9e9e;
}

.scene-badge--upcoming {
  color: #ffe5a1;
}

.scene-badge--finished {
  color: #d7dde4;
}

.scene-match-row__teams {
  display: grid;
  gap: 6px;
}

.scene-team-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.scene-team-line__main {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.scene-team-line__main span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
}

.scene-team-line strong {
  color: #fff;
  font-size: 18px;
}

.scene-team-line__logo {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: #16222e;
  object-fit: cover;
}

.scene-team-line__logo--fallback {
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.scene-match-row__summary {
  display: grid;
  gap: 4px;
  justify-items: end;
  text-align: right;
}

.scene-match-row__summary span {
  color: #93a2b4;
  font-size: 11px;
}

.scene-match-row__summary strong {
  color: #fff;
  font-size: 12px;
  line-height: 1.35;
}

.scene-match-row__pin {
  width: 42px;
  height: 32px;
  justify-self: end;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #dfe7f1;
  font-size: 10px;
  font-weight: 800;
}

.scene-empty-card {
  padding: 16px 18px;
}

.scene-empty-card strong {
  display: block;
  color: #fff;
  font-size: 15px;
}

.scene-empty-card p {
  margin: 6px 0 0;
  color: #93a2b4;
}

.scene-focus-panel {
  overflow: hidden;
}

.scene-focus-row div {
  display: grid;
  gap: 4px;
}

.scene-focus-row span {
  color: #93a2b4;
  font-size: 11px;
}

.scene-focus-row strong {
  color: #fff;
  font-size: 14px;
}

@media (max-width: 1100px) {
  .scene-shell,
  .scene-shell--matches {
    grid-template-columns: 1fr;
  }

  .scene-left-rail,
  .scene-right-rail {
    order: 2;
  }

  .scene-main-column {
    order: 1;
  }
}

@media (max-width: 860px) {
  .scene-home-hero {
    grid-template-columns: 1fr;
  }

  .scene-brandbar,
  .scene-brandbar--compact {
    grid-template-columns: 60px 1fr;
  }

  .scene-brandbar__ticker {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .scene-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scene-match-row {
    grid-template-columns: 1fr;
  }

  .scene-match-row__summary,
  .scene-match-row__pin {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .topbar-inner,
  .page-wrap--scene,
  .footer-inner {
    width: min(100%, calc(100% - 12px));
  }

  .brand-copy span {
    display: none;
  }

  .scene-shell,
  .scene-shell--matches,
  .scene-home-hero,
  .scene-brandbar__ticker,
  .scene-strip {
    grid-template-columns: 1fr;
  }

  .scene-brandbar {
    grid-template-columns: 56px 1fr;
  }

  .scene-brandbar__logo {
    width: 56px;
    height: 56px;
  }

  .scene-brandbar__copy strong {
    font-size: 28px;
  }

  .scene-event-hero__teams {
    grid-template-columns: 1fr;
  }

  .scene-side-team--right {
    justify-content: flex-start;
    text-align: left;
  }

  .scene-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .scene-news-item {
    grid-template-columns: 1fr;
  }

  .scene-news-item__meta {
    justify-items: start;
  }

  .scene-summary-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== HLTV Closer Pass ===== */
:root {
  --scene-bg: #0d1218;
  --scene-topbar: #37424d;
  --scene-panel: #2e3844;
  --scene-line: #445262;
  --scene-soft: #92a3b5;
  --scene-text: #eef4fb;
  --scene-blue: #3f88bc;
  --scene-orange: #d86b19;
  --scene-green: #84b90f;
}

body {
  background:
    radial-gradient(circle at 50% -10%, rgba(84, 110, 139, 0.38), transparent 30%),
    linear-gradient(180deg, #081017 0%, #0a0d12 100%) !important;
}

.topbar {
  background: var(--scene-topbar);
  border-bottom: 1px solid #505d6b;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.34);
}

.topbar-inner,
.page-wrap--scene,
.footer-inner {
  width: min(100%, 1000px);
}

.topbar-inner {
  min-height: 38px;
}

.brand {
  gap: 10px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  font-size: 18px;
}

.brand-copy strong {
  font-size: 16px;
}

.brand-copy span {
  font-size: 10px;
  color: #bbc7d2;
}

.main-nav {
  gap: 2px;
}

.main-nav a {
  min-height: 38px;
  padding: 10px 8px;
  color: #c9d3dd;
  font-size: 14px;
}

.main-nav a:hover,
.main-nav a.is-active {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.search-form input {
  height: 30px;
  border-color: #5c6977;
  background: #44515e;
  color: #f6fbff;
}

.search-form input::placeholder {
  color: #d5dee7;
}

.search-form .button {
  height: 30px;
}

.utility-link {
  color: #f3f8fc;
}

.page-wrap--scene {
  padding-top: 12px;
  padding-bottom: 18px;
}

.scene-shell,
.scene-shell--matches {
  grid-template-columns: 158px minmax(0, 1fr) 150px;
  gap: 10px;
}

.scene-left-rail,
.scene-main-column,
.scene-right-rail,
.scene-main-column--matches {
  gap: 10px;
}

.scene-panel {
  background: linear-gradient(180deg, #313b47 0%, #2a333e 100%);
  border-color: #455363;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 22px rgba(0, 0, 0, 0.16);
}

.scene-panel__head {
  padding: 6px 10px;
  background: #303a45;
  color: #dbe5ee;
  letter-spacing: 0.05em;
}

.scene-brand-panel__body {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent);
}

.scene-brand-panel__mark {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--scene-blue);
}

.scene-summary-grid > div {
  background: rgba(0, 0, 0, 0.12);
}

.scene-list__row,
.scene-event-chip,
.scene-mini-match,
.scene-activity-list__row,
.scene-focus-row {
  background: rgba(0, 0, 0, 0.12);
}

.scene-list__row:hover,
.scene-event-chip:hover,
.scene-mini-match:hover,
.scene-activity-list__row:hover,
.scene-focus-row:hover {
  background: rgba(255, 255, 255, 0.06);
}

.scene-activity-list__row {
  border-left: 2px solid #e28a2d;
}

.scene-brandbar {
  grid-template-columns: 66px auto minmax(0, 1fr);
  padding: 10px;
  background: #1f262d;
}

.scene-brandbar__logo {
  width: 62px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.scene-brandbar__copy strong {
  font-size: 32px;
  letter-spacing: -0.04em;
}

.scene-brandbar__copy span {
  color: #8295a8;
  font-size: 10px;
}

.scene-ticker-card {
  min-height: 56px;
  border: 1px solid rgba(0, 0, 0, 0.34);
  background: linear-gradient(180deg, #dc7120, #76320f);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.scene-ticker-card__top span {
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(73, 21, 5, 0.92);
  font-size: 10px;
}

.scene-home-hero {
  grid-template-columns: minmax(0, 1fr) 158px;
  gap: 10px;
}

.scene-event-hero {
  position: relative;
  overflow: hidden;
  min-height: 212px;
  background: linear-gradient(90deg, #243652 0%, #2c3559 48%, #4a3a4e 100%);
}

.scene-event-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.14), transparent 32%),
    radial-gradient(circle at 82% 45%, rgba(223, 187, 82, 0.22), transparent 29%),
    linear-gradient(118deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.08) 45%, rgba(255, 255, 255, 0.03));
  pointer-events: none;
}

.scene-event-hero__status,
.scene-event-hero__center,
.scene-event-hero__teams,
.scene-tabs {
  position: relative;
  z-index: 1;
}

.scene-event-hero__status {
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.scene-event-hero__center strong {
  font-size: 56px;
  line-height: 1;
}

.scene-side-team {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(0, 0, 0, 0.18);
}

.scene-tabs {
  background: #2b3540;
}

.scene-tabs a {
  padding: 11px 0;
  font-size: 13px;
}

.scene-story-hero {
  position: relative;
  overflow: hidden;
  min-height: 214px;
  background: linear-gradient(90deg, rgba(55, 8, 9, 0.95), rgba(118, 18, 18, 0.86) 46%, rgba(19, 31, 44, 0.88));
}

.scene-story-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(112deg, transparent 0 45%, rgba(255, 255, 255, 0.07) 45% 48%, transparent 48% 61%, rgba(255, 255, 255, 0.05) 61% 64%, transparent 64%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.scene-story-hero__badge,
.scene-story-hero h2,
.scene-story-hero p {
  position: relative;
  z-index: 1;
}

.scene-panel--news {
  overflow: hidden;
}

.scene-news-item {
  grid-template-columns: 70px minmax(0, 1fr) 92px;
  gap: 10px;
  padding: 9px 10px;
}

.scene-news-item__copy strong {
  font-size: 16px;
}

.scene-news-item__copy p {
  font-size: 14px;
}

.scene-strip {
  gap: 8px;
  padding: 10px;
  border-color: #7d9e21;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.scene-strip-match {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border: 1px solid rgba(57, 78, 12, 0.28);
  background: rgba(255, 255, 255, 0.12);
}

.scene-strip-match small {
  grid-column: 1 / -1;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.scene-strip-match__teams {
  gap: 2px;
}

.scene-strip-match__teams span {
  color: #f7ffe1;
}

.scene-strip-match__odds {
  display: grid;
  gap: 4px;
  justify-items: end;
}

.scene-strip-match__odds span {
  min-width: 48px;
  padding: 4px 0;
  border-radius: 3px;
  background: #0d5d76;
  color: #f2fbff;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.scene-section-head h1,
.scene-section-head h2 {
  color: #f3f8fc;
  font: 800 18px/1.15 "Trebuchet MS", sans-serif;
}

.scene-section-head p {
  font-size: 12px;
  color: #9eafc0;
}

.scene-sort-pill {
  background: #3a4652;
}

.scene-sort-pill.is-active {
  background: #596776;
}

.scene-tournament-card {
  background: linear-gradient(180deg, rgba(49, 58, 70, 0.98), rgba(39, 47, 58, 0.98));
}

.scene-tournament-card__head {
  background: rgba(13, 17, 21, 0.32);
}

.scene-match-row {
  grid-template-columns: 84px minmax(0, 1fr) 140px 72px 44px;
  gap: 10px;
  padding: 10px;
  background: linear-gradient(180deg, rgba(73, 86, 102, 0.18), rgba(28, 35, 43, 0.3));
}

.scene-match-row.is-selected {
  box-shadow: inset 3px 0 0 #8fb4cb;
  background: linear-gradient(180deg, rgba(79, 118, 145, 0.24), rgba(29, 35, 43, 0.34));
}

.scene-badge {
  border-radius: 2px;
  background: #c23b23;
  color: #fff;
}

.scene-badge--upcoming {
  background: #6e531f;
  color: #ffefbf;
}

.scene-badge--finished {
  background: #485463;
  color: #e3eaf2;
}

.scene-match-row__time strong,
.scene-team-line strong {
  color: #fff;
}

.scene-team-line__logo {
  width: 22px;
  height: 22px;
}

.scene-match-row__summary {
  gap: 6px;
}

.scene-match-row__odds {
  display: grid;
  gap: 6px;
  justify-items: end;
}

.scene-match-row__odds span {
  width: 60px;
  padding: 5px 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  background: #36424e;
  color: #dfe8ef;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.scene-match-row__pin {
  width: 38px;
  height: 30px;
  border-radius: 3px;
  background: #36424e;
}

.scene-focus-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
}

.scene-focus-row__odds {
  display: grid;
  gap: 4px;
}

.scene-focus-row__odds span {
  width: 54px;
  padding: 5px 0;
  border-radius: 3px;
  background: #3b4652;
  color: #f2f8fc;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.scene-focus-row small {
  color: #9fafc0;
  justify-self: end;
  text-align: right;
}

.scene-filter-row {
  padding: 4px 0;
}

.scene-calendar__grid span {
  min-height: 28px;
  background: rgba(0, 0, 0, 0.14);
}

.scene-calendar__grid span.active {
  background: #596879;
  color: #fff;
}

.scene-note-banner {
  background: #42505d;
  border-color: #5b6a78;
}

.footer {
  background: rgba(0, 0, 0, 0.16);
}

@media (max-width: 1100px) {
  .scene-shell,
  .scene-shell--matches {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .scene-brandbar,
  .scene-brandbar--compact,
  .scene-home-hero {
    grid-template-columns: 1fr;
  }

  .scene-match-row,
  .scene-focus-row,
  .scene-strip-match {
    grid-template-columns: 1fr;
  }

  .scene-strip-match__odds,
  .scene-match-row__odds,
  .scene-focus-row__odds,
  .scene-match-row__summary,
  .scene-match-row__pin,
  .scene-focus-row small {
    justify-items: start;
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .topbar-inner,
  .page-wrap--scene,
  .footer-inner {
    width: min(100%, calc(100% - 12px));
  }

  .main-nav a {
    min-height: 34px;
    padding: 8px 6px;
    font-size: 13px;
  }

  .scene-strip,
  .scene-brandbar__ticker {
    grid-template-columns: 1fr;
  }
}

/* ===== HLTV Tight Pass ===== */
:root {
  --hltv-page: #0c1117;
  --hltv-top: #2f3b48;
  --hltv-panel: #2f3b47;
  --hltv-panel-dark: #202830;
  --hltv-panel-soft: #384655;
  --hltv-line: #4a5968;
  --hltv-title: #a9c2d9;
  --hltv-text: #d7e1eb;
  --hltv-muted: #8898a8;
  --hltv-blue: #2f78af;
  --hltv-ad: #ff6b16;
  --hltv-green: #a5d400;
}

body {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0, rgba(0, 0, 0, 0.72) 17%, transparent 28%, transparent 72%, rgba(0, 0, 0, 0.72) 83%, rgba(0, 0, 0, 0.92) 100%),
    radial-gradient(circle at 15% 80%, rgba(31, 105, 118, 0.36), transparent 22%),
    radial-gradient(circle at 85% 80%, rgba(31, 105, 118, 0.34), transparent 22%),
    linear-gradient(180deg, #101a23 0, #05080b 100%) !important;
  color: var(--hltv-text);
}

.site-shell {
  background: transparent;
}

.site-main {
  min-height: calc(100vh - 38px);
}

.topbar {
  background: #303b47;
  border-bottom: 1px solid #1c252e;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.topbar-inner,
.page-wrap--scene,
.footer-inner {
  width: 1000px;
  max-width: calc(100% - 18px);
}

.topbar-inner {
  min-height: 40px;
}

.brand {
  min-width: 118px;
  padding: 0 12px 0 0;
  border-right: 0;
}

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 0;
  background: var(--hltv-blue);
  color: #fff;
  font-size: 14px;
}

.brand-copy strong {
  font: 800 15px/1 Arial, sans-serif;
}

.brand-copy span {
  display: none;
}

.main-nav a {
  min-height: 40px;
  padding: 0 10px;
  border-right: 0;
  color: #aeb9c4;
  font: 400 14px/40px Arial, sans-serif;
  letter-spacing: 0;
}

.main-nav a:hover,
.main-nav a.is-active {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.topbar-tools {
  gap: 8px;
  border-left: 0;
}

.search-form {
  border-left: 0;
}

.search-form input {
  width: 160px;
  height: 30px;
  border: 1px solid #455463;
  border-radius: 2px;
  background: #3a4654;
  color: #d9e4ed;
}

.search-form .button {
  display: none;
}

.utility-link {
  height: 40px;
  padding: 0 4px;
  border-left: 0;
  color: #aeb9c4;
  font-weight: 400;
}

.page-wrap--scene {
  padding: 10px 0 16px;
  background: #161c22;
}

.scene-shell,
.scene-shell--matches {
  display: grid;
  grid-template-columns: 166px minmax(0, 1fr) 158px;
  gap: 8px;
  padding: 0 10px 10px;
}

.scene-left-rail,
.scene-right-rail,
.scene-main-column,
.scene-main-column--matches {
  gap: 8px;
}

.scene-panel,
.scene-tournament-card,
.scene-story-hero,
.scene-event-hero,
.scene-brandbar,
.scene-note-banner {
  border: 1px solid var(--hltv-line);
  border-radius: 0;
  background: var(--hltv-panel);
  box-shadow: none;
}

.scene-panel__head,
.scene-tournament-card__head {
  min-height: 25px;
  padding: 6px 8px;
  border-bottom: 1px solid #26313c;
  background: #344251;
  color: #edf3f8;
  font: 700 10px/1.2 Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
}

.scene-brand-panel {
  background:
    radial-gradient(circle at 72% 74%, rgba(255, 125, 30, 0.5), transparent 30%),
    linear-gradient(180deg, #111 0, #210b03 50%, #3a1202 100%);
  border-color: #2d2d2d;
}

.scene-brand-panel .scene-panel__head {
  background: transparent;
  border-bottom: 0;
  color: var(--hltv-ad);
  font-size: 26px;
  text-align: center;
}

.scene-brand-panel__body {
  grid-template-columns: 1fr;
  padding: 8px 10px;
  text-align: center;
}

.scene-brand-panel__mark {
  display: none;
}

.scene-brand-panel__body strong {
  color: #fff;
  font-size: 14px;
}

.scene-brand-panel__body span {
  color: #c8c8c8;
  font-size: 11px;
}

.scene-summary-grid {
  grid-template-columns: 1fr;
  padding: 6px;
  gap: 5px;
}

.scene-summary-grid > div {
  padding: 6px;
  border: 0;
  background: rgba(0, 0, 0, 0.32);
}

.scene-summary-grid span,
.scene-event-chip span,
.scene-list__row small,
.scene-activity-list__row small {
  color: var(--hltv-muted);
}

.scene-summary-grid strong {
  color: #fff;
  font-size: 13px;
}

.scene-list__row,
.scene-event-chip,
.scene-mini-match,
.scene-activity-list__row,
.scene-filter-row,
.scene-focus-row {
  padding: 7px 8px;
  border-top: 1px solid #26313b;
  background: #2d3844;
  color: var(--hltv-title);
  font: 400 12px/1.25 Arial, sans-serif;
}

.scene-list__row:hover,
.scene-event-chip:hover,
.scene-mini-match:hover,
.scene-activity-list__row:hover,
.scene-filter-row:hover,
.scene-focus-row:hover {
  background: #354252;
}

.scene-activity-list__row {
  border-left: 2px solid #e6a300;
}

.scene-brandbar {
  grid-template-columns: 176px minmax(0, 1fr);
  min-height: 76px;
  padding: 10px;
  background: #171d23;
}

.scene-brandbar__logo {
  width: 60px;
  height: 60px;
  background: var(--hltv-blue);
  border: 0;
  border-radius: 0;
  color: #fff;
  font: 800 20px/1 Arial, sans-serif;
}

.scene-brandbar__copy {
  margin-left: -102px;
  padding-left: 70px;
}

.scene-brandbar__copy strong {
  color: #fff;
  font: 800 40px/1 Arial, sans-serif;
  letter-spacing: -1px;
}

.scene-brandbar__copy span {
  color: #8e9ba7;
  font-size: 11px;
}

.scene-brandbar__ticker {
  grid-column: 2;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
}

.scene-ticker-card {
  min-height: 58px;
  padding: 5px 8px;
  border: 0;
  border-radius: 3px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(55, 13, 2, 0.36)),
    linear-gradient(180deg, #f47d2d, #6d1b05);
}

.scene-ticker-card__top span {
  padding: 0;
  background: transparent;
  color: #fff;
  font-size: 10px;
}

.scene-ticker-card__top small {
  color: #fff;
  font-size: 10px;
}

.scene-ticker-card__teams strong {
  color: #fff;
  font-size: 11px;
}

.scene-home-hero {
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 8px;
}

.scene-event-hero {
  min-height: 182px;
  background:
    linear-gradient(90deg, rgba(12, 31, 62, 0.92), rgba(19, 50, 95, 0.82)),
    radial-gradient(circle at 75% 35%, rgba(77, 132, 218, 0.5), transparent 32%),
    #14283f;
}

.scene-event-hero::before,
.scene-event-hero::after {
  opacity: 0.55;
}

.scene-event-hero__status {
  top: 8px;
  right: 8px;
  border: 0;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.36);
  font-size: 10px;
}

.scene-event-hero__center {
  padding: 36px 12px 6px;
}

.scene-event-hero__center span {
  color: #dfeeff;
  font-size: 14px;
}

.scene-event-hero__center strong {
  margin-top: 6px;
  color: #fff;
  font: 900 52px/0.92 Impact, "Arial Black", sans-serif;
  text-transform: uppercase;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.scene-event-hero__center small {
  color: #b8c9d8;
}

.scene-event-hero__teams {
  gap: 0;
  padding: 8px 10px;
}

.scene-side-team {
  padding: 7px;
  border: 0;
  background: rgba(0, 0, 0, 0.2);
}

.scene-side-team__logo {
  width: 34px;
  height: 34px;
}

.scene-side-team strong {
  font-size: 12px;
}

.scene-side-team span {
  font-size: 13px;
}

.scene-tabs a {
  padding: 8px 0;
  background: #2b3540;
  color: #9fb1c3;
  font-size: 11px;
}

.scene-tabs a.is-active {
  background: #405166;
  color: #fff;
}

.scene-mini-match {
  min-height: 43px;
}

.scene-mini-match span {
  color: var(--hltv-title);
  font-size: 11px;
}

.scene-mini-match small {
  color: #fff;
  font-weight: 700;
}

.scene-story-hero {
  min-height: 182px;
  padding: 14px 16px;
  background:
    linear-gradient(90deg, rgba(6, 19, 45, 0.96), rgba(26, 67, 120, 0.75)),
    radial-gradient(circle at 76% 35%, rgba(97, 145, 209, 0.5), transparent 32%),
    #102744;
}

.scene-story-hero__badge {
  padding: 3px 7px;
  border-radius: 0;
  background: #2d72ad;
  color: #dceeff;
  font-size: 10px;
}

.scene-story-hero h2 {
  max-width: 520px;
  margin: 18px 0 8px;
  color: #fff;
  font: 900 42px/0.95 Impact, "Arial Black", sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.scene-story-hero p {
  max-width: 480px;
  color: #c3d0dc;
  font-size: 13px;
}

.scene-news-item {
  grid-template-columns: 28px minmax(0, 1fr) 92px;
  gap: 8px;
  padding: 8px 10px;
  border-top: 1px solid #26313b;
  background: #303b48;
}

.scene-news-item.is-featured {
  grid-template-columns: 150px minmax(0, 1fr) 92px;
  min-height: 88px;
  background: #34414f;
}

.scene-news-item__tag {
  width: 22px;
  height: 14px;
  overflow: hidden;
  padding: 0;
  background: #366aa1;
  color: transparent;
}

.scene-news-item__copy strong {
  color: var(--hltv-title);
  font: 700 16px/1.25 Arial, sans-serif;
}

.scene-news-item__copy p {
  margin-top: 4px;
  color: #9daaba;
  font-size: 12px;
}

.scene-news-item__meta {
  color: #a2acb6;
  font-size: 11px;
}

.scene-strip {
  gap: 6px;
  padding: 8px;
  border-color: #6c870b;
  background: linear-gradient(180deg, #a8d600, #87b000);
}

.scene-strip-match {
  padding: 7px 8px;
  border: 0;
  border-radius: 3px;
  background: rgba(0, 82, 78, 0.54);
}

.scene-strip-match__odds span {
  min-width: 46px;
  background: var(--hltv-green);
  color: #111;
}

.scene-section-head {
  padding: 2px 0;
}

.scene-section-head h1,
.scene-section-head h2 {
  color: #eaf1f8;
  font: 700 16px/1.2 Arial, sans-serif;
}

.scene-section-head p {
  display: none;
}

.scene-tournament-card__head strong {
  font-size: 14px;
}

.scene-match-row {
  grid-template-columns: 78px minmax(0, 1fr) 108px 58px 38px;
  gap: 8px;
  padding: 8px;
  border-top: 1px solid #26313b;
  background: #303b48;
}

.scene-match-row:hover {
  background: #374554;
}

.scene-match-row__time strong,
.scene-team-line strong {
  color: #fff;
  font-size: 14px;
}

.scene-team-line__main span {
  color: var(--hltv-title);
  font-size: 13px;
}

.scene-match-row__summary strong {
  font-size: 11px;
}

.scene-match-row__odds span,
.scene-focus-row__odds span {
  width: 52px;
  padding: 4px 0;
  background: #25323d;
}

.scene-match-row__pin {
  width: 34px;
  height: 26px;
  background: #25313c;
  font-size: 9px;
}

.footer {
  background: transparent;
}

@media (max-width: 1100px) {
  .page-wrap--scene {
    background: transparent;
  }

  .scene-shell,
  .scene-shell--matches {
    grid-template-columns: 1fr;
    padding: 0;
  }
}

@media (max-width: 860px) {
  .scene-brandbar,
  .scene-brandbar--compact,
  .scene-home-hero,
  .scene-news-item.is-featured {
    grid-template-columns: 1fr;
  }

  .scene-brandbar__copy {
    margin-left: 0;
    padding-left: 0;
  }

  .scene-brandbar__ticker {
    grid-column: auto;
  }

  .scene-event-hero__center strong,
  .scene-story-hero h2 {
    font-size: 34px;
  }
}

@media (max-width: 640px) {
  .topbar-inner {
    padding: 6px 0;
  }

  .brand {
    width: auto;
  }

  .main-nav a {
    line-height: 1.2;
  }

  .scene-news-item {
    grid-template-columns: 22px minmax(0, 1fr);
  }

  .scene-news-item__meta {
    grid-column: 2;
  }
}

/* ===== HLTV Matches Page ===== */
.page-wrap--matches-hltv {
  position: relative;
  width: 1000px;
  max-width: calc(100% - 18px);
  min-height: 100vh;
  padding-top: 10px;
  background: #171c21;
}

.page-wrap--matches-hltv .scene-shell--matches {
  grid-template-columns: 148px minmax(0, 1fr) 158px;
  gap: 10px;
  padding: 0 10px 24px;
}

.page-wrap--matches-hltv .scene-brandbar {
  min-height: 76px;
  padding: 10px;
  margin-bottom: 4px;
  border: 0;
  background: #171c21;
}

.page-wrap--matches-hltv .scene-brandbar__logo {
  width: 60px;
  height: 60px;
  background: #2f77ab;
}

.page-wrap--matches-hltv .scene-brandbar__copy strong {
  font-size: 42px;
}

.page-wrap--matches-hltv .scene-brandbar__ticker {
  align-self: center;
}

.page-wrap--matches-hltv .scene-panel,
.page-wrap--matches-hltv .scene-tournament-card,
.page-wrap--matches-hltv .scene-focus-panel {
  overflow: hidden;
  border: 1px solid #26313c;
  background: #2d3946;
}

.page-wrap--matches-hltv .scene-panel__head,
.page-wrap--matches-hltv .scene-tournament-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 28px;
  padding: 6px 8px;
  border-bottom: 1px solid #26313c;
  background: #334150;
  color: #b7c4d0;
  font: 700 10px/1 Arial, sans-serif;
}

.page-wrap--matches-hltv .scene-panel__head small,
.page-wrap--matches-hltv .scene-tournament-card__head small {
  color: #8b9aa8;
  font-size: 10px;
  font-weight: 700;
  text-transform: none;
}

.page-wrap--matches-hltv .scene-calendar {
  padding: 0;
  background: #2e3a47;
}

.page-wrap--matches-hltv .scene-calendar__weekdays,
.page-wrap--matches-hltv .scene-calendar__grid {
  gap: 1px;
}

.page-wrap--matches-hltv .scene-calendar__weekdays span,
.page-wrap--matches-hltv .scene-calendar__grid span {
  min-height: 19px;
  padding: 0;
  background: #34414f;
  color: #8d9dab;
  font: 700 10px/19px Arial, sans-serif;
}

.page-wrap--matches-hltv .scene-calendar__grid span.active {
  background: #5b7186;
  color: #fff;
}

.matches-filter-panel .scene-panel__head {
  text-transform: uppercase;
}

.matches-filter-stack {
  padding: 7px 8px;
  background: #2f3b48;
}

.matches-filter-group {
  padding: 0 0 9px;
  margin-bottom: 8px;
  border-bottom: 1px solid #435160;
}

.matches-filter-group:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.matches-filter-group__head,
.matches-filter-group label,
.matches-filter-group > div:not(.matches-filter-group__head):not(#region-list):not(#tournament-list) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.matches-filter-group__head {
  margin-bottom: 7px;
}

.matches-filter-group__head strong {
  color: #b9c5d0;
  font-size: 12px;
}

.matches-filter-group__head small,
.matches-filter-group label span,
.matches-filter-group > div:not(.matches-filter-group__head):not(#region-list):not(#tournament-list) span {
  min-width: 0;
  overflow: hidden;
  color: #8795a3;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.matches-filter-group label,
.matches-filter-group > div:not(.matches-filter-group__head):not(#region-list):not(#tournament-list) {
  min-height: 18px;
}

.matches-filter-group input {
  width: 12px;
  height: 12px;
  margin: 0;
  accent-color: #5d7389;
}

.page-wrap--matches-hltv .scene-strip {
  position: relative;
  display: grid;
  grid-template-columns: 148px repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
  min-height: 112px;
  padding: 8px;
  border: 0;
  border-radius: 5px;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.28), transparent 11%),
    linear-gradient(135deg, #90d900 0, #55b500 48%, #8bce00 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.matches-strip-brand {
  display: grid;
  place-items: center;
  margin: 24px 8px 24px 2px;
  color: #fff;
  background: #07525f;
  font: 900 24px/1 Arial, sans-serif;
  letter-spacing: -1px;
  transform: skew(-7deg);
}

.matches-strip-brand::first-letter {
  color: #aee300;
}

.page-wrap--matches-hltv .scene-strip-match {
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  justify-items: center;
  gap: 6px;
  min-width: 0;
  padding: 8px 5px;
  border-left: 1px solid rgba(29, 90, 12, 0.22);
  background: transparent;
  text-align: center;
}

.page-wrap--matches-hltv .scene-strip-match small {
  color: #eafde5;
  font-size: 10px;
}

.page-wrap--matches-hltv .scene-strip-match__teams span {
  max-width: 92px;
  overflow: hidden;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-wrap--matches-hltv .scene-strip-match__odds {
  display: contents;
}

.page-wrap--matches-hltv .scene-strip-match__odds span {
  width: 72px;
  min-width: 0;
  padding: 5px 0;
  border-radius: 4px;
  background: #005a6e;
  color: #fff;
  font-size: 12px;
}

.page-wrap--matches-hltv .scene-strip-match strong {
  color: #e8f7dc;
  font-size: 10px;
}

.page-wrap--matches-hltv .scene-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  min-height: 34px;
  padding: 6px 0 8px;
}

.page-wrap--matches-hltv .scene-section-head h1,
.page-wrap--matches-hltv .scene-section-head h2 {
  color: #b5b9bd;
  font: 800 22px/1.1 Arial, sans-serif;
}

.page-wrap--matches-hltv .scene-sort-pill {
  padding: 4px 9px;
  border: 1px solid #4c5b69;
  border-radius: 3px;
  background: #313d4a;
  color: #9eacb9;
  font-size: 10px;
}

.page-wrap--matches-hltv .scene-sort-pill.is-active {
  background: #516376;
  color: #fff;
}

.page-wrap--matches-hltv .scene-tournament-card {
  margin-bottom: 14px;
  border-radius: 4px;
  background: #2f3b48;
}

.page-wrap--matches-hltv .scene-tournament-card__head {
  min-height: 31px;
  background: #334150;
}

.page-wrap--matches-hltv .scene-tournament-card__head div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 7px;
}

.page-wrap--matches-hltv .scene-tournament-card__head span {
  max-width: 170px;
  overflow: hidden;
  color: #91a0ae;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-wrap--matches-hltv .scene-tournament-card__head strong {
  max-width: 340px;
  overflow: hidden;
  color: #b8c2cc;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-wrap--matches-hltv .scene-match-row {
  grid-template-columns: 58px minmax(0, 1fr) 112px 76px 68px;
  gap: 8px;
  min-height: 64px;
  padding: 7px 8px;
  border-top: 1px solid #465564;
  background: #303d4a;
}

.page-wrap--matches-hltv .scene-match-row:hover {
  background: #374655;
}

.page-wrap--matches-hltv .scene-match-row__time {
  align-content: center;
  gap: 3px;
}

.page-wrap--matches-hltv .scene-badge {
  padding: 3px 6px;
  border-radius: 2px;
  background: #d41615;
  color: #fff;
  font-size: 10px;
}

.page-wrap--matches-hltv .scene-badge--upcoming {
  background: #465362;
  color: #aab6c2;
}

.page-wrap--matches-hltv .scene-badge--finished {
  background: #56616d;
  color: #d4dbe2;
}

.page-wrap--matches-hltv .scene-match-row__time strong {
  color: #bac6d1;
  font-size: 13px;
}

.page-wrap--matches-hltv .scene-match-row__time small {
  width: fit-content;
  padding: 2px 6px;
  border-radius: 2px;
  background: #465463;
  color: #9aa7b5;
  font-size: 10px;
}

.page-wrap--matches-hltv .scene-match-row__teams {
  align-content: center;
  gap: 5px;
}

.page-wrap--matches-hltv .scene-team-line__main {
  gap: 7px;
}

.page-wrap--matches-hltv .scene-team-line__logo {
  width: 17px;
  height: 17px;
  border: 0;
  border-radius: 2px;
  background: #41505f;
}

.page-wrap--matches-hltv .scene-team-line__main span {
  color: #aeb8c2;
  font: 400 14px/1.1 Arial, sans-serif;
}

.page-wrap--matches-hltv .scene-team-line strong {
  color: #11e546;
  font-size: 14px;
}

.page-wrap--matches-hltv .scene-match-row__summary {
  align-content: center;
  justify-items: end;
  gap: 2px;
}

.page-wrap--matches-hltv .scene-match-row__summary span {
  max-width: 112px;
  overflow: hidden;
  color: #8e9ba8;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-wrap--matches-hltv .scene-match-row__summary strong {
  color: #aeb9c4;
  font-size: 10px;
}

.page-wrap--matches-hltv .scene-match-row__odds {
  justify-items: stretch;
  gap: 0;
  overflow: hidden;
  border: 1px solid #4a5a6b;
  border-radius: 4px;
  background: #2d3946;
}

.page-wrap--matches-hltv .scene-match-row__odds::before {
  content: "Odds";
  display: grid;
  place-items: center;
  grid-row: 1 / span 2;
  padding: 0 8px;
  color: #fff;
  font: 800 20px/1 Georgia, serif;
}

.page-wrap--matches-hltv .scene-match-row__odds span {
  width: auto;
  padding: 3px 5px;
  border: 0;
  background: transparent;
  color: #8fa1b3;
  font-size: 11px;
  text-align: right;
}

.page-wrap--matches-hltv .scene-match-row__pin {
  width: auto;
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  border: 0;
  background: #283542;
  color: #8594a3;
  font-size: 9px;
}

.page-wrap--matches-hltv .scene-focus-panel {
  margin-bottom: 14px;
  border-radius: 4px;
  background: #344251;
}

.page-wrap--matches-hltv .scene-focus-panel .scene-panel__head {
  background: #3a4a5a;
  color: #b7c4d0;
  font-size: 18px;
  text-transform: none;
}

.page-wrap--matches-hltv .scene-focus-stack {
  display: grid;
}

.page-wrap--matches-hltv .scene-focus-row {
  grid-template-columns: minmax(0, 1fr) 78px 86px;
  min-height: 55px;
  padding: 9px 10px;
  border-top: 1px solid #465565;
  background: #344251;
}

.page-wrap--matches-hltv .scene-focus-row span {
  color: #a6b3bf;
  font-size: 12px;
}

.page-wrap--matches-hltv .scene-focus-row strong {
  color: #c3ccd5;
  font-size: 14px;
}

.matches-transfer-list {
  display: grid;
}

.matches-transfer-list a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 36px;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 6px 8px;
  border-top: 1px solid #26313c;
  background: #2f3b48;
}

.matches-transfer-avatar {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #596b79;
  color: #fff;
  font-weight: 800;
}

.matches-transfer-list strong,
.matches-transfer-list b {
  color: #c5ced7;
  font-size: 11px;
}

.matches-transfer-list small {
  color: #8796a5;
  font-size: 9px;
  text-transform: uppercase;
}

.matches-transfer-footer {
  display: block;
  padding: 8px;
  background: #52687d;
  color: #c7d1db;
  font-size: 11px;
  text-align: center;
}

.matches-streams {
  display: grid;
  grid-template-columns: minmax(0, 345px) minmax(0, 1fr);
  gap: 16px;
  margin: 32px -10px -24px -170px;
  padding: 34px 16px 36px;
  border-top: 1px solid #26313c;
  background:
    linear-gradient(180deg, rgba(50, 66, 81, 0.96), rgba(33, 48, 62, 0.96)),
    radial-gradient(circle at 50% 20%, rgba(92, 129, 158, 0.28), transparent 46%);
}

.matches-streams h2 {
  margin: 0 0 16px;
  color: #fff;
  font: 800 16px/1 Arial, sans-serif;
}

.matches-video-card {
  position: relative;
  min-height: 196px;
  display: grid;
  align-content: end;
  padding: 12px;
  overflow: hidden;
  border-radius: 3px;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.65)),
    radial-gradient(circle at 45% 45%, rgba(153, 181, 68, 0.7), transparent 30%),
    linear-gradient(135deg, #152912, #2b3318);
}

.matches-video-card__play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 24px solid #fff;
  transform: translate(-40%, -50%);
}

.matches-video-card strong {
  color: #e9f0f6;
  font-size: 13px;
}

.matches-video-card small {
  justify-self: end;
  color: #b5c2cf;
  font-size: 11px;
}

.matches-stream-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 5px 8px;
}

.matches-stream-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 26px;
  padding: 4px 8px;
  border: 1px solid #26313c;
  border-radius: 3px;
  background: #25323e;
  color: #d2dbe4;
  font-size: 11px;
}

.matches-stream-grid span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.matches-stream-grid small {
  color: #9aa8b6;
}

@media (max-width: 1100px) {
  .page-wrap--matches-hltv {
    width: min(100%, calc(100% - 12px));
    background: transparent;
  }

  .page-wrap--matches-hltv .scene-shell--matches {
    grid-template-columns: 1fr;
    padding: 0 0 18px;
  }

  .matches-streams {
    margin: 20px 0 0;
  }
}

@media (max-width: 760px) {
  .page-wrap--matches-hltv .scene-strip,
  .page-wrap--matches-hltv .scene-match-row,
  .page-wrap--matches-hltv .scene-focus-row,
  .matches-streams,
  .matches-stream-grid {
    grid-template-columns: 1fr;
  }

  .matches-strip-brand {
    margin: 0 0 8px;
    min-height: 44px;
  }

  .page-wrap--matches-hltv .scene-match-row__summary,
  .page-wrap--matches-hltv .scene-match-row__pin {
    justify-self: stretch;
    justify-items: start;
    text-align: left;
  }
}

.page-wrap--matches-hltv .scene-strip {
  display: block;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid #293744;
  border-radius: 4px;
  background: #202a34;
  box-shadow: none;
}

.page-wrap--matches-hltv .scene-strip.is-hidden {
  display: none !important;
}

.page-wrap--matches-hltv #strip-board {
  display: block;
}

.page-wrap--matches-hltv .scene-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: #293744;
}

.page-wrap--matches-hltv .matches-strip-brand {
  display: none;
}

.page-wrap--matches-hltv .scene-strip-match {
  min-width: 0;
  display: grid;
  align-content: start;
  justify-items: stretch;
  gap: 8px;
  min-height: 104px;
  padding: 11px 12px;
  border: 0;
  background: linear-gradient(180deg, #2f3d4b, #26323e);
  text-align: left;
}

.page-wrap--matches-hltv .scene-strip-match:hover {
  background: linear-gradient(180deg, #374757, #2b3947);
}

.page-wrap--matches-hltv .scene-strip-match__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.page-wrap--matches-hltv .scene-strip-match__meta span,
.page-wrap--matches-hltv .scene-strip-match em {
  color: #95a6b7;
  font-size: 11px;
  font-style: normal;
}

.page-wrap--matches-hltv .scene-strip-match__meta small {
  padding: 2px 6px;
  border-radius: 2px;
  background: #405063;
  color: #c9d4de;
  font-size: 9px;
  font-weight: 800;
}

.page-wrap--matches-hltv .scene-strip-match__teams {
  display: grid;
  gap: 5px;
}

.page-wrap--matches-hltv .scene-strip-match__teams strong {
  min-width: 0;
  overflow: hidden;
  color: #d9e2ea;
  font-size: 13px;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-wrap--matches-hltv .scene-match-detail {
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(49, 64, 79, 0.98), rgba(31, 41, 51, 0.98)),
    radial-gradient(circle at 50% 0, rgba(99, 130, 158, 0.24), transparent 42%);
}

.page-wrap--matches-hltv .scene-match-detail__meta,
.page-wrap--matches-hltv .scene-match-detail__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.page-wrap--matches-hltv .scene-match-detail__meta strong {
  color: #d7e0e9;
  font-size: 13px;
}

.page-wrap--matches-hltv .scene-match-detail__meta small {
  color: #99a8b6;
  font-size: 11px;
}

.page-wrap--matches-hltv .scene-match-detail__headline {
  margin: 16px 0 14px;
  text-align: center;
}

.page-wrap--matches-hltv .scene-match-detail__headline h1 {
  margin: 0;
  color: #f3f6f8;
  font: 800 24px/1.15 Arial, sans-serif;
}

.page-wrap--matches-hltv .scene-match-detail__headline p {
  margin: 6px 0 0;
  color: #9dadbc;
  font-size: 12px;
}

.page-wrap--matches-hltv .scene-match-detail__teams {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
  align-items: stretch;
  gap: 10px;
}

.page-wrap--matches-hltv .scene-match-detail__team {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 14px 10px;
  border: 1px solid #3c4b59;
  border-radius: 4px;
  background: #25313c;
}

.page-wrap--matches-hltv .scene-match-detail__logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 4px;
  background: #1b2530;
}

.page-wrap--matches-hltv .scene-match-detail__logo--fallback {
  display: grid;
  place-items: center;
  color: #dfe7ee;
  font-weight: 800;
}

.page-wrap--matches-hltv .scene-match-detail__team strong {
  max-width: 100%;
  overflow: hidden;
  color: #e1e8ef;
  font-size: 16px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-wrap--matches-hltv .scene-match-detail__team span {
  color: #eef4f8;
  font: 800 30px/1 Arial, sans-serif;
}

.page-wrap--matches-hltv .scene-match-detail__versus {
  display: grid;
  place-items: center;
  color: #8495a5;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.page-wrap--matches-hltv .scene-match-detail__footer {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #3b4a58;
}

.page-wrap--matches-hltv .scene-match-detail__footer div {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.page-wrap--matches-hltv .scene-match-detail__footer span {
  color: #8798a8;
  font-size: 10px;
  text-transform: uppercase;
}

.page-wrap--matches-hltv .scene-match-detail__footer strong {
  max-width: 220px;
  overflow: hidden;
  color: #cbd6df;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-wrap--matches-hltv .scene-match-detail__back,
.page-wrap--matches-hltv .scene-match-missing a {
  flex: 0 0 auto;
  padding: 8px 10px;
  border-radius: 3px;
  background: #52687d;
  color: #eef4f8;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.page-wrap--matches-hltv .scene-match-missing {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-bottom: 1px solid #293744;
  background: #27333f;
}

.page-wrap--matches-hltv .scene-match-missing strong {
  color: #f0f4f8;
  font-size: 16px;
}

.page-wrap--matches-hltv .scene-match-missing p {
  margin: 0;
  color: #9dacbb;
  font-size: 12px;
}

.page-wrap--matches-hltv .scene-match-missing a {
  justify-self: start;
}

.page-wrap--matches-hltv .scene-match-row {
  grid-template-columns: 58px minmax(0, 1fr) 145px 54px;
}

.page-wrap--matches-hltv .scene-match-row__odds,
.page-wrap--matches-hltv .scene-focus-row__odds,
.page-wrap--matches-hltv .scene-strip-match__odds {
  display: none;
}

.page-wrap--matches-hltv .scene-focus-row {
  grid-template-columns: minmax(0, 1fr) 118px;
}

@media (max-width: 760px) {
  .page-wrap--matches-hltv .scene-strip-grid,
  .page-wrap--matches-hltv .scene-match-detail__teams {
    grid-template-columns: 1fr;
  }

  .page-wrap--matches-hltv .scene-match-detail__versus {
    min-height: 28px;
  }

  .page-wrap--matches-hltv .scene-match-detail__meta,
  .page-wrap--matches-hltv .scene-match-detail__footer {
    align-items: stretch;
    flex-direction: column;
  }
}

.match-page {
  width: min(1000px, calc(100% - 20px));
  padding: 18px 0 40px;
  color: #d7e0e8;
}

.match-page__back {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 12px;
  padding: 0 10px;
  border: 1px solid #2e3b47;
  border-radius: 3px;
  background: #18212a;
  color: #9fb0bf;
  font-size: 12px;
  font-weight: 700;
}

.match-page__back:hover {
  background: #202b35;
  color: #fff;
}

.match-missing-banner {
  display: grid;
  gap: 4px;
  margin-bottom: 12px;
  padding: 12px;
  border: 1px solid #4d3f2c;
  border-radius: 5px;
  background: #241f18;
}

.match-missing-banner strong {
  color: #f0d7a4;
  font-size: 14px;
}

.match-missing-banner p {
  margin: 0;
  color: #b8aa91;
  font-size: 12px;
}

.match-hero {
  overflow: hidden;
  border: 1px solid #2c3945;
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(40, 52, 64, 0.98), rgba(22, 30, 38, 0.98)),
    radial-gradient(circle at 50% 0, rgba(91, 121, 149, 0.28), transparent 46%);
}

.match-hero__top {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 8px 12px;
  border-bottom: 1px solid #31404d;
  background: #1e2933;
  color: #9dadbc;
  font-size: 12px;
}

.match-hero__top strong {
  color: #eef3f7;
  font-size: 13px;
}

.match-status {
  padding: 4px 8px;
  border-radius: 2px;
  background: #3d4c5a;
  color: #e6edf3;
  font-size: 10px;
  font-weight: 900;
}

.match-status--live {
  background: #d62727;
}

.match-status--finished {
  background: #566777;
}

.match-status--canceled {
  background: #6d3f42;
}

.match-hero__title {
  padding: 22px 20px 8px;
  text-align: center;
}

.match-hero__title p {
  margin: 0 0 7px;
  color: #9cacba;
  font-size: 12px;
}

.match-hero__title h1 {
  margin: 0;
  color: #f4f7fa;
  font: 900 34px/1.1 Arial, sans-serif;
}

.match-scoreboard {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 84px minmax(0, 1fr);
  align-items: stretch;
  gap: 12px;
  padding: 18px 20px 22px;
}

.match-team {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 18px 12px;
  border: 1px solid #354655;
  border-radius: 5px;
  background: #202b35;
}

.match-team img,
.match-team__fallback {
  width: 76px;
  height: 76px;
  object-fit: contain;
  border-radius: 5px;
  background: #141d25;
}

.match-team__fallback {
  display: grid;
  place-items: center;
  color: #e8eef4;
  font-size: 22px;
  font-weight: 900;
}

.match-team strong {
  max-width: 100%;
  overflow: hidden;
  color: #edf3f8;
  font-size: 19px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.match-team span {
  color: #f6f9fb;
  font: 900 42px/1 Arial, sans-serif;
}

.match-versus {
  display: grid;
  place-items: center;
  color: #8495a4;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.match-details-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid #2c3945;
  border-radius: 5px;
  background: #2c3945;
}

.match-details-grid div {
  min-width: 0;
  display: grid;
  gap: 3px;
  padding: 12px;
  background: #202b35;
}

.match-details-grid span,
.match-info-row span,
.match-game-row span,
.match-stream-list span {
  color: #8495a4;
  font-size: 10px;
  text-transform: uppercase;
}

.match-details-grid strong,
.match-info-row strong,
.match-game-row strong,
.match-stream-list strong {
  min-width: 0;
  overflow: hidden;
  color: #dce5ed;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.match-info-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 14px;
  margin-top: 14px;
}

.match-info-panel {
  min-width: 0;
  padding: 14px;
  border: 1px solid #2c3945;
  border-radius: 5px;
  background: #18212a;
}

.match-info-panel h2 {
  margin: 0 0 12px;
  color: #eef3f7;
  font: 800 16px/1.1 Arial, sans-serif;
}

.match-info-panel p {
  margin: 0;
  color: #91a1af;
  font-size: 12px;
}

.match-info-row,
.match-game-row,
.match-stream-list a {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #293744;
}

.match-info-row:first-of-type,
.match-game-row:first-child,
.match-stream-list a:first-child {
  border-top: 0;
}

.match-game-list,
.match-stream-list {
  display: grid;
}

.match-stream-list a:hover {
  color: #fff;
}

.match-player-panel {
  display: grid;
  gap: 12px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid #2c3945;
  border-radius: 5px;
  background: #18212a;
}

.match-player-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.match-player-panel__head span {
  color: #8495a4;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.match-player-panel__head h2 {
  margin: 2px 0 0;
  color: #eef3f7;
  font: 800 16px/1.1 Arial, sans-serif;
}

.match-player-panel__head strong {
  padding: 4px 8px;
  border-radius: 3px;
  background: #24313d;
  color: #a9bac8;
  font-size: 11px;
  white-space: nowrap;
}

.match-player-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: 12px;
}

.match-player-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #293744;
  border-radius: 5px;
  background: #101820;
}

.match-player-card__top {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  border-bottom: 1px solid #293744;
  background: #202b35;
}

.match-player-card__top strong {
  min-width: 0;
  overflow: hidden;
  color: #dce5ed;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.match-player-card__top a {
  color: #9fb8ce;
  font-size: 11px;
  font-weight: 800;
}

.match-player-card__top a:hover {
  color: #fff;
}

.match-video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #070b10;
}

.match-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.match-player-empty {
  margin: 0;
  padding: 12px;
  border: 1px dashed #354655;
  border-radius: 4px;
  color: #91a1af;
  background: #151d25;
  font-size: 12px;
}

@media (max-width: 760px) {
  .match-hero__top,
  .match-info-row,
  .match-game-row,
  .match-stream-list a {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .match-scoreboard,
  .match-details-grid,
  .match-info-layout {
    grid-template-columns: 1fr;
  }

  .match-versus {
    min-height: 26px;
  }

  .match-hero__title h1 {
    font-size: 25px;
  }

  .match-player-panel__head {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ===== HLTV Events Page ===== */
.page-wrap--events-hltv {
  width: 1000px;
  max-width: calc(100% - 18px);
  min-height: 100vh;
  padding: 0;
  background: #171c21;
}

.events-layout {
  display: grid;
  grid-template-columns: minmax(0, 638px);
  justify-content: center;
  gap: 0;
  align-items: start;
}

.events-main {
  min-height: 100vh;
  padding: 0 0 32px;
}

.events-month {
  margin-top: 16px;
}

.events-month h1 {
  margin: 0 0 10px;
  color: #aab2ba;
  font: 800 22px/1 Arial, sans-serif;
}

.featured-events {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.featured-event {
  overflow: hidden;
  border: 1px solid #26313c;
  background: #2f3b48;
}

.featured-event:nth-child(3) {
  max-width: calc(50% - 4px);
}

.featured-event__banner {
  min-height: 56px;
  display: grid;
  place-items: center;
  color: #fff;
  font: 900 18px/1 Arial, sans-serif;
  text-transform: uppercase;
}

.featured-event__banner.is-pgl {
  background:
    radial-gradient(circle at 46% 50%, rgba(255, 220, 38, 0.8), transparent 18%),
    linear-gradient(120deg, #08253b, #0d4d70);
}

.featured-event__banner.is-iem {
  background:
    radial-gradient(circle at 52% 34%, rgba(255, 255, 255, 0.32), transparent 22%),
    linear-gradient(120deg, #14106d, #061f66);
}

.featured-event__banner.is-asia {
  background:
    linear-gradient(135deg, #1b1d5c 0 22%, #ff931f 22% 37%, #29216b 37% 56%, #ff7d17 56% 71%, #27205c 71%);
}

.featured-event__body {
  padding: 9px 10px 8px;
}

.featured-event h2 {
  margin: 0;
  color: #c2cad2;
  font: 800 14px/1.2 Arial, sans-serif;
}

.featured-event p {
  margin: 6px 0 0;
  color: #8f9ca8;
  font-size: 12px;
}

.featured-event small {
  display: block;
  min-height: 16px;
  margin-top: 5px;
  overflow: hidden;
  color: #d4de5c;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.featured-event__stats {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.6fr;
  gap: 12px;
  margin-top: 12px;
}

.featured-event__stats strong {
  display: block;
  color: #bec8d2;
  font-size: 12px;
}

.featured-event__stats span {
  display: block;
  margin-top: 3px;
  color: #83909d;
  font-size: 11px;
}

.events-board {
  display: grid;
  gap: 2px;
}

.events-board--past {
  margin-top: 0;
}

.event-row {
  min-height: 58px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 64px 76px 86px;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid #26313c;
  background: #303d4a;
}

.event-row--compact {
  min-height: 43px;
  padding-top: 6px;
  padding-bottom: 6px;
  background: #344251;
}

.event-row:hover {
  background: #374655;
}

.event-logo {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 3px;
  background: #536372;
}

.event-logo::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  border-radius: 3px;
  background: #d8e0e7;
}

.event-logo.is-gold::before {
  background: linear-gradient(135deg, #fff1a4, #b88618);
  clip-path: polygon(50% 0, 64% 36%, 100% 40%, 70% 61%, 80% 100%, 50% 76%, 20% 100%, 30% 61%, 0 40%, 36% 36%);
}

.event-logo.is-bronze::before {
  background: linear-gradient(135deg, #c8752e, #5d3217);
}

.event-logo.is-xp::before {
  background: linear-gradient(135deg, #fbff28 0 45%, #0055ff 45%);
}

.event-logo.is-stake::before {
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 76% 100%, 20% 100%);
}

.event-logo.is-odyssey::before {
  background: linear-gradient(135deg, #c5cbd0, #505b65);
  transform: skew(-15deg);
}

.event-logo.is-iem::before {
  background: linear-gradient(135deg, #ececff, #3a4df5);
}

.event-logo.is-yalla::before {
  background: linear-gradient(135deg, #f8d253, #111);
}

.event-logo.is-blast::before {
  background: #f04a28;
  clip-path: polygon(0 0, 100% 34%, 64% 100%, 18% 68%);
}

.event-logo.is-world::before,
.event-logo.is-cct::before,
.event-logo.is-esea::before {
  background: linear-gradient(135deg, #6bd7ff, #1f6fb0);
}

.event-row__copy {
  min-width: 0;
}

.event-row__copy strong {
  display: block;
  overflow: hidden;
  color: #bfc8d1;
  font: 800 13px/1.2 Arial, sans-serif;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.event-row__copy small {
  display: block;
  margin-top: 4px;
  overflow: hidden;
  color: #8896a4;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.event-row__metric {
  display: grid;
  gap: 3px;
  justify-items: start;
}

.event-row__metric strong {
  color: #b9c4ce;
  font-size: 12px;
}

.event-row__metric span {
  color: #83909d;
  font-size: 11px;
}

.event-row__metric--type strong {
  color: #aeb8c2;
  font-weight: 900;
}

@media (max-width: 1100px) {
  .page-wrap--events-hltv {
    width: min(100%, calc(100% - 12px));
  }

  .events-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .featured-events,
  .event-row {
    grid-template-columns: 1fr;
  }

  .featured-event:nth-child(3) {
    max-width: none;
  }

  .event-row__metric {
    justify-items: start;
  }
}

/* ===== HLTV Players Page ===== */
.page-wrap--players-hltv {
  width: 1000px;
  max-width: calc(100% - 18px);
  min-height: 100vh;
  padding: 10px 10px 0;
  background: #171c21;
}

.players-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 158px;
  gap: 10px;
  align-items: start;
}

.players-main {
  min-width: 0;
}

.players-brandbar {
  min-height: 72px;
  display: grid;
  grid-template-columns: 60px 190px repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  background: #171c21;
}

.players-brandmark {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  background: #2f77ab;
  color: #fff;
  font: 900 20px/1 Arial, sans-serif;
}

.players-brandbar > strong {
  color: #fff;
  font: 900 42px/1 Arial, sans-serif;
  letter-spacing: -1px;
}

.players-match-ticker {
  min-height: 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 62px;
  gap: 2px 8px;
  align-content: center;
  padding: 5px 8px;
  border-radius: 3px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(55, 13, 2, 0.32)),
    linear-gradient(180deg, #f47d2d, #6d1b05);
}

.players-match-ticker span {
  grid-column: 1 / -1;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.players-match-ticker b {
  color: #fff;
  font-size: 11px;
}

.players-alpha {
  display: grid;
  grid-template-columns: 38px repeat(26, minmax(0, 1fr)) 38px;
  margin-bottom: 22px;
  border: 1px solid #26313c;
  background: #344251;
}

.players-alpha a {
  min-height: 33px;
  display: grid;
  place-items: center;
  border-right: 1px solid #465564;
  color: #9aa8b5;
  font: 700 12px/1 Arial, sans-serif;
}

.players-alpha a:last-child {
  border-right: 0;
}

.players-alpha a.is-active,
.players-alpha a:hover {
  background: #596b7e;
  color: #fff;
}

.players-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.players-heading h1 {
  margin: 0;
  color: #aeb5bc;
  font: 900 24px/1 Arial, sans-serif;
}

.players-heading button,
.players-pager button {
  padding: 8px 12px;
  border: 1px solid #3e4d5b;
  background: #344251;
  color: #aab7c3;
  cursor: pointer;
  font-size: 12px;
}

.players-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.player-tile {
  position: relative;
  min-height: 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px;
  overflow: hidden;
  border: 1px solid #26313c;
  background: #303d4a;
}

.player-tile:hover {
  background: #374655;
}

.player-tile__copy {
  min-width: 0;
  padding: 13px 8px 8px;
  position: relative;
  z-index: 1;
}

.player-tile__copy strong {
  display: block;
  overflow: hidden;
  color: #9ea9b4;
  font: 900 14px/1.2 Arial, sans-serif;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.player-tile__copy span {
  display: block;
  margin-top: 12px;
  overflow: hidden;
  color: #7f8d9a;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.player-tile__copy small {
  display: block;
  margin-top: 4px;
  overflow: hidden;
  color: #9ca9b5;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.player-portrait {
  position: relative;
  align-self: end;
  width: 72px;
  height: 78px;
  display: grid;
  place-items: end center;
  overflow: hidden;
}

.player-portrait::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 8px;
  height: 32px;
  border-radius: 50%;
  background: #d8d1c9;
  box-shadow: inset -5px -5px 0 rgba(0, 0, 0, 0.08);
}

.player-portrait::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: -12px;
  height: 48px;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(135deg, #171f28, #44505a);
}

.player-portrait span {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: rgba(0, 0, 0, 0.42);
  font-size: 9px;
  font-weight: 900;
}

.player-portrait.is-red::after { background: linear-gradient(135deg, #2f1013, #c92035); }
.player-portrait.is-teal::after { background: linear-gradient(135deg, #114846, #61a696); }
.player-portrait.is-black::after { background: linear-gradient(135deg, #11161c, #2c3540); }
.player-portrait.is-gray::after { background: linear-gradient(135deg, #242a31, #87919a); }
.player-portrait.is-green::after { background: linear-gradient(135deg, #053d35, #19a785); }
.player-portrait.is-purple::after { background: linear-gradient(135deg, #211746, #896ed8); }
.player-portrait.is-blue::after { background: linear-gradient(135deg, #102948, #3b7fb5); }
.player-portrait.is-dark::after { background: linear-gradient(135deg, #0c1116, #222832); }
.player-portrait.is-yellow::after { background: linear-gradient(135deg, #1b2430, #e6d231); }
.player-portrait.is-white::after { background: linear-gradient(135deg, #eeeeee, #59636d); }
.player-portrait.is-orange::after { background: linear-gradient(135deg, #3d1b10, #f26d2d); }
.player-portrait.is-cream::after { background: linear-gradient(135deg, #f3ede1, #923c37); }
.player-portrait.is-brown::after { background: linear-gradient(135deg, #21150f, #8b6040); }
.player-portrait.is-gold::after { background: linear-gradient(135deg, #1e1c12, #d7b028); }
.player-portrait.is-emerald::after { background: linear-gradient(135deg, #102820, #29b36d); }
.player-portrait.is-mint::after { background: linear-gradient(135deg, #0c564f, #47d2b2); }
.player-portrait.is-cap::before { background: #d8d1c9; box-shadow: 0 -8px 0 #1b1e22; }
.player-portrait.is-lime::after { background: linear-gradient(135deg, #163413, #86ec34); }
.player-portrait.is-navy::after { background: linear-gradient(135deg, #07131f, #1a4172); }
.player-portrait.is-light::after { background: linear-gradient(135deg, #f5f1ea, #d64f35); }
.player-portrait.is-plain::after { background: linear-gradient(135deg, #e5e9ed, #cfd7de); }

.players-pager {
  display: flex;
  justify-content: flex-end;
  padding: 12px 0 30px;
}

.players-right-rail {
  display: grid;
  gap: 10px;
  align-content: start;
}

.players-panel {
  overflow: hidden;
  border: 1px solid #26313c;
  background: #2f3b48;
}

.players-panel__head {
  min-height: 28px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  border-bottom: 1px solid #26313c;
  background: #334150;
  color: #aeb9c4;
  font: 800 10px/1 Arial, sans-serif;
  text-transform: uppercase;
}

.players-activity-list,
.players-transfer-list {
  display: grid;
}

.players-activity-list a {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  min-height: 26px;
  padding: 7px 8px;
  border-left: 2px solid #d99a18;
  border-top: 1px solid #26313c;
  color: #9db3c7;
  font-size: 11px;
}

.players-activity-list span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.players-activity-list small {
  color: #8c99a5;
}

.players-transfer-list a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 36px;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 6px 8px;
  border-top: 1px solid #26313c;
}

.players-transfer-avatar {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #596b79;
  color: #fff;
  font-weight: 800;
}

.players-transfer-list strong,
.players-transfer-list b {
  color: #c5ced7;
  font-size: 11px;
}

.players-transfer-list small {
  color: #8796a5;
  font-size: 9px;
  text-transform: uppercase;
}

.players-transfer-footer {
  display: block;
  padding: 8px;
  background: #52687d;
  color: #c7d1db;
  font-size: 11px;
  text-align: center;
}

.players-streams {
  display: grid;
  grid-template-columns: minmax(0, 345px) minmax(0, 1fr);
  gap: 16px;
  margin: 0 -168px 0 -10px;
  padding: 34px 16px 36px;
  border-top: 1px solid #26313c;
  background:
    linear-gradient(180deg, rgba(50, 66, 81, 0.96), rgba(33, 48, 62, 0.96)),
    radial-gradient(circle at 50% 20%, rgba(92, 129, 158, 0.28), transparent 46%);
}

.players-streams h2 {
  margin: 0 0 16px;
  color: #fff;
  font: 800 16px/1 Arial, sans-serif;
}

.players-video-card {
  position: relative;
  min-height: 196px;
  display: grid;
  align-content: end;
  padding: 12px;
  overflow: hidden;
  border-radius: 3px;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.65)),
    radial-gradient(circle at 45% 45%, rgba(153, 181, 68, 0.7), transparent 30%),
    linear-gradient(135deg, #152912, #2b3318);
}

.players-video-card__play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 24px solid #fff;
  transform: translate(-40%, -50%);
}

.players-video-card strong {
  color: #e9f0f6;
  font-size: 13px;
}

.players-video-card small {
  justify-self: end;
  color: #b5c2cf;
  font-size: 11px;
}

.players-stream-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px 8px;
}

.players-stream-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 26px;
  padding: 4px 8px;
  border: 1px solid #26313c;
  border-radius: 3px;
  background: #25323e;
  color: #d2dbe4;
  font-size: 11px;
}

.players-stream-grid span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.players-stream-grid small {
  color: #9aa8b6;
}

@media (max-width: 1100px) {
  .page-wrap--players-hltv {
    width: min(100%, calc(100% - 12px));
  }

  .players-shell,
  .players-brandbar,
  .players-streams {
    grid-template-columns: 1fr;
  }

  .players-streams {
    margin: 0;
  }
}

@media (max-width: 780px) {
  .players-grid,
  .players-stream-grid {
    grid-template-columns: 1fr;
  }

  .players-alpha {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}

/* ===== HLTV Player Profile ===== */
.page-wrap--player-profile {
  width: 1000px;
  max-width: calc(100% - 18px);
  min-height: 100vh;
  padding: 10px;
  background: #171c21;
  color: #aeb9c4;
}

.player-profile-shell {
  width: min(820px, 100%);
  margin: 0 auto;
}

.player-profile-back {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 10px;
  padding: 0 10px;
  border: 1px solid #26313c;
  background: #2f3b48;
  color: #9db3c7;
  font-size: 12px;
  font-weight: 800;
}

.player-profile-hero,
.player-profile-stats,
.player-profile-panel {
  border: 1px solid #26313c;
  background: #2f3b48;
}

.player-profile-hero {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) 190px;
  gap: 16px;
  align-items: center;
  padding: 16px;
  background:
    linear-gradient(135deg, #2f3b48, #1f2a34 62%),
    radial-gradient(circle at 20% 20%, rgba(83, 116, 145, 0.32), transparent 42%);
}

.player-profile-portrait {
  width: 118px;
  height: 138px;
  display: grid;
  place-items: end center;
  padding-bottom: 14px;
  border: 1px solid #53606e;
  background: #26313c;
}

.player-profile-portrait span {
  color: #fff;
  font: 900 34px/1 Arial, sans-serif;
}

.player-profile-title {
  min-width: 0;
}

.player-profile-title span,
.player-profile-team span,
.player-profile-stats span,
.player-profile-info span,
.player-map-row span {
  color: #8796a5;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.player-profile-title h1 {
  margin: 3px 0;
  color: #fff;
  font: 900 46px/1 Arial, sans-serif;
  letter-spacing: 0;
}

.player-profile-title p {
  margin: 0;
  color: #b9c5cf;
  font-size: 15px;
}

.player-profile-team {
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid #3f4d5a;
  background: #26313c;
}

.player-profile-team strong {
  overflow: hidden;
  color: #fff;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.player-profile-team small {
  color: #9db3c7;
  font-size: 12px;
}

.player-profile-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 10px;
  background: #26313c;
}

.player-profile-stats div {
  display: grid;
  gap: 4px;
  padding: 12px;
  background: #2f3b48;
}

.player-profile-stats strong {
  color: #fff;
  font: 900 22px/1 Arial, sans-serif;
}

.player-profile-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.player-profile-panel__head {
  min-height: 28px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  border-bottom: 1px solid #26313c;
  background: #334150;
  color: #aeb9c4;
  font: 800 10px/1 Arial, sans-serif;
  text-transform: uppercase;
}

.player-profile-info,
.player-map-list,
.player-related-list {
  display: grid;
}

.player-profile-info div,
.player-map-row,
.player-related-list a {
  min-height: 38px;
  display: grid;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-top: 1px solid #26313c;
}

.player-profile-info div {
  grid-template-columns: 100px minmax(0, 1fr);
}

.player-profile-info strong,
.player-map-row strong,
.player-related-list strong,
.player-related-list b {
  overflow: hidden;
  color: #d4dde6;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.player-map-row {
  grid-template-columns: minmax(0, 1fr) 52px 58px;
}

.player-map-row small,
.player-related-list small {
  color: #8796a5;
  font-size: 10px;
}

.player-related-list a {
  grid-template-columns: 34px minmax(0, 1fr) 44px;
  color: #aeb9c4;
}

.player-related-list a:hover {
  background: #354453;
}

.player-related-avatar {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #596b79;
  color: #fff;
  font-weight: 900;
}

@media (max-width: 760px) {
  .player-profile-hero,
  .player-profile-stats,
  .player-profile-layout {
    grid-template-columns: 1fr;
  }

  .player-profile-title h1 {
    font-size: 34px;
  }
}

/* ===== HLTV Stats Page ===== */
.page-wrap--stats-hltv {
  width: 1000px;
  max-width: calc(100% - 18px);
  min-height: 100vh;
  padding: 10px;
  background: #171c21;
}

.stats-shell {
  display: grid;
  grid-template-columns: 162px minmax(0, 1fr) 158px;
  gap: 10px;
  align-items: start;
}

.stats-left-rail,
.stats-right-rail {
  display: grid;
  gap: 10px;
  align-content: start;
}

.stats-main {
  min-width: 0;
}

.stats-brandbar {
  min-height: 72px;
  display: grid;
  grid-template-columns: 60px 190px repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  background: #171c21;
}

.stats-brandmark {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  background: #2f77ab;
  color: #fff;
  font: 900 20px/1 Arial, sans-serif;
}

.stats-brandbar > strong {
  color: #fff;
  font: 900 42px/1 Arial, sans-serif;
  letter-spacing: -1px;
}

.stats-ticker {
  min-height: 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 62px;
  gap: 2px 8px;
  align-content: center;
  padding: 5px 8px;
  border-radius: 3px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(55, 13, 2, 0.32)),
    linear-gradient(180deg, #f47d2d, #6d1b05);
}

.stats-ticker span {
  grid-column: 1 / -1;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.stats-ticker b {
  color: #fff;
  font-size: 11px;
}

.stats-brand-card,
.stats-panel {
  overflow: hidden;
  border: 1px solid #26313c;
  background: #2f3b48;
}

.stats-brand-card {
  display: grid;
  gap: 5px;
  min-height: 92px;
  align-content: center;
  padding: 10px;
  background: linear-gradient(180deg, #121820, #303d4a);
}

.stats-brand-card strong {
  color: #fff;
  font: 900 22px/1 Arial, sans-serif;
}

.stats-brand-card span {
  color: #8fa2b4;
  font-size: 11px;
}

.stats-panel__head {
  min-height: 28px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  border-bottom: 1px solid #26313c;
  background: #40576f;
  color: #fff;
  font: 800 10px/1 Arial, sans-serif;
  text-transform: uppercase;
}

.stats-nav-list,
.stats-filter-list,
.stats-activity-list {
  display: grid;
}

.stats-nav-list a,
.stats-filter-group a {
  min-height: 32px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  border-top: 1px dotted #4c5b68;
  color: #8f9da9;
  font-size: 13px;
}

.stats-nav-list a.is-active,
.stats-filter-group a.is-active {
  color: #aecaeb;
  font-weight: 800;
}

.stats-version a {
  display: block;
  padding: 9px 8px;
  color: #b7c7d5;
  font-size: 13px;
}

.stats-search-box {
  margin: 8px;
  min-height: 32px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  border: 1px solid #4a5a69;
  color: #778693;
  font-size: 12px;
}

.stats-filter-group {
  border-top: 1px solid #25313c;
}

.stats-filter-group strong {
  min-height: 31px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  background: #263440;
  color: #aecaeb;
  font-size: 13px;
}

.stats-filterbar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  padding: 5px 8px 8px;
  background: #334150;
}

.stats-filterbar__item {
  min-width: 0;
  display: grid;
  gap: 7px;
  border-bottom: 2px solid #4f7194;
}

.stats-filterbar span {
  color: #83909d;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.stats-filterbar strong {
  color: #b9d1e8;
  font-size: 13px;
}

.stats-hero-strip {
  min-height: 118px;
  display: flex;
  align-items: end;
  gap: 6px;
  padding: 12px;
  background:
    radial-gradient(circle at 18% 38%, rgba(255, 40, 42, 0.78), transparent 18%),
    radial-gradient(circle at 76% 50%, rgba(255, 242, 30, 0.72), transparent 28%),
    linear-gradient(110deg, #17252b, #f5c92b 52%, #ffeb43);
}

.stats-hero-strip strong {
  color: #a5adb5;
  font-size: 13px;
}

.stats-hero-strip span {
  color: #818b95;
  font-size: 11px;
}

.stats-quick-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  padding: 16px;
  border: 1px solid #26313c;
  background: #2f3b48;
}

.stats-quick-nav a {
  min-height: 66px;
  display: grid;
  place-items: center;
  gap: 6px;
  border: 1px solid #26313c;
  background: #344251;
}

.stats-quick-nav span {
  width: 28px;
  height: 20px;
  display: block;
  background: #d9e0e7;
  clip-path: polygon(50% 0, 64% 32%, 100% 40%, 72% 62%, 80% 100%, 50% 78%, 20% 100%, 28% 62%, 0 40%, 36% 32%);
}

.stats-quick-nav strong {
  color: #aeb8c2;
  font-size: 13px;
}

.stats-tables {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.stats-table-card h2,
.stats-weapons-card h2 {
  margin: 0 0 8px;
  color: #8e989f;
  font: 800 13px/1 Arial, sans-serif;
}

.stats-table-list {
  display: grid;
  gap: 4px;
}

.stats-entity-row {
  min-height: 42px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 62px 52px;
  align-items: center;
  gap: 8px;
  padding: 4px 8px 4px 4px;
  background: #303d4a;
}

.stats-entity-row:hover {
  background: #374655;
}

.stats-avatar,
.stats-team-logo {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 3px;
  background: #536372;
  color: #fff;
  font-weight: 900;
}

.stats-team-logo {
  border-radius: 50%;
}

.stats-avatar.is-red,
.stats-team-logo.is-red { background: #b93038; }
.stats-avatar.is-gold,
.stats-team-logo.is-gold { background: #d7b028; color: #1a1d20; }
.stats-avatar.is-ice { background: #bfe8f2; color: #1a1d20; }
.stats-avatar.is-green { background: #2ab36f; }
.stats-avatar.is-blue { background: #2e6fb0; }
.stats-avatar.is-pink { background: #db526d; }
.stats-avatar.is-black { background: #111820; }
.stats-avatar.is-teal { background: #2a928a; }
.stats-team-logo.is-yellow { background: #d4d53a; color: #111; }
.stats-team-logo.is-orange { background: #de6428; }
.stats-team-logo.is-white { background: #e1e7ed; color: #111; }
.stats-team-logo.is-dark { background: #1b232c; }
.stats-team-logo.is-gray { background: #8a96a1; }
.stats-team-logo.is-navy { background: #1e4270; }

.stats-entity-row div {
  min-width: 0;
}

.stats-entity-row div > strong {
  display: block;
  overflow: hidden;
  color: #9ebbd4;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stats-entity-row div > small {
  display: block;
  margin-top: 2px;
  color: #788794;
  font-size: 10px;
}

.stats-score {
  justify-self: end;
  text-align: right;
}

.stats-score strong {
  color: #b7c1ca;
  font-size: 12px;
}

.stats-score span {
  color: #8897a4;
  font-size: 10px;
}

.stats-weapons-card {
  margin-top: 16px;
}

.stats-donut-wrap {
  min-height: 302px;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid #26313c;
  background: #2f3b48;
}

.stats-donut {
  width: 182px;
  height: 182px;
  border-radius: 50%;
  background: conic-gradient(
    #2f7db6 0 25%,
    #1573a9 25% 34%,
    #e48a22 34% 40%,
    #e6b73c 40% 46%,
    #a5aa45 46% 53%,
    #65ad59 53% 60%,
    #3eaa80 60% 70%,
    #328d93 70% 88%,
    #2f7db6 88% 100%
  );
  position: relative;
}

.stats-donut::after {
  content: "";
  position: absolute;
  inset: 46px;
  border-radius: 50%;
  background: #2f3b48;
}

.stats-weapon-labels {
  position: absolute;
  inset: 34px 80px;
  pointer-events: none;
}

.stats-weapon-labels span {
  position: absolute;
  color: #87929c;
  font-size: 10px;
}

.stats-weapon-labels span:nth-child(1) { left: 62%; top: 1%; }
.stats-weapon-labels span:nth-child(2) { left: 78%; top: 40%; }
.stats-weapon-labels span:nth-child(3) { left: 72%; top: 51%; }
.stats-weapon-labels span:nth-child(4) { left: 69%; top: 56%; }
.stats-weapon-labels span:nth-child(5) { left: 65%; top: 60%; }
.stats-weapon-labels span:nth-child(6) { left: 60%; top: 63%; }
.stats-weapon-labels span:nth-child(7) { left: 54%; top: 69%; }
.stats-weapon-labels span:nth-child(8) { left: 40%; top: 74%; }
.stats-weapon-labels span:nth-child(9) { left: 25%; top: 65%; }
.stats-weapon-labels span:nth-child(10) { left: 26%; top: 55%; }
.stats-weapon-labels span:nth-child(11) { left: 8%; top: 25%; }

.stats-activity-list a {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  min-height: 26px;
  padding: 7px 8px;
  border-left: 2px solid #d99a18;
  border-top: 1px solid #26313c;
  color: #9db3c7;
  font-size: 11px;
}

.stats-activity-list span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stats-activity-list small {
  color: #8c99a5;
}

@media (max-width: 1100px) {
  .page-wrap--stats-hltv {
    width: min(100%, calc(100% - 12px));
  }

  .stats-shell,
  .stats-brandbar,
  .stats-filterbar,
  .stats-quick-nav,
  .stats-tables {
    grid-template-columns: 1fr;
  }
}

/* ===== HLTV Fantasy Page ===== */
.page-wrap--fantasy-hltv {
  width: 1000px;
  max-width: calc(100% - 18px);
  min-height: 100vh;
  padding: 10px;
  background: #171c21;
}

.fantasy-brandbar {
  min-height: 72px;
  display: grid;
  grid-template-columns: 60px 190px repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  background: #171c21;
}

.fantasy-brandmark {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  background: #2f77ab;
  color: #fff;
  font: 900 20px/1 Arial, sans-serif;
}

.fantasy-brandbar > strong {
  color: #fff;
  font: 900 42px/1 Arial, sans-serif;
  letter-spacing: -1px;
}

.fantasy-ticker {
  min-height: 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 62px;
  gap: 2px 8px;
  align-content: center;
  padding: 5px 8px;
  border-radius: 3px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(55, 13, 2, 0.32)),
    linear-gradient(180deg, #f47d2d, #6d1b05);
}

.fantasy-ticker span {
  grid-column: 1 / -1;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.fantasy-ticker b {
  color: #fff;
  font-size: 11px;
}

.fantasy-main {
  width: 660px;
  max-width: 100%;
  margin-left: 0;
}

.fantasy-card,
.fantasy-leaderboard-card,
.fantasy-prizes-card,
.fantasy-info-card {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid #26313c;
  background: #344251;
}

.fantasy-card h1 {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin: -25px auto 14px;
  padding: 12px 16px;
  border-radius: 3px;
  background: #4b6480;
  color: #fff;
  font: 900 25px/1 Arial, sans-serif;
}

.fantasy-season-card {
  margin-top: 26px;
  padding: 34px 16px 16px;
}

.fantasy-partner-card {
  padding: 34px 16px 16px;
}

.fantasy-timeline {
  position: relative;
  padding-left: 46px;
}

.fantasy-timeline::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0;
  bottom: 8px;
  width: 4px;
  border-radius: 4px;
  background: #88a9ca;
}

.fantasy-timeline::after {
  content: "";
  position: absolute;
  left: -2px;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #88a9ca;
  box-shadow: 0 42px 0 #88a9ca, 0 334px 0 rgba(136, 169, 202, 0.16);
}

.fantasy-timeline button {
  min-width: 156px;
  min-height: 21px;
  border: 0;
  background: #d7d7d7;
  color: #000;
  font: 800 12px/1 Arial, sans-serif;
  cursor: pointer;
}

.fantasy-month {
  margin: 16px 0 18px;
}

.fantasy-month h2 {
  margin: 0 0 12px;
  color: #9fb9d2;
  font: 800 17px/1 Arial, sans-serif;
}

.fantasy-month h2 small {
  color: #7e8b98;
  font-size: 10px;
  font-weight: 700;
}

.fantasy-game-list {
  display: grid;
  gap: 9px;
}

.fantasy-game {
  position: relative;
  min-height: 45px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 150px;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  overflow: hidden;
  background: #2f3b48;
  clip-path: polygon(26px 0, 100% 0, 100% 100%, 26px 100%, 0 50%);
}

.fantasy-game.is-upcoming {
  min-height: 64px;
  background: #314052;
}

.fantasy-game.is-live {
  min-height: 68px;
  background: linear-gradient(135deg, #2f3b48 0 74%, #4c6887 74%);
}

.fantasy-game-logo {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: #536372;
}

.fantasy-game-logo::before {
  content: "";
  width: 24px;
  height: 24px;
  background: #d8e0e7;
}

.fantasy-game-logo.is-iem::before {
  border-radius: 50%;
  background: transparent;
  border: 3px solid #9aa5af;
}

.fantasy-game-logo.is-blast::before {
  background: #ff971e;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.fantasy-game-logo.is-red::before {
  background: #d6385a;
}

.fantasy-game-logo.is-stake::before {
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 78% 100%, 20% 100%);
}

.fantasy-game-logo.is-clutch::before {
  background: #e9eef2;
  clip-path: polygon(50% 0, 100% 22%, 88% 100%, 12% 100%, 0 22%);
}

.fantasy-game-logo.is-cct::before {
  background: #ffd51c;
  clip-path: polygon(50% 0, 100% 30%, 80% 100%, 20% 100%, 0 30%);
}

.fantasy-game__copy {
  min-width: 0;
}

.fantasy-game__copy strong {
  display: block;
  overflow: hidden;
  color: #9faab5;
  font-size: 14px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fantasy-game__copy small {
  display: block;
  margin-top: 5px;
  overflow: hidden;
  color: #d9e09a;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fantasy-game__status {
  justify-self: end;
  min-width: 116px;
  padding: 8px 9px;
  background: #fed56f;
  color: #000;
  text-align: right;
  clip-path: polygon(36px 0, 100% 0, 100% 100%, 0 100%);
}

.fantasy-game.is-upcoming .fantasy-game__status,
.fantasy-game.is-live .fantasy-game__status {
  min-width: 118px;
  border-radius: 3px;
  background: #f4c557;
  clip-path: none;
  text-align: center;
}

.fantasy-game.is-live .fantasy-game__status {
  background: #c90408;
  color: #fff;
}

.fantasy-game__status strong {
  display: block;
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fantasy-game__status span {
  display: block;
  margin-top: 2px;
  font-size: 10px;
}

.fantasy-end {
  margin-top: 14px;
  color: #a2abb3;
  font-size: 17px;
  font-weight: 900;
}

.fantasy-partner-card p {
  margin: 14px 0 0;
  color: #a3adb8;
  font-size: 13px;
}

.fantasy-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid #506071;
}

.fantasy-tabs a {
  min-height: 41px;
  display: grid;
  place-items: center;
  border-right: 1px solid #435160;
  color: #8f9da9;
  font-size: 11px;
}

.fantasy-tabs a.is-active {
  border-bottom: 2px solid #91b5d8;
  color: #c1ccd7;
  font-weight: 800;
}

.fantasy-leaderboard-head {
  position: relative;
  padding: 28px 16px 30px;
}

.fantasy-leaderboard-head h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #aeb6be;
  font: 900 24px/1 Arial, sans-serif;
  text-transform: uppercase;
}

.fantasy-leaderboard-head span {
  position: absolute;
  right: 22px;
  top: 14px;
  color: rgba(255, 255, 255, 0.04);
  font: 900 50px/1 Arial, sans-serif;
  text-transform: uppercase;
}

.fantasy-table {
  width: calc(100% - 32px);
  margin: 0 16px 10px;
  border-collapse: collapse;
  color: #aeb8c2;
  font-size: 12px;
}

.fantasy-table th {
  padding: 7px 8px;
  border-top: 1px solid #667382;
  border-bottom: 1px solid #667382;
  color: #87939f;
  font-size: 10px;
  text-align: left;
  text-transform: uppercase;
}

.fantasy-table td {
  padding: 8px;
  background: #303d4a;
  font-weight: 800;
}

.fantasy-table tr:nth-child(even) td {
  background: #3a4857;
}

.fantasy-table td:last-child,
.fantasy-table th:last-child {
  text-align: right;
}

.fantasy-table .gold { color: #ffd000; }
.fantasy-table .silver { color: #d7dde3; }
.fantasy-table .bronze { color: #e09334; }

.fantasy-prize {
  display: inline-flex;
  padding: 5px 7px;
  border-radius: 4px;
  background: #111a22;
  color: #d6dde5;
}

.fantasy-prize.is-gold {
  background: #ffd000;
  color: #000;
}

.fantasy-prize.is-silver {
  background: #d7dde3;
  color: #000;
}

.fantasy-prize.is-bronze {
  background: #e09334;
  color: #000;
}

.fantasy-table-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px 10px;
  color: #8896a3;
  font-size: 12px;
}

.fantasy-table-footer span {
  min-width: 200px;
  padding: 5px 8px;
  border: 1px solid #536270;
}

.fantasy-prizes-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 20px;
  padding: 34px 16px;
  background:
    linear-gradient(135deg, #344251 0 63%, #49637d 63%);
}

.fantasy-prizes-card h2,
.fantasy-info-card h2 {
  margin: 0 0 14px;
  color: #b5bdc5;
  font: 900 25px/1 Arial, sans-serif;
  text-transform: uppercase;
}

.fantasy-prizes-card p,
.fantasy-info-card p {
  margin: 0;
  color: #a3adb8;
  font-size: 14px;
  line-height: 1.55;
}

.fantasy-prize-stack {
  justify-self: end;
  display: grid;
  gap: 5px;
  align-content: start;
  min-width: 164px;
}

.fantasy-prize-stack > strong {
  width: fit-content;
  justify-self: center;
  padding: 7px 11px;
  border-radius: 4px;
  background: #2f7db6;
  color: #fff;
  font-size: 12px;
}

.fantasy-prize-stack span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 12px;
  border: 1px solid #26313c;
  border-radius: 4px;
  background: #2b3642;
  color: #aeb8c2;
  font-size: 18px;
  font-weight: 900;
}

.fantasy-prize-stack b {
  padding: 3px 8px;
  border-radius: 4px;
  background: #ffd000;
  color: #000;
}

.fantasy-prize-stack span:nth-of-type(2) b { background: #d7dde3; }
.fantasy-prize-stack span:nth-of-type(3) b { background: #e09334; }

.fantasy-prize-stack small {
  justify-self: center;
  color: #84919e;
  font-size: 11px;
}

.fantasy-info-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 26px 16px 32px;
}

.fantasy-info-card table {
  width: 100%;
  margin-top: 12px;
  border-collapse: collapse;
  color: #aeb8c2;
}

.fantasy-info-card td {
  padding: 7px 8px;
  background: #303d4a;
}

.fantasy-info-card tr:nth-child(even) td {
  background: #3a4857;
}

.fantasy-info-card td:last-child {
  text-align: right;
  font-weight: 900;
}

@media (max-width: 760px) {
  .fantasy-brandbar,
  .fantasy-game,
  .fantasy-tabs,
  .fantasy-prizes-card {
    grid-template-columns: 1fr;
  }

  .fantasy-timeline {
    padding-left: 24px;
  }
}

/* ===== HLTV Forum Page ===== */
.page-wrap--forum-hltv {
  width: 1000px;
  max-width: calc(100% - 18px);
  min-height: 100vh;
  padding: 10px;
  background: #171c21;
}

.forum-hltv-shell {
  display: grid;
  grid-template-columns: 162px minmax(0, 1fr) 158px;
  gap: 10px;
  align-items: start;
}

.forum-hltv-left,
.forum-hltv-right {
  display: grid;
  gap: 10px;
  align-content: start;
}

.forum-hltv-main {
  min-width: 0;
}

.forum-hltv-brandbar {
  min-height: 72px;
  display: grid;
  grid-template-columns: 60px 190px repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  background: #171c21;
}

.forum-hltv-brandmark {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  background: #2f77ab;
  color: #fff;
  font: 900 20px/1 Arial, sans-serif;
}

.forum-hltv-brandbar > strong {
  color: #fff;
  font: 900 42px/1 Arial, sans-serif;
  letter-spacing: -1px;
}

.forum-hltv-ticker {
  min-height: 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 62px;
  gap: 2px 8px;
  align-content: center;
  padding: 5px 8px;
  border-radius: 3px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(55, 13, 2, 0.32)),
    linear-gradient(180deg, #f47d2d, #6d1b05);
}

.forum-hltv-ticker span {
  grid-column: 1 / -1;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.forum-hltv-ticker b {
  color: #fff;
  font-size: 11px;
}

.forum-hltv-brand-card,
.forum-hltv-panel,
.forum-hltv-table-card {
  overflow: hidden;
  border: 1px solid #26313c;
  background: #2f3b48;
}

.forum-hltv-brand-card {
  min-height: 96px;
  display: grid;
  gap: 6px;
  align-content: center;
  padding: 10px;
  background: linear-gradient(180deg, #121820, #303d4a);
}

.forum-hltv-brand-card strong {
  color: #fff;
  font: 900 21px/1 Arial, sans-serif;
}

.forum-hltv-brand-card span {
  color: #8fa2b4;
  font-size: 11px;
}

.forum-hltv-panel__head {
  min-height: 28px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  border-bottom: 1px solid #26313c;
  background: #40576f;
  color: #fff;
  font: 800 10px/1 Arial, sans-serif;
  text-transform: uppercase;
}

.forum-hltv-nav,
.forum-hltv-ranking,
.forum-hltv-activity {
  display: grid;
}

.forum-hltv-nav a,
.forum-hltv-ranking a {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 8px;
  border-top: 1px dotted #4c5b68;
  color: #8f9da9;
  font-size: 13px;
}

.forum-hltv-nav a.is-active {
  color: #aecaeb;
  font-weight: 800;
}

.forum-hltv-nav span,
.forum-hltv-ranking span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.forum-hltv-nav small {
  color: #8b99a6;
}

.forum-hltv-create {
  padding: 10px;
}

.forum-hltv-create p {
  margin: 0 0 10px;
  color: #9daab6;
  font-size: 12px;
  line-height: 1.45;
}

.forum-hltv-create a {
  min-height: 32px;
  display: grid;
  place-items: center;
  border-radius: 2px;
  background: #4d6680;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.forum-hltv-crumbs {
  margin: 0 0 5px;
  color: #8d9ba8;
  font-size: 11px;
  font-weight: 800;
}

.forum-hltv-table-card {
  border-color: #26313c;
}

.forum-hltv-table-head,
.forum-hltv-topic-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px 92px 116px;
  align-items: center;
  gap: 10px;
}

.forum-hltv-table-head {
  min-height: 36px;
  padding: 0 8px;
  background: #405064;
  color: #aeb8c2;
  font-size: 12px;
  font-weight: 900;
}

.forum-hltv-topic-list {
  display: grid;
}

.forum-hltv-topic-row {
  min-height: 37px;
  padding: 0 8px;
  border-top: 1px solid #4b5a68;
  background: #303d4a;
  color: #a5b2be;
  font-size: 12px;
}

.forum-hltv-topic-row:nth-child(even) {
  background: #2f3b48;
}

.forum-hltv-topic-row.has-pin,
.forum-hltv-topic-row:hover {
  background: #40576f;
}

.forum-hltv-topic-row strong {
  min-width: 0;
  overflow: hidden;
  color: #9ebbd4;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.forum-hltv-topic-row span {
  min-width: 0;
  overflow: hidden;
  color: #a1acb6;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.forum-hltv-activity a {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  min-height: 26px;
  padding: 7px 8px;
  border-left: 2px solid #d99a18;
  border-top: 1px solid #26313c;
  color: #9db3c7;
  font-size: 11px;
}

.forum-hltv-activity span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.forum-hltv-activity small {
  color: #8c99a5;
}

.forum-hltv-stats {
  display: grid;
  gap: 1px;
  padding: 1px;
}

.forum-hltv-stats div {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 8px;
  background: #303d4a;
}

.forum-hltv-stats span {
  color: #8997a4;
  font-size: 11px;
}

.forum-hltv-stats strong {
  color: #d2dbe4;
  font-size: 12px;
}

@media (max-width: 1100px) {
  .page-wrap--forum-hltv {
    width: min(100%, calc(100% - 12px));
  }

  .forum-hltv-shell,
  .forum-hltv-brandbar,
  .forum-hltv-table-head,
  .forum-hltv-topic-row {
    grid-template-columns: 1fr;
  }

  .forum-hltv-table-head {
    display: none;
  }

  .forum-hltv-topic-row {
    padding: 8px;
  }
}

/* ===== HLTV Thread Page ===== */
.page-wrap--thread-hltv {
  width: 100%;
  max-width: none;
  min-height: calc(100vh - 40px);
  padding: 10px 12px 22px;
  background: #151a1f;
  color: #9fb1bf;
}

.thread-hltv-shell {
  width: min(992px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 162px minmax(0, 1fr) 158px;
  gap: 16px;
  align-items: start;
}

.thread-hltv-left,
.thread-hltv-right {
  display: grid;
  gap: 10px;
}

.thread-hltv-main {
  min-width: 0;
}

.thread-hltv-topbar {
  height: 62px;
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: 240px 1fr 1fr;
  gap: 10px;
  align-items: center;
}

.thread-hltv-logo {
  height: 60px;
  display: flex;
  align-items: center;
  padding-left: 72px;
  background: linear-gradient(90deg, #2c79b5 0 60px, transparent 60px);
  color: #fff;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 0;
}

.thread-hltv-score {
  height: 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  grid-template-rows: 18px 1fr;
  align-items: center;
  padding: 6px 10px;
  background: linear-gradient(135deg, #120906, #4a1409 58%, #1a0804);
  border: 1px solid #25130d;
  color: #fff;
  font-size: 11px;
}

.thread-hltv-score span {
  grid-column: 1 / -1;
  color: #ffcfb8;
  font-size: 10px;
  font-weight: 800;
}

.thread-hltv-score b,
.thread-hltv-score strong {
  font-size: 12px;
}

.thread-hltv-brand,
.thread-hltv-panel,
.thread-hltv-title,
.thread-hltv-post,
.thread-hltv-reply,
.thread-hltv-empty {
  background: #2d3945;
  border: 1px solid #11171d;
  box-shadow: 0 1px 0 rgba(255,255,255,.035) inset;
}

.thread-hltv-brand {
  min-height: 86px;
  display: grid;
  place-items: center;
  text-align: center;
  background: #151a1f;
}

.thread-hltv-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: #2c79b5;
  color: #fff;
  font-weight: 900;
}

.thread-hltv-brand strong {
  color: #fff;
  font-size: 24px;
}

.thread-hltv-panel__head {
  min-height: 28px;
  padding: 8px 8px 6px;
  background: #40576e;
  color: #d6e2ec;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.thread-hltv-panel a {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 9px;
  border-top: 1px solid rgba(255,255,255,.07);
  color: #9bb9d2;
  font-size: 12px;
  text-decoration: none;
}

.thread-hltv-panel a:hover {
  background: #344452;
}

.thread-hltv-panel small {
  color: #91a0aa;
}

.thread-hltv-crumbs {
  margin-bottom: 6px;
  color: #7f8c97;
  font-size: 11px;
  font-weight: 800;
}

.thread-hltv-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  margin-bottom: 16px;
  padding: 10px;
}

.thread-hltv-title h1 {
  margin: 0 0 16px;
  color: #c3ccd3;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: 0;
}

.thread-hltv-title p {
  margin: 0;
  color: #8c9aa5;
  font-size: 12px;
}

.thread-hltv-title button,
.thread-hltv-post footer button,
.thread-hltv-reply button {
  border: 0;
  background: #40576e;
  color: #c8d7e3;
  font: 800 11px/1.2 "Inter", sans-serif;
  cursor: pointer;
}

.thread-hltv-title button {
  padding: 6px 10px;
}

.thread-hltv-posts {
  display: grid;
  gap: 8px;
}

.thread-hltv-post {
  margin-left: 0;
  background: #2f3d49;
}

.thread-hltv-post.is-child {
  margin-left: 18px;
}

.thread-hltv-post.is-deep {
  margin-left: 38px;
}

.thread-hltv-post header,
.thread-hltv-post footer {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 5px 9px;
  background: #344554;
  color: #8fa4b6;
  font-size: 12px;
}

.thread-hltv-post header div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.thread-hltv-post header strong {
  overflow: hidden;
  color: #93b2ce;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.thread-hltv-post__body {
  min-height: 40px;
  padding: 12px 10px;
  color: #a7b3bd;
  font-size: 13px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.thread-hltv-post footer {
  background: #2c3945;
  color: #87949d;
}

.thread-hltv-post footer button {
  min-width: 32px;
  min-height: 20px;
  border-radius: 3px;
}

.thread-hltv-reply {
  margin-top: 14px;
}

.thread-hltv-reply form {
  display: grid;
  gap: 8px;
  padding: 10px;
}

.thread-hltv-reply input,
.thread-hltv-reply textarea {
  width: 100%;
  border: 1px solid #526273;
  background: #25313b;
  color: #c6d2dc;
  padding: 9px 10px;
  font: 500 12px/1.4 "Inter", sans-serif;
}

.thread-hltv-reply textarea {
  resize: vertical;
}

.thread-hltv-reply button {
  justify-self: end;
  min-height: 30px;
  padding: 0 14px;
  background: #59758f;
}

.thread-hltv-empty {
  padding: 18px;
  color: #aab7c2;
}

@media (max-width: 980px) {
  .page-wrap--thread-hltv {
    padding: 12px;
  }

  .thread-hltv-shell,
  .thread-hltv-topbar,
  .thread-hltv-title {
    grid-template-columns: 1fr;
  }

  .thread-hltv-left,
  .thread-hltv-right {
    display: none;
  }

  .thread-hltv-logo {
    padding-left: 68px;
  }

  .thread-hltv-post.is-child,
  .thread-hltv-post.is-deep {
    margin-left: 0;
  }
}

/* ===== HLTV Live Page ===== */
.page-wrap--live-hltv {
  width: 100%;
  max-width: none;
  min-height: calc(100vh - 40px);
  padding: 10px 12px 34px;
  background: #151a1f;
  color: #9fb1bf;
}

.live-hltv-shell {
  width: min(990px, 100%);
  margin: 0 auto;
}

.live-hltv-topbar {
  height: 68px;
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: 250px 1fr 1fr;
  gap: 10px;
  align-items: center;
}

.live-hltv-logo {
  height: 60px;
  display: flex;
  align-items: center;
  padding-left: 72px;
  background: linear-gradient(90deg, #2c79b5 0 60px, transparent 60px);
  color: #fff;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 0;
}

.live-hltv-ticker {
  height: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 50px;
  grid-template-rows: 18px 1fr;
  align-items: center;
  padding: 6px 10px;
  background: linear-gradient(135deg, #100705, #54160a 58%, #170704);
  border: 1px solid #26120c;
  color: #fff;
  font-size: 11px;
}

.live-hltv-ticker span {
  grid-column: 1 / -1;
  color: #ffcfb8;
  font-size: 10px;
  font-weight: 900;
}

.live-hltv-ticker b,
.live-hltv-ticker strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.live-hltv-viewbar {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  background: #213b51;
  border: 1px solid #111820;
  border-bottom: 0;
}

.live-hltv-viewbar button {
  height: 25px;
  border: 1px solid #6c8396;
  background: #203246;
  color: #c1d2df;
  padding: 0 10px;
  font-size: 12px;
  cursor: pointer;
}

.live-hltv-viewbar__source {
  margin-left: auto;
  color: #c1d2df;
  font-size: 12px;
  white-space: nowrap;
}

.live-hltv-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 252px;
  min-height: 420px;
  border: 1px solid #111820;
  background: #1b2229;
}

.live-hltv-stage {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(14,15,23,.76), rgba(14,15,23,.78)),
    radial-gradient(circle at 52% 40%, rgba(80,63,92,.44), transparent 34%),
    linear-gradient(145deg, #191825, #0f1118 58%, #241820);
}

.live-hltv-stage::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(24deg, transparent 0 43%, rgba(160,100,80,.18) 44% 47%, transparent 48%),
    linear-gradient(158deg, transparent 0 46%, rgba(95,120,145,.14) 47% 50%, transparent 51%);
  transform: rotate(-5deg);
}

.live-hltv-stage__empty,
.live-hltv-stage__match {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 12px;
  color: #fff;
  text-align: center;
}

.live-hltv-stage__empty strong {
  font-size: 42px;
  line-height: 1;
}

.live-hltv-stage__empty span {
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: 0;
}

.live-hltv-stage__teams {
  display: grid;
  grid-template-columns: minmax(0, 180px) auto minmax(0, 180px);
  gap: 26px;
  align-items: center;
}

.live-hltv-stage__teams div {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.live-hltv-stage__teams span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #223d56;
  border: 2px solid #5d7d99;
  color: #fff;
  font-weight: 900;
}

.live-hltv-stage__teams strong {
  overflow: hidden;
  max-width: 180px;
  color: #fff;
  font-size: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.live-hltv-stage__teams b {
  color: #fff;
  font-size: 42px;
  line-height: 1;
}

.live-hltv-stage__match p {
  margin: 0;
  color: #b3c0ca;
  font-size: 13px;
}

.live-hltv-stage__notice {
  color: #8e9aa5;
  font-size: 12px;
}

.live-hltv-player {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  background: #05080c;
}

.live-hltv-player iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.live-hltv-player__caption {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  border-top: 1px solid #182535;
  background: #101820;
  color: #c8d7e3;
  font-size: 12px;
}

.live-hltv-player__caption span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.live-hltv-player__caption a {
  color: #9fc8ee;
  font-weight: 900;
  white-space: nowrap;
}

.live-hltv-scorebar {
  max-height: 420px;
  overflow-y: auto;
  background: #27618d;
  border-left: 1px solid #0f1b25;
}

.live-hltv-scorebar__message {
  padding: 10px;
  color: #c9d8e4;
  font-size: 12px;
}

.live-hltv-scoregroup header {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 10px;
  background: #1d3c55;
  border-top: 1px solid rgba(255,255,255,.12);
  color: #fff;
}

.live-hltv-scoregroup header strong {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.live-hltv-scoregroup button {
  min-height: 36px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 5px 10px;
  border: 0;
  border-top: 1px solid rgba(255,255,255,.12);
  background: transparent;
  color: #c6d9e9;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.live-hltv-scoregroup button:hover,
.live-hltv-scoregroup button.is-active {
  background: #1d4c72;
  color: #fff;
}

.live-hltv-scoregroup button div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.live-hltv-teammark {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: #173246;
  color: #bfe4ff;
  font-size: 9px;
  font-weight: 900;
}

.live-hltv-scoregroup b {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.live-hltv-scoregroup button strong {
  color: #fff;
  font-size: 13px;
  text-align: right;
}

.live-hltv-tabs {
  position: sticky;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #23435d;
  border-top: 1px solid rgba(255,255,255,.16);
}

.live-hltv-tabs span {
  min-height: 30px;
  display: grid;
  place-items: center;
  color: #d8e7f3;
  font-size: 12px;
  font-weight: 900;
}

.live-hltv-under {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 12px;
}

.live-hltv-feed {
  background: #2d3945;
  border: 1px solid #11171d;
}

.live-hltv-panel-head {
  min-height: 30px;
  padding: 8px 10px 6px;
  background: #40576e;
  color: #d6e2ec;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.live-hltv-feed a,
.live-hltv-feed button {
  min-height: 30px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 7px 10px;
  border: 0;
  border-top: 1px solid rgba(255,255,255,.07);
  background: transparent;
  color: #a7bdcf;
  cursor: pointer;
  font-size: 12px;
  font-family: inherit;
  text-align: left;
}

.live-hltv-feed button:hover,
.live-hltv-feed button.is-active {
  background: #344452;
  color: #fff;
}

.live-hltv-feed span,
.live-hltv-feed button span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.live-hltv-feed small,
.live-hltv-feed button small {
  color: #8e9aa5;
}

@media (max-width: 980px) {
  .page-wrap--live-hltv {
    padding: 12px;
  }

  .live-hltv-topbar,
  .live-hltv-board,
  .live-hltv-under,
  .live-hltv-stage__teams {
    grid-template-columns: 1fr;
  }

  .live-hltv-topbar {
    height: auto;
  }

  .live-hltv-logo {
    padding-left: 68px;
  }

  .live-hltv-scorebar {
    max-height: none;
    border-left: 0;
    border-top: 1px solid #0f1b25;
  }

  .live-hltv-stage__teams b {
    font-size: 34px;
  }
}

.scene-hltv-pulse {
  margin-top: 16px;
}

.scene-panel__head small {
  color: #9ca8b3;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.scene-hltv-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
}

.scene-hltv-grid > div {
  min-width: 0;
  background: #202a35;
  border: 1px solid rgba(255,255,255,.05);
}

.scene-hltv-grid strong {
  display: block;
  padding: 8px 10px;
  background: #303d4b;
  color: #dce5ec;
  font-size: 11px;
  text-transform: uppercase;
}

.scene-hltv-grid a {
  min-height: 42px;
  display: grid;
  gap: 2px;
  padding: 8px 10px;
  border-top: 1px solid rgba(255,255,255,.055);
}

.scene-hltv-grid a:hover {
  background: #263240;
}

.scene-hltv-grid span {
  min-width: 0;
  overflow: hidden;
  color: #d8e0e8;
  font-size: 12px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.scene-hltv-grid small,
.scene-hltv-source-note {
  color: #8f9ba8;
  font-size: 11px;
}

.scene-hltv-source-note {
  margin: 0;
  padding: 0 10px 10px;
}

.players-hltv-top {
  margin: 0 0 18px;
  background: #2d3945;
  border: 1px solid #11171d;
}

.players-hltv-top__head {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 11px;
  background: #40576e;
}

.players-hltv-top__head h2 {
  margin: 0;
  color: #e5edf5;
  font-size: 13px;
}

.players-hltv-top__head span {
  color: #aebccc;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.players-hltv-top__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.players-hltv-top__grid a {
  min-width: 0;
  min-height: 72px;
  display: grid;
  gap: 3px;
  padding: 11px;
  border-top: 1px solid rgba(255,255,255,.07);
  border-right: 1px solid rgba(255,255,255,.07);
}

.players-hltv-top__grid a:hover {
  background: #344452;
}

.players-hltv-top__grid strong,
.players-hltv-top__grid span,
.players-hltv-top__grid small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.players-hltv-top__grid strong {
  color: #edf4fb;
  font-size: 13px;
}

.players-hltv-top__grid span,
.players-hltv-top__grid small {
  color: #9fadb9;
  font-size: 11px;
}

.slug-hltv-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
}

.slug-hltv-grid a {
  min-width: 0;
  min-height: 68px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 12px;
  background: #202a35;
  border: 1px solid rgba(255,255,255,.06);
}

.slug-hltv-grid a:hover {
  background: #293544;
}

.slug-hltv-grid strong,
.slug-hltv-grid span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.slug-hltv-grid strong {
  color: #edf4fb;
  font-size: 13px;
}

.slug-hltv-grid span {
  color: #9fadb9;
  font-size: 11px;
}

@media (max-width: 980px) {
  .scene-hltv-grid,
  .players-hltv-top__grid,
  .slug-hltv-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Samsung GT-I9001 / old Android profile ===== */
@media (max-width: 520px) {
  html,
  body {
    min-width: 0 !important;
    width: 100% !important;
    overflow-x: hidden !important;
    background: #101820 !important;
    color: #edf3f8;
    font: 14px/1.35 Arial, sans-serif !important;
  }

  * {
    max-width: 100%;
    box-shadow: none !important;
    text-shadow: none !important;
    animation: none !important;
    transition: none !important;
  }

  .site-shell,
  .site-main,
  .page-wrap,
  .page-wrap--scene,
  .footer-inner,
  .topbar-inner {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
  }

  .site-main {
    min-height: 0;
  }

  .topbar {
    position: static !important;
    border-bottom: 2px solid #4d8fc0;
    background: #202b36 !important;
  }

  .topbar-inner {
    display: block !important;
    padding: 0 !important;
  }

  .brand {
    display: block !important;
    min-width: 0 !important;
    padding: 9px 10px !important;
    border: 0 !important;
    background: #263646;
  }

  .brand-mark {
    display: inline-block !important;
    width: 34px !important;
    height: 30px !important;
    margin-right: 7px;
    background: #4d8fc0 !important;
    color: #fff !important;
    font: 800 15px/30px Arial, sans-serif !important;
    text-align: center;
    vertical-align: middle;
  }

  .brand-copy {
    display: inline-block;
    vertical-align: middle;
  }

  .brand-copy strong {
    font: 800 18px/1 Arial, sans-serif !important;
  }

  .brand-copy span,
  .topbar-burger,
  .search-form,
  .utility-link--icon,
  .footer-meta span:not(:last-child) {
    display: none !important;
  }

  .topbar-menu,
  .topbar-menu.is-open,
  .main-nav,
  .topbar-tools {
    display: block !important;
    width: 100% !important;
  }

  .main-nav a,
  .utility-link {
    display: block !important;
    width: auto !important;
    height: auto !important;
    min-height: 36px !important;
    padding: 10px 12px !important;
    border: 0 !important;
    border-top: 1px solid #334352 !important;
    background: #19242e;
    color: #e7eef5 !important;
    font: 700 14px/1.15 Arial, sans-serif !important;
  }

  .main-nav a.is-active {
    background: #31536b !important;
    color: #fff !important;
  }

  .page-wrap--scene {
    padding: 6px !important;
    background: #101820 !important;
  }

  .scene-shell,
  .scene-shell--matches,
  .scene-shell--old-space,
  .scene-home-hero,
  .scene-home-hero--no-matches,
  .scene-brandbar,
  .scene-brandbar--compact,
  .scene-brandbar__ticker,
  .scene-hltv-grid,
  .scene-summary-grid,
  .scene-summary-grid--stacked,
  .scene-news-item,
  .players-hltv-top__grid,
  .slug-hltv-grid {
    display: block !important;
    grid-template-columns: none !important;
    gap: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .scene-left-rail,
  .scene-main-column,
  .scene-right-rail {
    display: block !important;
  }

  .scene-panel,
  .scene-brandbar,
  .scene-event-chip,
  .scene-ticker-card,
  .scene-news-item,
  .scene-hltv-grid > div {
    margin: 0 0 7px !important;
    border: 1px solid #344452 !important;
    background: #202b36 !important;
  }

  .scene-panel__head,
  .scene-tournament-card__head {
    min-height: 0 !important;
    padding: 7px 8px !important;
    background: #314252 !important;
    color: #f2f7fb !important;
    font: 800 12px/1.2 Arial, sans-serif !important;
    letter-spacing: 0 !important;
  }

  .scene-brand-panel {
    background: #202b36 !important;
  }

  .scene-brand-panel .scene-panel__head {
    color: #fff !important;
    font-size: 16px !important;
    text-align: left !important;
  }

  .scene-brand-panel__body {
    display: block !important;
    padding: 9px !important;
    text-align: left !important;
  }

  .scene-brand-panel__mark,
  .scene-brandbar__logo {
    display: inline-block !important;
    width: 40px !important;
    height: 36px !important;
    margin: 0 8px 0 0 !important;
    background: #4d8fc0 !important;
    color: #fff !important;
    font: 800 16px/36px Arial, sans-serif !important;
    text-align: center;
    vertical-align: middle;
  }

  .scene-brand-panel__body > div:last-child,
  .scene-brandbar__copy {
    display: inline-block !important;
    width: calc(100% - 54px);
    vertical-align: middle;
  }

  .scene-brand-panel__body strong,
  .scene-brandbar__copy strong {
    color: #fff !important;
    font: 800 18px/1.1 Arial, sans-serif !important;
  }

  .scene-brand-panel__body span,
  .scene-brandbar__copy span {
    display: block;
    margin-top: 3px;
    color: #aebdca !important;
    font-size: 12px !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
  }

  .scene-summary-grid > div {
    display: inline-block !important;
    width: 32.3% !important;
    min-height: 48px;
    padding: 7px 5px !important;
    border-top: 1px solid #344452;
    background: #18232d !important;
    vertical-align: top;
  }

  .scene-summary-grid--stacked > div {
    display: block !important;
    width: auto !important;
  }

  .scene-summary-grid span {
    font-size: 10px !important;
  }

  .scene-summary-grid strong {
    margin-top: 2px !important;
    font-size: 15px !important;
  }

  .scene-list__row,
  .scene-activity-list__row,
  .scene-event-chip,
  .scene-ticker-card,
  .scene-hltv-grid a,
  .players-hltv-top__grid a,
  .slug-hltv-grid a {
    display: block !important;
    min-height: 0 !important;
    padding: 9px 8px !important;
    border: 0 !important;
    border-top: 1px solid #344452 !important;
    color: #eef5fb !important;
  }

  .scene-ticker-card {
    background: #263646 !important;
  }

  .scene-ticker-card__top,
  .scene-ticker-card__teams {
    display: block !important;
  }

  .scene-ticker-card__teams strong,
  .scene-news-item__copy strong,
  .scene-hltv-grid span,
  .scene-list__row span,
  .scene-activity-list__row span,
  .scene-event-chip strong {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    color: #f4f8fc !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
  }

  .scene-news-item__tag,
  .scene-news-item__meta {
    display: none !important;
  }

  .scene-news-item__copy {
    display: block !important;
  }

  .scene-news-item__copy p,
  .scene-hltv-grid small,
  .scene-list__row small,
  .scene-activity-list__row small,
  .scene-event-chip span {
    display: block !important;
    margin-top: 3px !important;
    color: #a7b7c6 !important;
    font-size: 12px !important;
  }

  .scene-hltv-grid strong {
    padding: 7px 8px !important;
    background: #314252 !important;
    font-size: 12px !important;
  }

  .footer {
    margin-top: 0 !important;
    background: #101820 !important;
  }

  .footer-inner {
    padding: 8px 6px 12px !important;
  }

  .footer-meta {
    display: block !important;
    color: #8fa0ae;
    font-size: 11px;
  }
}
