/* Базовый сброс. В исходном пакете редизайна его роль играл Tailwind preflight
   (@import "tailwindcss"), которого на статическом сайте нет — поэтому здесь
   повторены только те правила preflight, на которые опирается вёрстка:
   обнулённые отступы, заголовки без собственного размера, списки без маркеров,
   картинки блоком. */
*,
*::before,
*::after {
  box-sizing: border-box;
  border: 0 solid var(--line, rgba(255, 255, 255, 0.11));
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* Сайт тёмный целиком, включая системные элементы: выпадающие списки,
     полосы прокрутки и автозаполнение. Без этого браузер рисует список
     <select> на белом фоне, а текст в нём остаётся светлым. */
  color-scheme: dark;
}

/* Пункты списка браузер рисует сам — задаём им фон явно, иначе они берут
   его от <select>, и полупрозрачный фон превращается в белый. */
option,
optgroup {
  background-color: #15151d;
  color: #f7f4fb;
}

body,
h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd, pre {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

ol, ul, menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

img, svg, video, canvas, iframe {
  display: block;
  max-width: 100%;
  height: auto;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
  margin: 0;
}

button {
  background: none;
  cursor: pointer;
}

summary {
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

b, strong {
  font-weight: 800;
}

/* Дизайн-система редизайна GGGAME (app/globals.css из пакета). */

:root {
  --ink: #f7f4fb;
  --muted: #aaa5b4;
  --surface: #0b0b11;
  --panel: #12121b;
  --line: rgba(255, 255, 255, 0.11);
  --pink: #ff2f74;
  --pink-hot: #ff0f65;
  --mint: #74f5bc;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
select {
  font: inherit;
}

.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;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  width: min(1360px, calc(100% - 36px));
  min-height: 68px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 12px 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(8, 8, 12, 0.78);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(22px);
}

.brand {
  flex: 0 0 auto;
  font-size: 24px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -1.5px;
  color: var(--pink);
}

.brand span {
  color: white;
}

.live-stats {
  display: flex;
  gap: 7px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: #d6d2dc;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.status-pill i,
.eyebrow i,
.game-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 14px rgba(116, 245, 188, 0.8);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 0 auto;
}

.desktop-nav a,
.balance-link {
  position: relative;
  color: #c6c0cc;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: color 180ms ease;
}

.desktop-nav a:first-child::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 2px;
  background: var(--pink);
}

.desktop-nav a:hover,
.balance-link:hover {
  color: white;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.balance-link {
  padding: 0 8px;
}

.language-select select {
  height: 42px;
  padding: 0 30px 0 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #15151d;
  color: white;
  font-size: 12px;
  font-weight: 800;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--pink-hot), #ff4c88);
  box-shadow: 0 12px 36px rgba(255, 15, 101, 0.25);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.055em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(255, 15, 101, 0.36);
}

.button-small {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: none;
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 900px;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
  align-items: center;
  gap: 28px;
  overflow: hidden;
  padding: 155px max(5vw, calc((100vw - 1320px) / 2)) 95px;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(8, 8, 12, 0.98) 0%, rgba(8, 8, 12, 0.84) 38%, rgba(8, 8, 12, 0.18) 72%, rgba(8, 8, 12, 0.48) 100%),
    radial-gradient(circle at 76% 42%, rgba(117, 51, 255, 0.2), transparent 38%),
    #08080c;
}

.hero::before {
  content: "GG";
  position: absolute;
  z-index: -2;
  top: 14%;
  left: -2vw;
  color: rgba(255, 255, 255, 0.025);
  font-size: clamp(280px, 35vw, 560px);
  line-height: 0.8;
  font-weight: 950;
  letter-spacing: -0.11em;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  height: 210px;
  background: linear-gradient(transparent, var(--surface));
  pointer-events: none;
}

.hero-aurora {
  position: absolute;
  z-index: -1;
  width: 760px;
  height: 760px;
  right: 8%;
  top: 9%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 30, 111, 0.32), transparent 44%),
    radial-gradient(circle at 68% 32%, rgba(92, 55, 255, 0.28), transparent 34%);
  filter: blur(50px);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 650px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: #ded8e5;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hero h1 {
  max-width: 730px;
  margin: 0;
  font-size: clamp(64px, 7.1vw, 112px);
  line-height: 0.82;
  font-weight: 950;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.86);
  text-shadow: 0 0 56px rgba(255, 47, 116, 0.22);
}

.hero-copy > p {
  max-width: 600px;
  margin: 32px 0 0;
  color: #b9b3c2;
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 36px;
}

.platform-note {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 32px;
  color: #817b89;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.platform-note span::before {
  content: "•";
  margin-right: 8px;
  color: var(--pink);
}

.hero-art {
  position: relative;
  z-index: 2;
  height: 630px;
  transform: translateX(3vw);
}

.hero-shot {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  background-position: center;
  background-size: cover;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.65);
}

.hero-shot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 36%, rgba(6, 6, 10, 0.88) 100%);
}

.hero-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 80px rgba(10, 7, 16, 0.55);
}

.hero-shot span {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 23px;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.hero-shot-main {
  z-index: 3;
  top: 35px;
  left: 14%;
  width: 66%;
  height: 500px;
  transform: rotate(-1.5deg);
  border-color: rgba(255, 65, 137, 0.42);
}

.hero-shot-left {
  z-index: 2;
  left: -3%;
  bottom: 12px;
  width: 43%;
  height: 325px;
  transform: rotate(-7deg);
  filter: saturate(0.85) brightness(0.72);
}

.hero-shot-right {
  z-index: 2;
  right: -7%;
  bottom: 4px;
  width: 43%;
  height: 350px;
  transform: rotate(7deg);
  filter: saturate(0.86) brightness(0.73);
}

.hero-counter {
  position: absolute;
  z-index: 5;
  right: 6%;
  top: 22px;
  width: 122px;
  height: 122px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(15, 13, 23, 0.8);
  box-shadow: 0 0 60px rgba(255, 47, 116, 0.28);
  backdrop-filter: blur(14px);
}

.hero-counter strong {
  font-size: 38px;
  line-height: 1;
  color: var(--pink);
}

.hero-counter span {
  color: #bab4c1;
  font-size: 10px;
  line-height: 1.3;
  font-weight: 900;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  color: #8a8490;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.scroll-cue i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-style: normal;
}

.section-shell {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 110px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 48px;
}

.eyebrow-muted {
  margin-bottom: 14px;
  color: var(--pink);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.section-heading p {
  max-width: 500px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 280px;
  gap: 14px;
}

.game-card {
  --accent: var(--pink);
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  isolation: isolate;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.game-card-featured {
  grid-column: span 2;
}

.game-card-art,
.game-card-shade {
  position: absolute;
  inset: 0;
}

.game-card-art {
  z-index: -2;
  background-position: center;
  background-size: cover;
  filter: saturate(0.85) brightness(0.82);
  transform: scale(1.015);
  transition: transform 550ms ease, filter 300ms ease;
}

.game-card-shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(4, 4, 7, 0.28), transparent 34%),
    linear-gradient(0deg, rgba(7, 7, 11, 0.96) 0%, rgba(7, 7, 11, 0.16) 72%);
}

.game-card-topline {
  position: absolute;
  top: 17px;
  left: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.game-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(5, 5, 8, 0.56);
  backdrop-filter: blur(10px);
}

.game-live i {
  width: 6px;
  height: 6px;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

.game-card-copy {
  position: absolute;
  left: 22px;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 7px;
}

.game-genre {
  color: var(--accent);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.game-card strong {
  padding-right: 45px;
  font-size: clamp(23px, 2vw, 34px);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: -0.045em;
}

.game-arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #08080b;
  font-size: 18px;
  font-weight: 900;
}

.game-card:hover {
  z-index: 2;
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent) 55%, white 10%);
  box-shadow: 0 22px 65px color-mix(in srgb, var(--accent) 20%, transparent);
}

.game-card:hover .game-card-art {
  transform: scale(1.055);
  filter: saturate(1.05) brightness(0.9);
}

@media (max-width: 1180px) {
  .status-online,
  .balance-link {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  }

  .desktop-nav {
    gap: 16px;
  }
}

@media (max-width: 900px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 60px;
    padding: 8px 9px 8px 15px;
    border-radius: 16px;
  }

  .desktop-nav,
  .live-stats,
  .language-select {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 135px 24px 105px;
  }

  .hero-copy {
    max-width: 730px;
  }

  .hero h1 {
    font-size: clamp(58px, 12vw, 90px);
  }

  .hero-art {
    width: min(720px, 100%);
    height: 520px;
    margin: 15px auto 0;
    transform: none;
  }

  .hero-shot-main {
    left: 17%;
    width: 66%;
    height: 410px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .game-card-featured {
    grid-column: span 2;
  }
}

@media (max-width: 580px) {
  .brand {
    font-size: 21px;
  }

  .button-small {
    min-height: 42px;
    padding: 0 14px;
    font-size: 11px;
  }

  .hero {
    padding: 118px 18px 92px;
  }

  .hero h1 {
    font-size: clamp(48px, 15.5vw, 74px);
    line-height: 0.86;
  }

  .hero h1 span {
    -webkit-text-stroke-width: 1px;
  }

  .hero-copy > p {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .platform-note {
    display: grid;
    gap: 9px;
  }

  .hero-art {
    height: 410px;
    margin-top: 20px;
  }

  .hero-shot-main {
    top: 20px;
    left: 9%;
    width: 82%;
    height: 310px;
  }

  .hero-shot-left,
  .hero-shot-right {
    bottom: 8px;
    width: 48%;
    height: 195px;
  }

  .hero-counter {
    right: 0;
    top: 0;
    width: 94px;
    height: 94px;
  }

  .hero-counter strong {
    font-size: 29px;
  }

  .scroll-cue {
    bottom: 24px;
  }

  .section-shell {
    width: min(100% - 28px, 1280px);
    padding: 82px 0;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }

  .game-card-featured {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Complete concept */

.hero {
  grid-template-columns: minmax(0, 640px) 1fr;
  min-height: 900px;
  background:
    linear-gradient(90deg, #08080c 0%, rgba(8, 8, 12, 0.94) 26%, rgba(8, 8, 12, 0.42) 55%, rgba(8, 8, 12, 0.06) 78%),
    linear-gradient(0deg, #0b0b11 0%, rgba(11, 11, 17, 0.03) 28%),
    url("/img/hero-keyart.png") center / cover no-repeat;
}

.hero::before {
  content: "";
}

.hero-copy {
  max-width: 640px;
}

.hero h1 {
  color: var(--pink);
  font-size: clamp(86px, 9.5vw, 154px);
  line-height: 0.76;
  letter-spacing: -0.09em;
}

.hero h1 span {
  display: inline;
  color: #fff;
  -webkit-text-stroke: 0;
  text-shadow: none;
}

.hero-world-card {
  position: absolute;
  z-index: 4;
  right: max(4vw, calc((100vw - 1320px) / 2));
  bottom: 90px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(8, 8, 12, 0.65);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px);
}

.hero-world-card > div {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 0 9px;
}

.hero-world-card strong {
  grid-row: span 2;
  color: #fff;
  font-size: 27px;
  line-height: 1;
}

.hero-world-card span {
  max-width: 66px;
  color: #aaa4b0;
  font-size: 9px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-world-card > i {
  width: 1px;
  height: 34px;
  background: var(--line);
}

.mobile-menu {
  display: none;
}

.game-card-wide {
  grid-column: span 3;
}

.game-card-wide .game-card-art {
  background-position: center 46%;
}

.game-showcases {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.game-showcase {
  --accent: var(--pink);
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  isolation: isolate;
  background: #08080c;
}

.showcase-backdrop,
.showcase-vignette {
  position: absolute;
  inset: 0;
}

.showcase-backdrop {
  z-index: -3;
  background-position: 70% center;
  background-size: cover;
  filter: blur(3px) saturate(0.78) brightness(0.6);
  opacity: 0.54;
  transform: scale(1.045);
}

.showcase-vignette {
  z-index: -2;
  background:
    linear-gradient(90deg, #08080c 4%, rgba(8, 8, 12, 0.94) 35%, rgba(8, 8, 12, 0.28) 72%, #08080c 100%),
    linear-gradient(0deg, #08080c, transparent 28%, transparent 72%, #08080c);
}

.showcase-reverse .showcase-vignette {
  background:
    linear-gradient(270deg, #08080c 4%, rgba(8, 8, 12, 0.94) 35%, rgba(8, 8, 12, 0.28) 72%, #08080c 100%),
    linear-gradient(0deg, #08080c, transparent 28%, transparent 72%, #08080c);
}

.showcase-inner {
  width: min(1280px, calc(100% - 48px));
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: clamp(55px, 8vw, 120px);
  margin: 0 auto;
  padding: 86px 0;
}

.showcase-copy {
  position: relative;
  z-index: 2;
  max-width: 570px;
}

.showcase-reverse .showcase-copy {
  grid-column: 2;
  grid-row: 1;
}

.showcase-index {
  display: block;
  margin-bottom: 58px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.showcase-copy h3 {
  margin: 11px 0 24px;
  color: #fff;
  font-size: clamp(46px, 5vw, 82px);
  line-height: 0.88;
  font-weight: 950;
  letter-spacing: -0.065em;
  text-transform: uppercase;
  text-shadow: 0 12px 48px color-mix(in srgb, var(--accent) 25%, transparent);
}

.showcase-copy p {
  margin: 0;
  color: #c1bbc8;
  font-size: 16px;
  line-height: 1.72;
}

.showcase-actions {
  display: flex;
  gap: 11px;
  margin-top: 32px;
}

.game-button {
  background: var(--accent);
  box-shadow: 0 14px 42px color-mix(in srgb, var(--accent) 28%, transparent);
  color: #08080c;
}

.game-button:hover {
  box-shadow: 0 18px 50px color-mix(in srgb, var(--accent) 42%, transparent);
}

.showcase-frame {
  position: relative;
  overflow: hidden;
  min-height: 370px;
  aspect-ratio: 16 / 9;
  border: 1px solid color-mix(in srgb, var(--accent) 35%, rgba(255, 255, 255, 0.12));
  border-radius: 28px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.55);
  transform: perspective(1400px) rotateY(-4deg) rotateX(1deg);
}

.showcase-reverse .showcase-frame {
  grid-column: 1;
  grid-row: 1;
  transform: perspective(1400px) rotateY(4deg) rotateX(1deg);
}

.showcase-frame > span {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transition: transform 550ms ease, filter 300ms ease;
}

.showcase-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 58%, rgba(5, 5, 8, 0.82)),
    linear-gradient(90deg, color-mix(in srgb, var(--accent) 12%, transparent), transparent 35%);
  box-shadow: inset 0 0 70px rgba(0, 0, 0, 0.28);
}

.showcase-frame i {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 16px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(6, 6, 9, 0.65);
  color: #fff;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.showcase-frame:hover > span {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.about-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(60px, 9vw, 140px);
  padding-top: 150px;
  padding-bottom: 150px;
}

.about-copy h2 {
  margin: 0;
  font-size: clamp(52px, 5.5vw, 82px);
  line-height: 0.91;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.about-copy > p {
  max-width: 600px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-stat {
  position: relative;
  min-height: 235px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 47, 116, 0.16), transparent 40%),
    #12121a;
}

.about-stat-wide {
  grid-column: span 2;
  min-height: 280px;
  background:
    linear-gradient(90deg, rgba(9, 9, 14, 0.25), rgba(9, 9, 14, 0.78)),
    url("/img/hero-keyart.png") 72% center / cover no-repeat;
}

.about-stat > span {
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.about-stat strong {
  font-size: 76px;
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.about-stat p {
  max-width: 230px;
  margin: 16px 0 0;
  color: #b9b4c0;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.faq-section {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(circle at 15% 20%, rgba(125, 71, 255, 0.11), transparent 31%),
    #09090e;
}

.faq-heading {
  align-items: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.faq-grid details {
  min-height: 102px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 180ms ease, background 180ms ease;
}

.faq-grid details[open] {
  border-color: rgba(255, 47, 116, 0.38);
  background: rgba(255, 47, 116, 0.055);
}

.faq-grid summary {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 850;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary i {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.075);
  color: var(--pink);
  font-size: 20px;
  font-style: normal;
  transition: transform 180ms ease;
}

.faq-grid details[open] summary i {
  transform: rotate(45deg);
}

.faq-grid details > p {
  margin: -12px 54px 26px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.site-footer {
  padding: 84px max(24px, calc((100% - 1280px) / 2)) 24px;
  background: #060609;
}

.footer-top {
  display: grid;
  grid-template-columns: 0.6fr 1fr auto;
  align-items: center;
  gap: 40px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--line);
}

.footer-brand {
  font-size: 46px;
}

.footer-top p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.footer-games {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 34px 0;
}

.footer-games a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: #cbc6d0;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.04em;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-games a span {
  color: #5c5762;
  font-size: 9px;
}

.footer-games a:hover {
  color: var(--pink);
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #625d67;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .mobile-menu {
    display: block;
  }

  .mobile-menu summary {
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 11px;
    list-style: none;
    cursor: pointer;
    background: #14141c;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary i {
    width: 17px;
    height: 2px;
    border-radius: 2px;
    background: white;
  }

  .mobile-menu nav {
    position: fixed;
    z-index: 80;
    top: 80px;
    left: 10px;
    right: 10px;
    display: grid;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(8, 8, 12, 0.96);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(22px);
  }

  .mobile-menu nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 14px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .mobile-menu nav a:last-child {
    border-bottom: 0;
    color: var(--pink);
  }

  .mobile-menu nav span {
    color: #77717d;
    font-size: 10px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 820px;
    padding: 145px 24px 140px;
    background:
      linear-gradient(90deg, #08080c 0%, rgba(8, 8, 12, 0.9) 48%, rgba(8, 8, 12, 0.28)),
      linear-gradient(0deg, #0b0b11 0%, rgba(11, 11, 17, 0.06) 35%),
      url("/img/hero-keyart.png") 58% center / cover no-repeat;
  }

  .hero h1 {
    font-size: clamp(82px, 17vw, 126px);
  }

  .hero-world-card {
    right: 24px;
    bottom: 76px;
  }

  .game-card-wide {
    grid-column: span 2;
  }

  .showcase-inner {
    grid-template-columns: 1fr;
    gap: 42px;
    min-height: auto;
    padding: 90px 0;
  }

  .showcase-reverse .showcase-copy,
  .showcase-reverse .showcase-frame {
    grid-column: auto;
    grid-row: auto;
  }

  .showcase-copy,
  .showcase-reverse .showcase-copy {
    max-width: 690px;
  }

  .showcase-index {
    margin-bottom: 34px;
  }

  .showcase-frame,
  .showcase-reverse .showcase-frame {
    order: 2;
    transform: none;
  }

  .showcase-reverse .showcase-vignette,
  .showcase-vignette {
    background:
      linear-gradient(180deg, #08080c 4%, rgba(8, 8, 12, 0.92) 44%, rgba(8, 8, 12, 0.4) 70%, #08080c 100%);
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-games {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 580px) {
  .status-online,
  .language-select {
    display: none;
  }

  .header-actions {
    gap: 7px;
  }

  .hero {
    min-height: 780px;
    padding: 126px 18px 160px;
    background:
      linear-gradient(90deg, #08080c 0%, rgba(8, 8, 12, 0.84) 70%, rgba(8, 8, 12, 0.34)),
      linear-gradient(0deg, #0b0b11 0%, rgba(11, 11, 17, 0.08) 42%),
      url("/img/hero-keyart.png") 61% center / cover no-repeat;
  }

  .hero h1 {
    font-size: clamp(70px, 22vw, 100px);
  }

  .hero-world-card {
    left: 18px;
    right: auto;
    bottom: 74px;
    gap: 14px;
  }

  .game-card-featured,
  .game-card-wide {
    grid-column: auto;
  }

  .showcase-inner {
    width: min(100% - 28px, 1280px);
    padding: 76px 0;
  }

  .showcase-copy h3 {
    font-size: clamp(40px, 13vw, 62px);
  }

  .showcase-copy p {
    font-size: 15px;
  }

  .showcase-actions {
    flex-direction: column;
  }

  .showcase-actions .button {
    width: 100%;
  }

  .showcase-frame {
    min-height: 0;
    border-radius: 19px;
  }

  .about-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-stat-wide {
    grid-column: auto;
  }

  .faq-grid details {
    padding: 0 17px;
  }

  .faq-grid summary {
    font-size: 15px;
  }

  .footer-games {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* Дополнения поверх дизайн-системы, общие для всех страниц сайта. */

/* Список языков в свёрнутом меню: на узком экране шапка прячет основной,
   поэтому переключатель уезжает внутрь меню отдельной строкой. */
.mobile-menu .menu-lang {
  width: 100%;
  height: 44px;
  margin-top: 10px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background-color: #15151d;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

/* Юридический блок подвала: документы, поддержка и служебная пометка.
   Живёт на всех страницах — и на главной, и на внутренних. */
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
  padding: 18px 0 0;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted, #9aa1ad);
}
.footer-legal a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: #fff;
  border-bottom-color: currentColor;
}
.footer-note {
  padding-top: 12px;
  font-size: 12px;
  color: var(--muted, #9aa1ad);
  opacity: .65;
}

/* Внутренние страницы в языке нового дизайна: статьи блога, страницы игр,
   пополнение баланса. Разметка у них осталась прежней (её пишет генератор
   лендингов и редактор статей), поэтому дизайн-система переложена на старые
   имена классов: те же панели, скругления, розовый акцент и типографика, что
   на главной. Единственное переименование в разметке — .hero → .page-hero,
   чтобы не сталкиваться с большим hero главной. */

.gg-inner .wrap {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

body.gg-inner {
  padding-top: 108px;
}

@media (max-width: 900px) {
  body.gg-inner {
    padding-top: 86px;
  }
}

/* ---------- первый экран внутренней страницы ---------- */
.gg-inner .page-hero {
  position: relative;
  overflow: hidden;
  padding: 62px 0 46px;
  isolation: isolate;
}

.gg-inner .page-hero .in {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
}

.gg-inner .page-hero .glow {
  position: absolute;
  z-index: -1;
  top: -280px;
  left: 50%;
  width: min(1180px, 130%);
  height: 640px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(255, 47, 116, 0.24), rgba(255, 47, 116, 0) 68%);
  pointer-events: none;
}

.gg-inner .page-hero h1,
.gg-inner .article-head h1 {
  font-size: clamp(38px, 6.4vw, 74px);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: -2.4px;
}

.gg-inner .page-hero .lead,
.gg-inner .article-head .lead {
  max-width: 720px;
  margin: 18px auto 0;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.6;
  color: var(--muted);
}

.gg-inner .page-hero .pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 8px 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ink);
}

.gg-inner .page-hero .pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px color-mix(in srgb, currentColor 20%, transparent);
}

.gg-inner .page-hero .btn {
  margin-top: 30px;
}

/* лид статьи идёт вне .page-hero — держим его в колонке текста */
.gg-inner .wrap > .lead {
  max-width: 820px;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.6;
  color: var(--muted);
}

/* ---------- кнопки ---------- */
.gg-inner .btn,
.gg-inner .cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 14px;
  background: var(--pink);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.2px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.gg-inner .btn:hover,
.gg-inner .cta:hover {
  transform: translateY(-2px);
  background: var(--pink-hot);
}

.gg-inner .btn.ghost,
.gg-inner .cta.ghost-cta {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
}

.gg-inner .btn.ghost:hover,
.gg-inner .cta.ghost-cta:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.07);
}

/* ---------- заголовки секций ---------- */
.gg-inner .sec-title {
  margin-bottom: 10px;
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 950;
  letter-spacing: -1.4px;
}

.gg-inner .sec-sub {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 15px;
}

/* ---------- сетка игр ---------- */
.gg-inner .grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(232px, 1fr));
  gap: 14px;
  margin: 26px 0 40px;
}

.gg-inner .card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.gg-inner .card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.45);
}

.gg-inner .card .thumb {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #17171d;
}

.gg-inner .card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 550ms ease;
}

.gg-inner .card:hover .thumb img {
  transform: scale(1.045);
}

.gg-inner .card .body {
  padding: 15px 17px 18px;
}

.gg-inner .card .nm {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.4px;
}

/* карточка статьи в блоге: дата, заголовок, лид */
.gg-inner .card .ds {
  margin-top: 10px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
}

.gg-inner .card .gn {
  margin-top: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--muted);
}

.gg-inner .badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  padding: 6px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(8, 8, 12, 0.72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.gg-inner .badge.live {
  border-color: transparent;
  background: var(--pink);
  color: #fff;
}

/* ---------- скриншот и блоки «игра» ---------- */
.gg-inner .shot {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #15151b;
}

.gg-inner .shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gg-inner .game {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
  padding: 54px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.gg-inner .game.rev .txt {
  order: 2;
}

.gg-inner .game .genre {
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--muted);
}

.gg-inner .game h3 {
  margin-bottom: 14px;
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 950;
  letter-spacing: -1.4px;
}

.gg-inner .game p {
  max-width: 560px;
  margin-bottom: 22px;
  color: var(--muted);
  line-height: 1.65;
}

/* ---------- текст статьи ---------- */
.gg-inner article {
  max-width: 820px;
  font-size: 16.5px;
  line-height: 1.75;
}

.gg-inner article h2 {
  margin: 40px 0 14px;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  letter-spacing: -1px;
}

.gg-inner article h3 {
  margin: 26px 0 10px;
  font-size: 19px;
  font-weight: 800;
}

.gg-inner article p,
.gg-inner article li {
  margin-bottom: 13px;
  color: var(--muted);
}

.gg-inner article b {
  color: var(--ink);
}

.gg-inner article ul,
.gg-inner article ol {
  margin-bottom: 16px;
  padding-left: 22px;
}

.gg-inner article ul li {
  list-style: disc;
}

.gg-inner article ol li {
  list-style: decimal;
}

.gg-inner article a {
  color: var(--pink);
}

/* ---------- аккордеон вопросов ---------- */
.gg-inner .faq {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
  padding: 4px 20px;
}

.gg-inner .faq details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 16px 0;
}

.gg-inner .faq details:last-child {
  border-bottom: 0;
}

.gg-inner .faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
}

.gg-inner .faq summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 700;
  color: var(--muted);
}

.gg-inner .faq details[open] summary::after {
  content: "–";
  color: var(--pink);
}

.gg-inner .faq details p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

/* ---------- теги ---------- */
.gg-inner .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 30px;
}

.gg-inner .tags span {
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 12.5px;
  color: var(--muted);
}

/* ---------- хлебные крошки статьи ---------- */
.gg-inner .crumbs {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--muted);
}

.gg-inner .crumbs a {
  color: var(--pink);
}

/* ---------- страница пополнения ---------- */
body.gg-pay .wrap {
  width: min(560px, calc(100% - 32px));
  padding: 26px 0 60px;
}

body.gg-pay .card {
  padding: 30px 28px 34px;
  border-radius: 26px;
}

body.gg-pay h1 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 950;
  letter-spacing: -1.6px;
}

body.gg-pay .sub {
  margin: 12px 0 26px;
  color: var(--muted);
  line-height: 1.6;
}

body.gg-pay .card label {
  display: block;
  margin: 18px 0 8px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--muted);
}

body.gg-pay .card input,
body.gg-pay .card select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  /* непрозрачный фон: от него браузер берёт цвет выпадающего списка */
  background-color: #15151d;
  color: var(--ink);
  font-size: 16px;
  outline: none;
}

body.gg-pay .card input:focus,
body.gg-pay .card select:focus {
  border-color: var(--pink);
}

body.gg-pay .row {
  display: flex;
  gap: 10px;
}

body.gg-pay .row .amount {
  flex: 1;
}

body.gg-pay .row .cur {
  width: 118px;
}

body.gg-pay .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

body.gg-pay .chips button {
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

body.gg-pay .chips button:hover {
  border-color: var(--pink);
  color: #fff;
}

body.gg-pay .hint,
body.gg-pay .conv {
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--muted);
}

body.gg-pay .pay {
  width: 100%;
  margin-top: 22px;
  padding: 16px 24px;
  border-radius: 16px;
  background: var(--pink);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.4px;
  transition: transform 160ms ease, background 160ms ease;
}

body.gg-pay .pay:hover {
  transform: translateY(-2px);
  background: var(--pink-hot);
}

body.gg-pay .note {
  margin-top: 20px;
  font-size: 12.5px;
  line-height: 1.65;
  color: #7d7a85;
}

/* ---------- итоговый статус оплаты ---------- */
.gg-inner .status-shell {
  display: grid;
  place-items: center;
  min-height: 72vh;
  padding: 40px 20px;
  text-align: center;
}

.gg-inner .status-card {
  width: min(520px, 100%);
  padding: 46px 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
}

.gg-inner .status-card .ico {
  font-size: 58px;
  line-height: 1;
}

.gg-inner .status-card h1 {
  margin: 18px 0 10px;
  font-size: 30px;
  font-weight: 950;
  letter-spacing: -1.4px;
}

.gg-inner .status-card p {
  color: var(--muted);
  line-height: 1.65;
}

.gg-inner .status-card .button {
  margin-top: 26px;
}

@media (max-width: 820px) {
  .gg-inner .game {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 0;
  }

  .gg-inner .game.rev .txt {
    order: 0;
  }
}

/* на странице оплаты меню нет — список языков остаётся в шапке */
body.gg-pay .language-select,
body.gg-pay .balance-link {
  display: inline-flex !important;
}
