:root {
  --bg: #0f141c;
  --bg-2: #17202c;
  --panel: #1e2a38;
  --panel-2: #273545;
  --rail: #141c28;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #eef3f8;
  --muted: #8494a8;
  --accent: #fc5076;
  --accent-2: #ff7a96;
  --accent-dark: #c41d4a;
  --gold: #f19021;
  --green: #3dd68c;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --radius: 12px;
  --radius-sm: 8px;
  --header-h: 64px;
  --rail-w: 248px;
  --max: 1240px;
  --font: "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

figure {
  margin: 0;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.cursor-pointer {
  cursor: pointer;
}

.outline-none {
  outline: none;
}

a:hover {
  color: var(--accent-2);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--accent);
  color: #fff;
  padding: 8px 12px;
  z-index: 100;
  border-radius: 6px;
}

.skip-link:focus {
  left: 8px;
}

html.nav-open,
html.nav-open body {
  overflow: hidden;
  overscroll-behavior: none;
}

.backdrop {
  display: none;
  cursor: pointer;
}

.shell {
  min-height: 100vh;
  display: block;
  padding-left: var(--rail-w);
  padding-top: 0;
}

.rail {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--rail-w);
  background-color: var(--rail);
  background-image: linear-gradient(180deg, rgba(252, 80, 118, 0.14), transparent 32%),
    url("/images/home/0019_sidebar-bg.webp");
  background-repeat: no-repeat, repeat-y;
  background-position: center top;
  background-size: 100% 100%, 100% auto;
  background-blend-mode: normal, luminosity;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 10px 8px 24px;
  z-index: 30;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.rail::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.rail-brand {
  display: flex;
  justify-content: center;
  padding: 8px 0 14px;
}

@media (min-width: 901px) {
  .rail-brand {
    display: none;
  }
}

.wordmark-rail {
  display: flex;
  align-items: center;
  line-height: 0;
}

.wordmark-rail img {
  height: 36px;
  width: 61px;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.wordmark-rail:hover {
  opacity: 0.88;
}

.rail-close,
button.rail-close {
  display: none;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  color: #fff;
  box-shadow: none;
  padding: 0;
}

.rail-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rail-link,
.rail a.rail-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

.rail-link img,
.rail-link svg,
.rail [role="button"][aria-label="csgo"] img {
  width: 22px;
  height: 22px;
  fill: currentColor;
  filter: brightness(0) invert(0.78);
}

.rail a.is-active:not(.wordmark-rail) img,
.rail a:hover:not(.wordmark-rail) img {
  filter: invert(42%) sepia(72%) saturate(2600%) hue-rotate(322deg) brightness(1.02);
}

.rail-link:hover,
.rail-link.is-active {
  color: #fff;
  background: rgba(252, 80, 118, 0.12);
}

.rail-link.is-active {
  color: var(--accent);
}

.topbar {
  position: fixed;
  top: 0;
  left: var(--rail-w);
  right: 0;
  width: auto;
  height: var(--header-h);
  padding: 0;
  background: rgba(15, 20, 28, 0.92);
  border-bottom: 1px solid var(--line);
  z-index: 40;
  backdrop-filter: blur(12px);
}

.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.menu-open,
button.menu-open {
  display: none;
  appearance: none;
  -webkit-appearance: none;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  flex-shrink: 0;
  padding: 0;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: var(--panel);
  color: #fff;
  box-shadow: none;
}

.burger-ico,
.burger-ico::before,
.burger-ico::after {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  position: relative;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

.burger-ico::before,
.burger-ico::after {
  content: "";
  position: absolute;
  left: 0;
}

.burger-ico::before {
  top: -6px;
}

.burger-ico::after {
  top: 6px;
}

html.nav-open .burger-ico {
  background: transparent;
}

html.nav-open .burger-ico::before {
  top: 0;
  transform: rotate(45deg);
}

html.nav-open .burger-ico::after {
  top: 0;
  transform: rotate(-45deg);
}

.brand-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
  min-width: 0;
}

.brand-inline img {
  width: 40px;
  min-width: 36px;
  height: 40px;
  border-radius: 50%;
}

.brand-name {
  font-size: 15px;
  white-space: nowrap;
}

.brand-name span {
  color: var(--accent);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.main {
  min-width: 0;
  padding-top: var(--header-h);
}

.page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 20px 64px;
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 340px;
  background: var(--bg) center / cover no-repeat;
  display: grid;
  align-items: end;
  box-shadow: var(--shadow);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 16, 24, 0.88) 0%, rgba(12, 16, 24, 0.55) 48%, rgba(12, 16, 24, 0.2) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 36px 32px 32px;
  max-width: 640px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.lead {
  color: #c5d0dc;
  font-size: 17px;
  margin: 0 0 22px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

[role="button"][aria-label="csgo"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 18px rgba(252, 80, 118, 0.28);
  user-select: none;
  transition:
    transform 0.15s ease,
    background-color 0.15s ease,
    box-shadow 0.15s ease;
}

[role="button"][aria-label="csgo"]:hover {
  background-color: var(--accent-2);
  transform: translateY(-1px);
}

[role="button"][aria-label="csgo"]:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.top-actions [role="button"][aria-label="csgo"] {
  min-height: 38px;
  padding: 0 14px;
  font-size: 13px;
  white-space: nowrap;
  flex-shrink: 0;
}

.top-actions [role="button"][aria-label="csgo"].shell-login-top,
.top-actions [role="button"][aria-label="csgo"].cas-login-top,
.top-actions [role="button"][aria-label="csgo"].pro-login-top,
.top-actions [role="button"][aria-label="csgo"].err-login-top {
  background: var(--accent);
  color: #fff;
  border: 0;
}

.top-actions [role="button"][aria-label="csgo"].shell-reg-top,
.top-actions [role="button"][aria-label="csgo"].cas-reg-top,
.top-actions [role="button"][aria-label="csgo"].pro-reg-top,
.top-actions [role="button"][aria-label="csgo"].err-reg-top {
  background: #fff;
  color: var(--bg);
  box-shadow: none;
}

.rail [role="button"][aria-label="csgo"] {
  flex-direction: row;
  justify-content: flex-start;
  gap: 10px;
  min-height: 0;
  padding: 10px 12px;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 10px;
  width: 100%;
}

.rail [role="button"][aria-label="csgo"]:hover {
  color: #fff;
  background: rgba(252, 80, 118, 0.12);
  transform: none;
}

.footer [role="button"][aria-label="csgo"],
[role="button"][aria-label="csgo"].card-more,
[role="button"][aria-label="csgo"].hero-play,
[role="button"][aria-label="csgo"].cas-hero-bonus,
[role="button"][aria-label="csgo"].pro-hero-read {
  background: transparent;
  color: #fff;
  border: 1px solid var(--line-strong);
  box-shadow: none;
}

.link-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
}

.err-wrap .link-chip {
  min-height: 44px;
  padding: 0 18px;
  font-size: 14px;
}

.err-wrap .cta-row {
  justify-content: center;
}

.link-chip:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.footer [role="button"][aria-label="csgo"] {
  min-height: 0;
  padding: 0;
  justify-content: flex-start;
  font-size: 13px;
  font-weight: 600;
  color: #cdd6e2;
  border: 0;
}

.footer [role="button"][aria-label="csgo"]:hover,
[role="button"][aria-label="csgo"].card-more:hover,
[role="button"][aria-label="csgo"].hero-play:hover,
[role="button"][aria-label="csgo"].cas-hero-bonus:hover,
[role="button"][aria-label="csgo"].pro-hero-read:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 18px;
}

.crumbs a {
  color: var(--muted);
}

.crumbs a:hover {
  color: #fff;
}

.section {
  margin: 36px 0 0;
}

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

h2 {
  margin: 0 0 12px;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-head h2 {
  margin: 0;
}

h3 {
  margin: 28px 0 10px;
  font-size: 20px;
}

.prose p,
.prose li {
  color: #c2ccd8;
}

.prose p {
  margin: 0 0 14px;
}

.prose ul {
  margin: 0 0 16px;
  padding-left: 20px;
}

.prose a {
  font-weight: 700;
}

.banner-grid,
.game-grid,
.promo-grid,
.pay-grid,
.stat-grid {
  display: grid;
  gap: 12px;
}

.banner-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
}

.banner-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  min-height: 168px;
  background: var(--panel) center / cover no-repeat;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow);
}

.banner-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(10, 14, 22, 0.82));
}

.banner-body {
  position: relative;
  z-index: 1;
  padding: 16px;
  width: 100%;
}

.banner-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.game-grid {
  grid-template-columns: repeat(4, 1fr);
}

.game-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: var(--panel-2);
  min-height: 168px;
  isolation: isolate;
}

.game-card img {
  width: 100%;
  height: 168px;
  object-fit: cover;
}

.game-card figcaption,
.slot-card figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 10px 12px;
  font-size: 13px;
  font-weight: 700;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.slot-card {
  overflow: hidden;
  border-radius: 10px;
  background: var(--panel-2);
}

.slot-card img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.orig-card {
  min-height: 190px;
  background: var(--bg) center / cover no-repeat;
  display: flex;
  align-items: flex-end;
}

.orig-card .fg {
  position: absolute;
  right: 0;
  bottom: 36px;
  width: 58%;
  height: auto;
  object-fit: contain;
  pointer-events: none;
}

.play-chip {
  min-height: 32px;
  padding: 0 10px;
  font-size: 12px;
  border-radius: 8px;
}

.promo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px 18px;
}

.promo-card,
.promo-card[role="button"] {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  min-height: 0;
  padding: 0;
  text-align: left;
  color: inherit;
  font-weight: inherit;
  box-shadow: none;
}

.promo-card[role="button"]:hover {
  background: transparent;
  transform: none;
  filter: brightness(1.04);
}

.promo-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(252, 80, 118, 0.42);
}

.promo-card .body {
  padding: 12px 2px 4px;
}

.promo-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

.promo-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
}

.promo-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 8px 0 18px;
}

.promo-intro h1 {
  margin: 0 0 6px;
  font-size: 28px;
  line-height: 1.2;
}

.promo-intro .kicker {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.promo-news-ico {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 14px;
  background: var(--panel);
  border: 1px solid var(--line-strong);
  position: relative;
}

.promo-news-ico::before {
  content: "";
  position: absolute;
  inset: 16px 18px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 3px;
  background:
    linear-gradient(#fff, #fff) 7px 8px / calc(100% - 14px) 6px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.45)) 7px 20px / calc(100% - 14px) 3px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.35)) 7px 28px / calc(100% - 14px) 3px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.28)) 7px 36px / 55% 3px no-repeat;
}

.promo-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
}

.promo-toolbar .pro-back,
.promo-toolbar .pro-viewall {
  min-height: 34px;
  padding: 0 12px;
  background: var(--panel);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: none;
  border: 1px solid var(--line);
}

.promo-toolbar .pro-back {
  background: var(--accent);
  border-color: var(--accent);
}

.promo-toolbar .pro-viewall::after {
  content: "▸";
  margin-left: 6px;
  font-size: 11px;
  opacity: 0.8;
}

.pay-grid {
  grid-template-columns: repeat(4, 1fr);
}

.pay-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
}

.pay-item img,
.pay-item svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.pay-item strong {
  display: block;
  font-size: 14px;
}

.pay-item span {
  color: var(--muted);
  font-size: 12px;
}

.stat-grid {
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
}

.stat b {
  display: block;
  color: var(--accent);
  font-size: 22px;
  letter-spacing: -0.03em;
}

.stat span {
  color: var(--muted);
  font-size: 13px;
}

.table-wrap {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--panel);
  border-radius: 12px;
  overflow: hidden;
}

.data-table th,
.data-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  font-size: 14px;
}

.data-table th {
  background: var(--panel-2);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.mid-cta {
  margin: 32px 0;
  padding: 28px;
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(252, 80, 118, 0.16), rgba(15, 20, 28, 0.2)), var(--panel);
  border: 1px solid rgba(252, 80, 118, 0.28);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.mid-cta h2 {
  margin: 0 0 6px;
  font-size: 24px;
}

.mid-cta p {
  margin: 0;
  color: #c5d0dc;
}

.live-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items: stretch;
}

.live-visual {
  border-radius: 16px;
  min-height: 280px;
  background: #000 center / cover no-repeat;
}

.note {
  font-size: 13px;
  color: var(--muted);
}

.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 36px 0 28px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
}

.footer-brand {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-brand img {
  width: 56px;
  min-width: 48px;
  height: 56px;
  border-radius: 50%;
}

.footer h2,
.footer h3 {
  margin: 0 0 12px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer p,
.footer li {
  color: #9aa8b8;
  font-size: 13px;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer li {
  margin: 0 0 8px;
}

.footer a {
  color: #cdd6e2;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 800;
  border-radius: 50%;
  font-size: 14px;
}

.disclaimer {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.disclaimer p {
  margin: 0 0 10px;
  color: inherit;
  font-size: inherit;
}

.err-wrap {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 48px 16px;
}

.err-wrap h1 {
  font-size: 72px;
  color: var(--accent);
  margin-bottom: 8px;
}

@media (max-width: 1100px) {
  .slot-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .game-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

@media (max-width: 900px) {
  .shell {
    display: block;
    padding-left: 0;
  }

  .menu-open,
  button.menu-open {
    display: inline-flex;
  }

  .topbar {
    left: 0;
    right: 0;
    width: 100%;
  }

  .rail {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(84vw, 280px);
    transform: translateX(-105%);
    transition: transform 0.2s ease;
    background-color: var(--rail);
    padding: 16px;
    z-index: 45;
    height: auto;
  }

  .rail-link,
  .rail [role="button"][aria-label="csgo"] {
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
    font-size: 14px;
    padding: 12px 10px;
  }

  .rail-close,
  button.rail-close {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    margin-left: auto;
    cursor: pointer;
    color: #fff;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    background: var(--panel);
    font-size: 22px;
    line-height: 1;
    z-index: 3;
  }

  .rail-brand .wordmark-rail {
    display: block;
  }

  .rail-brand {
    position: sticky;
    top: 0;
    z-index: 2;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    margin: -16px -16px 12px;
    padding: 16px;
    background: var(--rail);
    border-bottom: 1px solid var(--line);
  }

  html.nav-open .rail,
  .rail.is-open {
    transform: none;
  }

  html.nav-open .backdrop,
  .backdrop.is-open {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 42;
  }

  .topbar,
  .main,
  .footer {
    width: 100%;
  }

  .brand-name {
    display: none;
  }

  .banner-grid,
  .promo-grid,
  .live-split,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 300px;
  }

  .hero-inner {
    padding: 24px 18px;
  }

  .promo-intro h1 {
    font-size: 22px;
  }

  .promo-news-ico {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
  }

  .data-table {
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 640px) {
  .page {
    padding: 16px 12px 48px;
  }

  .topbar-inner,
  .footer-inner {
    padding-left: 12px;
    padding-right: 12px;
  }

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

  .top-actions .search-ico {
    display: none;
  }

  .mid-cta {
    padding: 20px;
  }

  h1 {
    font-size: 32px;
  }

  .pay-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid5 {
    grid-template-columns: 1fr 1fr;
  }
}

.rail {
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.wordmark {
  display: flex;
  align-items: center;
  line-height: 0;
}

.wordmark img {
  height: 48px;
  width: 81px;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.wordmark:hover {
  opacity: 0.88;
}

.wordmark small {
  display: block;
  font-size: 9px;
  letter-spacing: 0.38em;
  color: #fff;
  margin-top: 4px;
}

.tag {
  margin-left: auto;
  background: var(--accent);
  color: #fff;
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.rail-feat {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.rail-feat h2 {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin: 0 8px 8px;
  text-transform: uppercase;
}

[role="button"][aria-label="csgo"].royales-btn {
  background:
    url("/images/home/0496_royale-bg.png") center / cover no-repeat,
    #3a2a12;
  color: #f6d58a;
  border: 1px solid #d4a84a;
  box-shadow: none;
}

[role="button"][aria-label="csgo"].support-fab {
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 50%;
}

.royales-btn img {
  width: 22px;
  height: 22px;
  filter: none !important;
}

.rail-event {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 12px;
  color: var(--muted);
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.win-ticker {
  display: flex;
  gap: 10px;
  overflow: auto;
  padding: 6px 0 14px;
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  scrollbar-width: none;
}

.win-ticker::-webkit-scrollbar {
  display: none;
}

.win-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px 6px 6px;
}

.win-chip .av {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  flex: 0 0 22px;
}

.win-ticker b {
  color: var(--green);
  font-weight: 700;
}

.hero-split {
  display: grid;
  grid-template-columns: 1.7fr 0.72fr;
  gap: 12px;
  align-items: stretch;
}

.promo-slider {
  position: relative;
  min-height: 300px;
  border-radius: 16px;
  overflow: hidden;
}

.promo-viewport {
  position: relative;
  min-height: 300px;
  height: 100%;
}

.promo-slide {
  position: absolute;
  inset: 0;
  min-height: 300px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg) center / cover no-repeat;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
  color: inherit;
  font-weight: inherit;
  text-align: left;
  padding: 0;
  box-shadow: none;
}

.promo-slide.is-on {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.promo-slide img.hero-art {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(62%, 480px);
  height: 100%;
  z-index: 1;
  object-fit: contain;
  object-position: right center;
}

.promo-slide .copy {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 28px 40px;
  max-width: 58%;
  background: linear-gradient(90deg, rgba(10, 14, 22, 0.88), transparent);
}

.promo-slide h2 {
  margin: 0 0 6px;
  font-size: clamp(26px, 3.2vw, 38px);
  text-transform: uppercase;
  line-height: 1.05;
}

.slide-kicker {
  margin: 0 0 8px;
  color: var(--accent-2);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 13px;
}

.promo-slide .copy p {
  margin: 0;
  color: #c5d0dc;
  font-size: 14px;
  font-weight: 500;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 3;
}

.hero-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
}

.hero-dots button.on {
  background: var(--accent);
  width: 18px;
  border-radius: 999px;
}

.welcome-box {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
}

.welcome-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.welcome-title {
  margin: 0;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
}

.welcome-box .online {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  margin: 4px 0 0;
  white-space: nowrap;
}

.online i {
  width: 8px;
  height: 8px;
  background: #3dd68c;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(61, 214, 140, 0.7);
  animation: online-pulse 1.6s ease-out infinite;
}

@keyframes online-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(61, 214, 140, 0.65);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(61, 214, 140, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(61, 214, 140, 0);
  }
}

.welcome-box [role="button"][aria-label="csgo"].hero-join {
  width: 100%;
  justify-content: center;
  min-height: 52px;
  font-size: 16px;
  margin: 18px 0 14px;
}

.auth-row {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.auth-row [role="button"][aria-label="csgo"] {
  flex: 1;
  width: auto;
  min-height: 44px;
  height: 44px;
  padding: 0;
  background: var(--bg);
  box-shadow: none;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
}

.auth-row [role="button"][aria-label="csgo"]:hover {
  background: var(--panel);
  transform: none;
}

.auth-row img {
  width: 22px;
  height: 22px;
  border-radius: 0;
  background: transparent;
  padding: 0;
  filter: brightness(0) invert(0.92);
  margin: 0 auto;
}

.auth-row img[src$=".png"] {
  filter: none;
  padding: 0;
}

.cat-card .label {
  position: relative;
  z-index: 1;
  padding: 18px 16px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 15px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.65);
}

.orig-tile {
  position: relative;
}

.orig-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8px 8px 10px;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
}

.case-tile em {
  display: block;
  margin-top: 8px;
  background: transparent;
  color: #fff;
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 8px;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
}

@media (prefers-reduced-motion: reduce) {
  .promo-slide {
    transition: none;
  }

  .online i {
    animation: none;
  }
}

.cat-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.cat-card {
  position: relative;
  min-height: 168px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg) center / cover no-repeat;
}

.cat-card img.fg {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: auto;
  max-width: 78%;
  object-fit: contain;
  object-position: right bottom;
}

.cat-card .label {
  position: relative;
  z-index: 1;
  padding: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cat-card span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 4px;
}

.h-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.18) transparent;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.orig-tile {
  flex: 0 0 148px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--panel);
}

.orig-tile img {
  width: 148px;
  height: 190px;
  object-fit: cover;
}

.slot-tile {
  flex: 0 0 168px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--panel-2);
}

.slot-tile img {
  width: 168px;
  height: 210px;
  object-fit: cover;
}

.case-tile {
  flex: 0 0 168px;
  text-align: center;
  background: radial-gradient(circle at 50% 40%, #3a1524, var(--bg) 70%);
  border-radius: 12px;
  padding: 12px 8px 14px;
}

.case-tile img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin: 0 auto 8px;
}

.case-tile strong {
  display: block;
  font-size: 13px;
}

.case-tile em {
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
}

.bets {
  background: var(--panel);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.bets-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
}

.bets-tabs span,
.bets-tabs .is-on {
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.bets-tabs .is-on {
  background: var(--accent);
  color: #fff;
}

.bets td a,
.bets .game {
  color: var(--accent);
  font-weight: 700;
}

.mult {
  display: inline-block;
  background: rgba(252, 80, 118, 0.2);
  color: var(--accent-2);
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 800;
}

.pay-pos {
  color: var(--green);
  font-weight: 700;
}

.faq-list {
  margin-top: 8px;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 28px 16px 0;
  font-weight: 700;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "▾";
  position: absolute;
  right: 0;
  color: var(--muted);
}

.faq-list details p {
  margin: 0 0 16px;
  color: #c2ccd8;
}

.footer-grid5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.footer-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
}

.socials,
.trust {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.socials img,
.trust img {
  width: 22px;
  height: 22px;
  opacity: 0.85;
}

.support-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  padding: 0;
  z-index: 40;
  box-shadow: 0 8px 24px rgba(252, 80, 118, 0.4);
}

.support-fab img {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
}

.rail [role="button"][aria-label="csgo"].royales-btn {
  justify-content: center;
  min-height: 44px;
  margin: 12px 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #f6d58a;
  background:
    url("/images/home/0496_royale-bg.png") center / cover no-repeat,
    #3a2a12;
  border: 1px solid #d4a84a;
  box-shadow: none;
}

.rail [role="button"][aria-label="csgo"].rail-event {
  background: transparent;
  box-shadow: none;
  text-transform: none;
  letter-spacing: 0;
  min-height: 0;
  padding: 8px 12px;
}

.rail-feat img[src$=".png"] {
  filter: none;
}

.top-actions [role="button"][aria-label="csgo"].search-ico {
  background: transparent;
  box-shadow: none;
  min-width: 40px;
  min-height: 40px;
  padding: 0;
}

.top-actions [role="button"][aria-label="csgo"].search-ico:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: none;
}

.auth-row [role="button"][aria-label="csgo"] {
  flex: 1;
  width: auto;
  min-height: 44px;
  height: 44px;
  padding: 0;
  background: var(--bg);
  box-shadow: none;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
}

.orig-tile[role="button"],
.slot-tile[role="button"],
.case-tile[role="button"],
.cat-card[role="button"] {
  display: flex;
  padding: 0;
  background-color: transparent;
  box-shadow: none;
  min-height: 0;
  color: inherit;
  font-weight: inherit;
  text-align: left;
}

.promo-slide[role="button"] {
  display: block;
  min-height: 300px;
  background-color: var(--bg);
  border-radius: 16px;
}

.orig-tile[role="button"] {
  display: block;
}

.orig-tile[role="button"]:hover,
.slot-tile[role="button"]:hover,
.case-tile[role="button"]:hover {
  background: inherit;
  background-color: transparent;
  transform: none;
}

.cat-card[role="button"]:hover,
.promo-slide[role="button"]:hover {
  transform: none;
  filter: brightness(1.04);
}

.bets .game[role="button"] {
  display: inline-flex;
  align-items: center;
  padding: 0;
  min-height: 0;
  background: transparent;
  box-shadow: none;
  color: var(--accent);
  font-weight: 700;
}

.bets .game[role="button"]:hover {
  background: transparent;
  transform: none;
}

.footer-grid5 [role="button"][aria-label="csgo"]:hover,
.socials [role="button"][aria-label="csgo"]:hover {
  background: transparent;
  transform: none;
  color: #fff;
}

.socials [role="button"][aria-label="csgo"] {
  width: 28px;
  min-height: 28px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.vis-orig[role="button"],
.vis-slots[role="button"],
.scroll-head [class^="cas-vis-"][role="button"] {
  background: transparent;
  box-shadow: none;
  color: var(--muted);
  min-height: 0;
  padding: 0 8px;
  font-size: 13px;
  font-weight: 700;
}

.vis-orig[role="button"]:hover,
.vis-slots[role="button"]:hover,
.scroll-head [class^="cas-vis-"][role="button"]:hover {
  background: transparent;
  transform: none;
  color: #fff;
}

.case-tile em {
  display: block;
  margin-top: 8px;
  background: transparent;
  color: #fff;
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 8px;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
}

.support-fab[role="button"] {
  display: grid;
  place-items: center;
}

.rail-link .chev,
.rail [role="button"][aria-label="csgo"] .chev {
  margin-left: auto;
  opacity: 0.45;
  font-size: 10px;
}

.count-pill {
  margin-left: auto;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rail-event {
  color: #e8c56a;
  font-weight: 700;
}

.rail-event span {
  color: var(--muted);
  font-weight: 600;
}

.search-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
}

.search-ico::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 8px 8px 0 -6px #fff;
}

.topbar .wordmark {
  display: flex;
  align-items: center;
  margin-right: auto;
}

.topbar .wordmark img {
  height: 48px;
  width: 81px;
  max-width: none;
}

.slot-tile figcaption {
  padding: 8px 8px 10px;
}

.scroll-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 12px;
  position: relative;
  z-index: 4;
}

.scroll-head h2 {
  margin: 0;
  font-size: 18px;
}

.scroll-head h2::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 8px;
  vertical-align: middle;
}

.scroll-tools {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-arrow,
button.nav-arrow {
  appearance: none;
  -webkit-appearance: none;
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  padding: 0;
  border-radius: 8px;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--panel);
  cursor: pointer;
  user-select: none;
  font-size: 18px;
  line-height: 1;
  flex: 0 0 36px;
  pointer-events: auto;
  z-index: 3;
  touch-action: manipulation;
}

button.nav-arrow:hover {
  background: var(--panel-2);
  color: #fff;
}

.orig-tile {
  position: relative;
}

.orig-tile .play-over {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.orig-tile .play-over img {
  width: 42px;
  height: 42px;
}

.slot-tile figcaption {
  padding: 8px 8px 10px;
}

.slot-tile strong,
.orig-cap strong {
  display: block;
  font-size: 13px;
}

.slot-tile em {
  color: var(--muted);
  font-style: normal;
  font-size: 11px;
}

.case-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.case-tabs [role="button"][aria-label="csgo"] {
  cursor: pointer;
}

.case-tabs span,
.case-tabs .is-on,
.case-tabs [role="button"][aria-label="csgo"] {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  background: var(--panel);
  min-height: 0;
  box-shadow: none;
  border: 0;
}

.case-tabs [role="button"][aria-label="csgo"]:hover {
  background: var(--panel-2);
  color: #fff;
  transform: none;
}

.case-tabs .is-on,
.case-tabs [role="button"][aria-label="csgo"].is-on {
  background: var(--accent);
  color: #fff;
}

.case-tabs [role="button"][aria-label="csgo"].is-on:hover {
  background: var(--accent);
}

.case-tile [role="button"][aria-label="csgo"] {
  margin-top: 10px;
  width: 100%;
  min-height: 36px;
  font-size: 12px;
}

.user-cell {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lvl {
  font-size: 10px;
  background: var(--panel-2);
  padding: 2px 6px;
  border-radius: 6px;
  color: var(--muted);
}

.footer-copy-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.footer-copy-row .wordmark img {
  height: 52px;
  width: 88px;
  max-width: none;
}

.footer-copy-row p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-grid5 h3 {
  font-size: 14px;
  margin: 0 0 10px;
}

.footer-grid5 ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid5 li {
  margin: 0 0 8px;
}

.footer-grid5 a,
.footer-grid5 [role="button"][aria-label="csgo"] {
  color: var(--muted);
  font-size: 13px;
  background: none;
  border: 0;
  box-shadow: none;
  padding: 0;
  min-height: 0;
  display: inline;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}

.lang-sel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 8px 12px;
  color: #fff;
  font-weight: 700;
}

.bets table {
  width: 100%;
  border-collapse: collapse;
}

.bets th,
.bets td {
  text-align: left;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.bets th {
  color: var(--muted);
  font-weight: 600;
  border-top: 0;
}

.win-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 1100px) {
  .hero-split,
  .cat-trio {
    grid-template-columns: 1fr;
  }

  .footer-grid5 {
    grid-template-columns: 1fr 1fr;
  }

  .promo-slide .copy {
    max-width: 100%;
  }

  .footer-copy-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Lobby polish: slider, cat-trio, categories, bets, footer */
.promo-slide,
.promo-slide[role="button"] {
  background-color: var(--bg);
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
}

.slide-fast {
  background-image: url("/images/home/0510_casino-bg.jpg");
}

.slide-crypto {
  background-image: url("/images/home/0536_magic-1.png");
}

.slide-royale {
  background-image: url("/images/home/0496_royale-bg.png");
}

.promo-slide[role="button"]:hover {
  background-color: var(--bg);
}

.cat-card[role="button"]:hover {
  background-color: transparent;
}

.slide-kicker.gold {
  color: #e8c56a;
}

.slide-royale .copy h2 {
  color: #f3d27a;
}

.royale-podium {
  position: absolute;
  right: 6%;
  bottom: 42px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 18px;
}

.royale-podium .rp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.royale-podium .av {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid #e8c56a;
  background: linear-gradient(135deg, #3a2a12, #8a6a32);
}

.rp-c .av {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #5a3a10, #d4a84a);
}

.rp-c img {
  width: 22px;
  height: 22px;
  margin-top: -14px;
  position: relative;
  z-index: 1;
}

.royale-podium b {
  color: #f3d27a;
  font-size: 12px;
  font-weight: 800;
}

.welcome-box [role="button"][aria-label="csgo"].hero-google {
  background: #fff;
}

.welcome-box [role="button"][aria-label="csgo"].hero-steam {
  background: var(--bg);
}

.welcome-box [role="button"][aria-label="csgo"].hero-meta {
  background: #fff;
}

.welcome-box [role="button"][aria-label="csgo"].hero-discord {
  background: #5865f2;
}

.auth-row .hero-google img,
.auth-row .hero-meta img {
  filter: none;
}

.auth-row .hero-steam img {
  filter: none;
}

.auth-row .hero-discord img {
  filter: brightness(0) invert(1);
}

.win-chip small {
  color: var(--muted);
  font-size: 11px;
}

.cat-trio {
  gap: 14px;
  margin-top: 18px;
}

.cat-card,
.cat-card[role="button"] {
  min-height: 228px;
  height: 228px;
  border-radius: 16px;
  overflow: hidden;
  background-color: transparent;
  background-image: url("/images/home/0508_bg.webp");
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
  box-shadow: none;
}

.cat-cases,
.cat-slots,
.cat-sports {
  background-image: url("/images/home/0508_bg.webp");
}

.cat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 14, 22, 0.55));
  pointer-events: none;
}

.cat-card img.bg-mid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

.cat-card img.fg {
  z-index: 1;
  height: 108%;
  max-width: 72%;
}

.cat-card .label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 18px 20px 16px;
  font-size: clamp(18px, 1.8vw, 24px);
  letter-spacing: 0.04em;
  line-height: 1.15;
  color: #fff;
}

.cat-card .label span {
  display: block;
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.82);
}

.sec-pill {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 7px 16px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--bg-2);
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 0 14px rgba(252, 80, 118, 0.28);
}

.scroll-head h2.sec-pill::before {
  display: none;
}

.vis-orig[role="button"],
.vis-slots[role="button"] {
  color: var(--muted);
}

.orig-tile,
.orig-tile[role="button"] {
  flex: 0 0 168px;
  display: flex;
  flex-direction: column;
  overflow: visible;
  background: transparent;
  border-radius: 0;
}

.orig-tile img {
  width: 168px;
  height: 210px;
  object-fit: cover;
  border-radius: 12px;
}

.orig-tile figcaption,
.slot-tile figcaption {
  padding: 8px 4px 2px;
}

.orig-tile strong,
.slot-tile strong {
  display: block;
  font-size: 13px;
  color: #fff;
}

.orig-tile em,
.slot-tile em {
  display: block;
  color: var(--muted);
  font-style: normal;
  font-size: 11px;
}

.orig-tile .play-over {
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
  width: 168px;
  height: 210px;
  border-radius: 12px;
}

.case-tabs span,
.case-tabs .is-on,
.case-tabs [role="button"][aria-label="csgo"] {
  background: var(--panel);
  color: #c5d0dc;
  border: 1px solid var(--line-strong);
}

.case-tabs .is-on,
.case-tabs [role="button"][aria-label="csgo"].is-on {
  background: var(--panel);
  color: #fff;
  border-color: var(--accent);
}

.case-tabs .tag {
  margin-left: 6px;
}

.case-tile {
  flex: 0 0 176px;
  background: radial-gradient(circle at 50% 38%, #32141e, var(--bg) 72%);
  padding: 16px 10px 14px;
}

.case-tile em {
  margin-top: 10px;
  color: #fff;
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 8px 10px;
  font-weight: 700;
}

.bets {
  border-radius: 16px;
  background: var(--bg-2);
}

.bets-tabs .is-on {
  border-radius: 0;
}

.bets th {
  font-size: 12px;
  text-transform: none;
}

.bets td {
  vertical-align: middle;
}

.bets .ext {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-left: 6px;
  border: 1.5px solid currentColor;
  border-radius: 1px;
  vertical-align: middle;
  position: relative;
  opacity: 0.85;
}

.bets .ext::after {
  content: "";
  position: absolute;
  top: -4px;
  right: -4px;
  width: 5px;
  height: 5px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}

.user-cell .av {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex: 0 0 24px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.user-cell .av.a2 {
  background: linear-gradient(135deg, #6b5cff, #2a2060);
}

.user-cell .av.anon {
  background: var(--panel-2);
  position: relative;
}

.user-cell .av.anon::before,
.user-cell .av.anon::after {
  content: "";
  position: absolute;
  inset: 7px 5px;
  border: 1.5px solid #7d8b9c;
  border-radius: 50%;
}

.user-cell .av.anon::after {
  inset: 11px 4px auto;
  height: 0;
  border: 0;
  border-top: 1.5px solid #7d8b9c;
  transform: rotate(-28deg);
}

.lvl {
  background: var(--panel-2);
  color: #b8c2d0;
  border-radius: 999px;
  padding: 1px 7px;
  font-weight: 700;
}

.lvl.gold {
  background: #3a2e14;
  color: #e8c56a;
}

.bets .coin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #b8c2d0;
}

.bets .coin img {
  width: 16px;
  height: 16px;
  object-fit: cover;
  border-radius: 50%;
}

.bets .coin.pink,
.bets .pay-pos .coin {
  color: var(--accent);
}

.mult {
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 12px;
}

.mult.hi {
  background: rgba(70, 210, 230, 0.2);
  color: #5ce4f2;
}

.mult.dim {
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.pay-pos {
  color: var(--accent);
}

.footer {
  background: var(--bg);
}

.footer-copy-row {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}

.footer-grid5 {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.footer-grid5 h3,
.footer .footer-grid5 h3 {
  color: #fff;
  text-transform: none;
  letter-spacing: 0;
  font-size: 15px;
  font-weight: 800;
}

.socials [role="button"][aria-label="csgo"] {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  padding: 0;
  display: grid;
  place-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: none;
}

.socials [role="button"][aria-label="csgo"]:hover {
  background: var(--panel-2);
  transform: none;
}

.socials img {
  width: 16px;
  height: 16px;
  opacity: 0.92;
  filter: grayscale(1) brightness(1.4);
}

.trust {
  gap: 14px;
}

.trust img {
  width: auto;
  height: 28px;
  opacity: 1;
}

.footer-utils {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-utils .search-ico {
  background: var(--panel);
  border: 1px solid var(--line);
}

.lang-sel {
  border-radius: 999px;
  background: var(--panel);
  padding: 8px 14px;
}

.lang-sel::after {
  content: "▴";
  color: var(--muted);
  font-size: 10px;
}

@media (max-width: 1100px) {
  .cat-card,
  .cat-card[role="button"] {
    height: 200px;
    min-height: 200px;
  }

  .royale-podium {
    right: 16px;
    transform: scale(0.86);
    transform-origin: right bottom;
  }
}

@media (max-width: 720px) {
  .royale-podium {
    display: none;
  }
}

.h-scroll.orig-row,
.h-scroll.slot-row {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  overflow: visible;
  padding-bottom: 0;
}

.h-scroll.case-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  overflow: visible;
  padding-bottom: 0;
}

.orig-tile,
.orig-tile[role="button"],
.slot-tile,
.slot-tile[role="button"] {
  flex: none;
  width: 100%;
  min-width: 0;
}

.orig-tile img,
.slot-tile img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.orig-tile .play-over {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  right: 0;
}

.case-tile,
.case-tile[role="button"] {
  flex: none;
  width: 100%;
}

.case-tile img {
  width: 100%;
  height: auto;
  max-height: 132px;
}

.bets-tabs [role="button"][aria-label="csgo"] {
  background: transparent;
  box-shadow: none;
  color: var(--muted);
  min-height: 0;
  height: auto;
  padding: 12px 16px;
  border-radius: 0;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
}

.bets-tabs [role="button"][aria-label="csgo"]:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: none;
  color: #fff;
}

.bets-tabs [role="button"][aria-label="csgo"].is-on,
.bets-tabs .is-on {
  background: var(--accent);
  color: #fff;
}

.bets-tabs [role="button"][aria-label="csgo"].is-on:hover {
  background: var(--accent);
}

@media (max-width: 1100px) {
  .h-scroll.orig-row,
  .h-scroll.slot-row,
  .h-scroll.case-row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 12px;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .orig-tile,
  .orig-tile[role="button"],
  .slot-tile,
  .slot-tile[role="button"] {
    flex: 0 0 148px;
    width: 148px;
    max-width: 148px;
  }

  .orig-tile img,
  .slot-tile img {
    width: 148px;
    height: 148px;
    aspect-ratio: 1 / 1;
  }

  .case-tile,
  .case-tile[role="button"] {
    flex: 0 0 156px;
    width: 156px;
    max-width: 156px;
  }

  .scroll-head {
    flex-wrap: wrap;
  }

  .scroll-tools.case-tabs {
    width: 100%;
    flex-basis: 100%;
    margin-left: 0;
  }

  .nav-arrow,
  button.nav-arrow {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    flex-basis: 44px;
  }
}

.topbar-inner,
.page,
.footer-inner {
  max-width: var(--max);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.page {
  padding-top: 24px;
  padding-bottom: 64px;
}

.orig-tile,
.orig-tile[role="button"],
.slot-tile,
.slot-tile[role="button"],
.case-tile,
.case-tile[role="button"] {
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  margin: 0;
}

.orig-tile img,
.slot-tile img {
  display: block;
  border-radius: 12px;
}

.orig-tile figcaption,
.slot-tile figcaption {
  position: relative;
  z-index: 1;
  padding: 8px 2px 0;
  text-align: left;
}

.orig-cap {
  display: none;
}

.footer .socials {
  align-items: center;
}

.footer .socials [role="button"][aria-label="csgo"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.footer .socials img {
  display: block;
  margin: 0;
  width: 16px;
  height: 16px;
}

.h-scroll.orig-row,
.h-scroll.slot-row,
.h-scroll.cas-row {
  width: 100%;
}

.scroll-head .vis-orig,
.scroll-head .vis-slots,
.scroll-head [class^="cas-vis-"] {
  margin-left: 2px;
}

@media (max-width: 900px) {
  .promo-slider,
  .promo-viewport,
  .promo-slide,
  .promo-slide[role="button"] {
    min-height: 210px;
  }

  .promo-slide img.hero-art {
    width: 80%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    object-fit: contain;
    object-position: right center;
  }

  .promo-slide .copy {
    max-width: 66%;
    padding: 16px 16px 34px;
    justify-content: center;
  }

  .welcome-box {
    min-height: 0;
    padding: 14px 14px 12px;
    justify-content: flex-start;
    gap: 8px;
  }

  .welcome-box [role="button"][aria-label="csgo"].hero-join {
    margin: 0;
  }

  .auth-row {
    margin-top: 0;
  }

  .hero-split {
    gap: 10px;
  }

  .win-ticker {
    padding: 4px 0 10px;
  }

  :root {
    --header-h: 56px;
  }
}

.rail-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rail-subs {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin: 2px 0 8px;
  padding-left: 8px;
}

.rail-sub,
.rail-subs [role="button"][aria-label="csgo"] {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  min-height: 0;
  background: transparent;
  box-shadow: none;
  border: 0;
}

.rail-sub.is-on,
.rail-subs [role="button"][aria-label="csgo"].is-on {
  color: var(--accent);
  background: rgba(252, 80, 118, 0.16);
  box-shadow: inset 2px 0 0 var(--accent);
}

.rail-subs [role="button"][aria-label="csgo"].is-on:hover {
  color: var(--accent);
  background: rgba(252, 80, 118, 0.22);
  transform: none;
}

.rail-subs [role="button"][aria-label="csgo"]:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  transform: none;
}

.rail-sub-split {
  height: 1px;
  background: var(--line);
  margin: 6px 10px;
}

.cas-promos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.cas-hero {
  position: relative;
}

.cas-hero-slide {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.cas-hero-slide.is-on {
  display: grid;
}

.cas-promo-card,
.cas-promo-card[role="button"] {
  position: relative;
  min-height: 216px;
  border-radius: 14px;
  overflow: hidden;
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
  background-color: var(--bg);
  color: #fff;
  box-shadow: none;
  isolation: isolate;
}

.cas-promo-card[role="button"]:hover {
  background-color: var(--bg);
  transform: none;
  filter: brightness(1.06);
}

.cas-hero-bg,
.cas-hero-fg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  pointer-events: none;
  border-radius: 0;
}

.cas-hero-bg {
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.cas-hero-fg {
  object-fit: contain;
  object-position: 86% 54%;
  mix-blend-mode: lighten;
  transform: scale(1.08);
  z-index: 1;
}

.cas-promo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(12, 16, 24, 0.78) 0%, rgba(12, 16, 24, 0.28) 48%, rgba(12, 16, 24, 0.05) 100%);
}

.cas-promo-card > .cas-hero-bg,
.cas-promo-card > .cas-hero-fg {
  z-index: 0;
}

.cas-promo-card > .cas-promo-tag,
.cas-promo-card > .cas-hero-copy {
  position: relative;
  z-index: 2;
}

.cas-promo-tag {
  align-self: flex-start;
  margin-bottom: auto;
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.cas-hero-copy {
  max-width: 58%;
}

.cas-promo-card strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.cas-promo-card p {
  margin: 6px 0 0;
  color: #c5d0dc;
  font-size: 13px;
  font-weight: 500;
}

.cas-hero-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin: 12px 0 18px;
  position: relative;
  z-index: 6;
}

.cas-hero-dots button {
  width: 40px;
  height: 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  pointer-events: auto;
}

.cas-hero-dots button::before {
  content: "";
  display: block;
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.cas-hero-dots button.on::before {
  width: 46px;
  background: var(--accent);
}

.cas-search,
.cas-search[role="button"] {
  display: flex;
  width: 100%;
  min-height: 48px;
  justify-content: flex-start;
  gap: 10px;
  padding: 0 16px;
  border-radius: 12px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  color: var(--muted);
  font-weight: 600;
  box-shadow: none;
}

.cas-search::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: 9px 9px 0 -6px currentColor;
  flex: 0 0 16px;
}

.cas-search:hover {
  background: var(--bg-2);
  transform: none;
}

.cas-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 12px 0 8px;
}

.cas-filters [role="button"][aria-label="csgo"] {
  min-height: 36px;
  padding: 0 12px;
  background: var(--panel);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: none;
  border: 1px solid var(--line);
}

.cas-filters [role="button"][aria-label="csgo"]:hover {
  background: var(--panel-2);
  transform: none;
}

.cas-filters .cas-f-type,
.cas-filters .cas-f-prov {
  margin-left: 0;
  color: var(--muted);
}

.cas-filters .cas-f-type {
  margin-left: auto;
}

.cas-filters .cas-f-type::after,
.cas-filters .cas-f-prov::after {
  content: "▾";
  margin-left: 8px;
  font-size: 10px;
  opacity: 0.7;
}

.h-scroll.cas-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  overflow: visible;
  padding-bottom: 0;
}

.h-scroll.cas-row .slot-tile img {
  aspect-ratio: 4 / 3;
  height: auto;
}

.h-scroll.cas-row .slot-tile figcaption {
  padding: 8px 2px 0;
}

.h-scroll.cas-row .slot-tile strong,
.h-scroll.cas-row .slot-tile em {
  white-space: normal;
}

.h-scroll.cas-row .slot-tile strong {
  font-size: 13px;
  line-height: 1.3;
  font-weight: 700;
}

.h-scroll.cas-row .slot-tile em {
  font-size: 12px;
}

.cas-provs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 28px 0 8px;
  padding: 18px 8px;
  border-radius: 14px;
  background: var(--bg-2);
  border: 1px solid var(--line);
}

.cas-provs .nav-arrow,
.cas-provs button.nav-arrow {
  color: var(--accent);
  border-color: rgba(252, 80, 118, 0.45);
  background: var(--bg);
}

.cas-prov-track {
  display: flex;
  gap: 12px;
  align-items: stretch;
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.cas-prov-track::-webkit-scrollbar {
  display: none;
}

.cas-prov-track [role="button"][aria-label="csgo"] {
  flex: 0 0 calc(25% - 9px);
  min-width: 220px;
  min-height: 0;
  height: 118px;
  padding: 16px 20px;
  background: var(--bg-2);
  box-shadow: none;
  border: 0;
  border-radius: 12px;
}

.cas-prov-track [role="button"][aria-label="csgo"]:hover {
  background: var(--panel);
  transform: none;
}

.cas-prov-track img {
  width: auto;
  max-width: 92%;
  height: 88px;
  margin: 0 auto;
  object-fit: contain;
}

.live-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  padding: 3px 7px;
  border-radius: 6px;
  background: rgba(10, 14, 22, 0.78);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.slot-tile {
  position: relative;
}

@media (max-width: 1100px) {
  .cas-hero-slide.is-on {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    scroll-snap-type: x mandatory;
  }

  .cas-hero-slide .cas-promo-card,
  .cas-hero-slide .cas-promo-card[role="button"] {
    flex: 0 0 min(86%, 360px);
    min-height: 188px;
    scroll-snap-align: start;
  }

  .cas-filters .cas-f-type {
    margin-left: 0;
  }

  .h-scroll.cas-row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 12px;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .h-scroll.cas-row .slot-tile,
  .h-scroll.cas-row .slot-tile[role="button"] {
    flex: 0 0 136px;
    width: 136px;
    max-width: 136px;
    scroll-snap-align: start;
  }

  .h-scroll.cas-row .slot-tile img {
    width: 136px;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .cas-prov-track [role="button"][aria-label="csgo"] {
    flex: 0 0 240px;
    min-width: 240px;
    height: 110px;
  }

  .cas-prov-track img {
    height: 80px;
  }

  .h-scroll.orig-row .orig-tile,
  .h-scroll.slot-row .slot-tile,
  .h-scroll.case-row .case-tile {
    scroll-snap-align: start;
  }
}

@media (max-width: 640px) {
  .topbar-inner,
  .page,
  .footer-inner {
    padding-left: 12px;
    padding-right: 12px;
  }

  .page {
    padding-top: 8px;
    padding-bottom: 48px;
  }

  .top-actions [role="button"][aria-label="csgo"] {
    padding: 0 10px;
  }

  .top-actions .search-ico {
    display: none;
  }
}
