/* =========================================================================
   Game357 Studio — портал игр
   Тёмная витрина: шапка, герой-карусель, ряды карточек, ЛК, документы.
   ========================================================================= */

:root {
  --bg:        #08080C;
  --bg-2:      #0B0B11;
  --surface:   #13131B;
  --surface-2: #191922;
  --surface-3: #22222E;
  --line:      rgba(255, 255, 255, .07);
  --line-2:    rgba(255, 255, 255, .13);

  --text:      #F3F4F8;
  --muted:     #8E94A6;
  --muted-2:   #666C7D;

  --brand:     #7C4DFF;
  --brand-2:   #FF3D8B;
  --brand-grad: linear-gradient(115deg, #7C4DFF 0%, #B84DFF 45%, #FF3D8B 100%);
  --spark:     #FFB020;
  --spark-2:   #FF7A1A;
  --ok:        #35D07F;

  --r-sm: 10px;
  --r:    16px;
  --r-lg: 22px;
  --r-xl: 30px;

  --shadow:    0 20px 50px -20px rgba(0, 0, 0, .9);
  --shadow-lg: 0 40px 90px -30px rgba(0, 0, 0, .95);

  --header-h: 68px;
  --wrap: 1360px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }

::selection { background: rgba(124, 77, 255, .45); }

/* Фоновое свечение всей страницы */
.aurora {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.aurora span {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .5;
  animation: drift 26s var(--ease) infinite alternate;
}
.aurora span:nth-child(1) { width: 620px; height: 620px; top: -220px; left: -120px;  background: rgba(124, 77, 255, .38); }
.aurora span:nth-child(2) { width: 520px; height: 520px; top: 12%;   right: -160px;  background: rgba(255, 61, 139, .26); animation-delay: -8s; }
.aurora span:nth-child(3) { width: 700px; height: 700px; top: 62%;   left: 34%;      background: rgba(34, 211, 238, .12); animation-delay: -15s; }

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(60px, -50px, 0) scale(1.15); }
}

.page { position: relative; z-index: 1; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ============================== ШАПКА ================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 90;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s;
}
.header.is-stuck {
  background: rgba(8, 8, 12, .82);
  backdrop-filter: blur(18px) saturate(150%);
  border-bottom-color: var(--line);
}
.header__in {
  display: flex;
  align-items: center;
  gap: 22px;
  width: 100%;
}

.logo { display: flex; align-items: center; gap: 11px; flex: none; }
.logo__mark {
  width: 34px; height: 34px;
  border-radius: 11px;
  background: var(--brand-grad);
  display: grid; place-items: center;
  font-weight: 800; font-size: 13px; letter-spacing: -.02em;
  box-shadow: 0 6px 20px -6px rgba(124, 77, 255, .9);
  position: relative;
  overflow: hidden;
}
.logo__mark::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,.55) 50%, transparent 65%);
  transform: translateX(-120%);
  animation: sheen 5s var(--ease) infinite;
}
@keyframes sheen { 0%, 70% { transform: translateX(-120%); } 100% { transform: translateX(120%); } }
.logo__text { font-weight: 750; letter-spacing: -.02em; font-size: 16px; }
.logo__text span { color: var(--muted); font-weight: 500; }

.nav { display: flex; gap: 4px; flex: 1; }
.nav a {
  padding: 8px 13px;
  border-radius: var(--r-sm);
  color: var(--muted);
  font-weight: 550;
  font-size: 14px;
  transition: color .2s, background .2s;
}
.nav a:hover { color: var(--text); background: rgba(255,255,255,.05); }
.nav a.is-active { color: var(--text); background: rgba(255,255,255,.07); }

.header__tools { display: flex; align-items: center; gap: 10px; flex: none; }

.search {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  width: 210px;
  transition: width .3s var(--ease), border-color .2s, background .2s;
}
.search:focus-within { width: 280px; border-color: var(--line-2); background: rgba(255,255,255,.08); }
.search input {
  background: none; border: 0; outline: 0; color: var(--text);
  width: 100%; font-size: 14px;
}
.search input::placeholder { color: var(--muted-2); }
.search svg { flex: none; color: var(--muted); }

.chip-sparks {
  display: flex; align-items: center; gap: 7px;
  padding: 7px 13px 7px 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,176,32,.18), rgba(255,122,26,.1));
  border: 1px solid rgba(255,176,32,.28);
  font-weight: 700; font-size: 14px;
  color: #FFD98A;
  white-space: nowrap;
  transition: transform .2s var(--ease), box-shadow .2s;
}
.chip-sparks:hover { transform: translateY(-1px); box-shadow: 0 8px 22px -10px rgba(255,176,32,.7); }

.avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--brand-grad);
  display: grid; place-items: center;
  font-weight: 750; font-size: 14px;
  border: 2px solid rgba(255,255,255,.14);
}

.burger {
  display: none !important;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 11px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line-2);
  color: var(--text);
}

/* ============================== КНОПКИ ================================= */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 650; font-size: 14.5px;
  white-space: nowrap;
  transition: transform .18s var(--ease), box-shadow .25s, background .2s, border-color .2s, opacity .2s;
}
.btn:active { transform: translateY(1px) scale(.99); }

.btn--primary {
  background: var(--brand-grad);
  color: #fff;
  box-shadow: 0 12px 30px -12px rgba(124, 77, 255, .95);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(255, 61, 139, .8); }

.btn--spark {
  background: linear-gradient(120deg, var(--spark), var(--spark-2));
  color: #251500;
  box-shadow: 0 12px 30px -12px rgba(255, 176, 32, .9);
}
.btn--spark:hover { transform: translateY(-2px); }

.btn--ghost {
  background: rgba(255,255,255,.06);
  border-color: var(--line-2);
  color: var(--text);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }

.btn--sm { padding: 9px 16px; font-size: 13.5px; border-radius: 10px; }
.btn--lg { padding: 15px 30px; font-size: 16px; border-radius: 14px; }
.btn--block { width: 100%; }
.btn[disabled], .btn.is-disabled { opacity: .5; pointer-events: none; }

/* ========================= КНОПКИ УСТАНОВКИ ============================ */

/* Три равные кнопки по сетке: RuStore, Google Play, браузер */
.get-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.get-row--stack { grid-template-columns: minmax(0, 1fr); }

.get {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 66px;
  padding: 12px 18px;
  border-radius: 15px;
  /* приглушённое золото: тёмная подложка, тёплая окантовка */
  background:
    linear-gradient(125deg, rgba(255, 200, 92, .13) 0%, rgba(240, 130, 30, .06) 60%, rgba(255, 255, 255, .02) 100%),
    rgba(20, 20, 28, .82);
  color: var(--text);
  border: 1px solid rgba(255, 176, 32, .34);
  box-shadow: inset 0 1px 0 rgba(255, 226, 160, .1);
  backdrop-filter: blur(10px);
  transition: transform .2s var(--ease), box-shadow .25s, border-color .2s, background .25s;
  text-align: left;
}
.get:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 190, 70, .62);
  background:
    linear-gradient(125deg, rgba(255, 200, 92, .2) 0%, rgba(240, 130, 30, .1) 60%, rgba(255, 255, 255, .03) 100%),
    rgba(26, 26, 36, .9);
  box-shadow: 0 18px 40px -20px rgba(245, 166, 35, .75), inset 0 1px 0 rgba(255, 226, 160, .16);
}
.get:active { transform: translateY(0); }

.get__tile {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 11px;
  background: #fff;
  display: grid; place-items: center;
  overflow: hidden;
  box-shadow: 0 3px 10px -4px rgba(0, 0, 0, .8);
}
.get__tile img { width: 30px; height: 30px; object-fit: contain; }
.get__tile svg { width: 26px; height: 26px; color: #14141C; }

.get__txt { min-width: 0; }
.get__txt small {
  display: block;
  font-size: 11px; font-weight: 650;
  letter-spacing: .02em; line-height: 1.15;
  color: var(--muted);
}
.get__txt b {
  display: block;
  font-size: 16px; font-weight: 750;
  letter-spacing: -.02em; line-height: 1.25;
  color: #FFD98A;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

@media (max-width: 900px) {
  .get-row { grid-template-columns: minmax(0, 1fr); }
}

/* Панель «скачать приложение» — главный акцент на странице игры */
.app-panel {
  position: relative;
  border-radius: var(--r-xl);
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid color-mix(in srgb, var(--glow, #7C4DFF) 42%, transparent);
  background:
    radial-gradient(700px 300px at 8% 0%, color-mix(in srgb, var(--glow, #7C4DFF) 28%, transparent), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)),
    var(--surface);
  box-shadow: 0 26px 60px -30px color-mix(in srgb, var(--glow, #7C4DFF) 85%, transparent);
  overflow: hidden;
}
.app-panel::after {
  content: "";
  position: absolute; inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(130deg, color-mix(in srgb, var(--glow, #7C4DFF) 85%, transparent), transparent 55%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.app-panel__logo {
  width: 116px; height: auto; flex: none;
  border-radius: 26%;
  filter: drop-shadow(0 18px 34px color-mix(in srgb, var(--glow, #7C4DFF) 60%, transparent));
}

.app-panel__kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase;
  color: color-mix(in srgb, var(--glow, #7C4DFF) 65%, #ffffff);
  margin-bottom: 10px;
}

/* Список бонусов внутри панели приложения */
.perks { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 10px; }
.perks li { display: flex; gap: 10px; align-items: flex-start; color: #C6CAD6; font-size: 14.5px; }
.perks li svg { color: var(--ok); flex: none; margin-top: 2px; }

/* Метка «есть приложение» на карточке */
.badge-app {
  position: absolute; left: 12px; top: 44px; z-index: 3;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: #0B0B11;
  font-size: 10.5px; font-weight: 800; letter-spacing: .05em;
  text-transform: uppercase;
}

/* ============================ ГЕРОЙ-КАРУСЕЛЬ =========================== */

.hero {
  position: relative;
  margin-top: 18px;
  border-radius: var(--r-xl);
  overflow: hidden;
  height: clamp(430px, 64vh, 660px);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  isolation: isolate;
}

.hero__slide {
  position: absolute; inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .9s var(--ease), visibility .9s;
}
.hero__slide.is-active { opacity: 1; visibility: visible; }

.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center right;
  transform: scale(1.06);
}
.hero__slide.is-active .hero__bg { animation: kenburns 12s linear forwards; }
@keyframes kenburns {
  from { transform: scale(1.04) translateX(0); }
  to   { transform: scale(1.14) translateX(-1.4%); }
}

.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(6,6,10,.96) 0%, rgba(6,6,10,.82) 34%, rgba(6,6,10,.25) 62%, rgba(6,6,10,.05) 100%),
    linear-gradient(0deg, rgba(6,6,10,.9) 0%, transparent 45%);
}

.hero__body {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 44px clamp(28px, 5vw, 64px);
  max-width: 640px;
}
.hero__slide.is-active .hero__body > * {
  animation: heroIn .8s var(--ease) both;
}
.hero__slide.is-active .hero__body > *:nth-child(2) { animation-delay: .07s; }
.hero__slide.is-active .hero__body > *:nth-child(3) { animation-delay: .14s; }
.hero__slide.is-active .hero__body > *:nth-child(4) { animation-delay: .21s; }
.hero__slide.is-active .hero__body > *:nth-child(5) { animation-delay: .28s; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.09);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(10px);
  font-size: 12.5px; font-weight: 650; letter-spacing: .02em;
  width: fit-content;
  text-transform: uppercase;
}
.hero__title {
  margin: 0;
  font-size: clamp(34px, 5.4vw, 62px);
  line-height: 1.02;
  letter-spacing: -.035em;
  font-weight: 800;
  text-shadow: 0 4px 40px rgba(0,0,0,.6);
}
.hero__sub { margin: 0; font-size: clamp(15px, 1.4vw, 18px); color: #C9CDD9; max-width: 520px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 8px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }

.tag {
  padding: 5px 11px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line);
  font-size: 12.5px; font-weight: 550;
  color: #CDD2DE;
  backdrop-filter: blur(6px);
}

/* Переключатель слайдов справа — как на больших игровых витринах */
.hero__pager {
  position: absolute;
  right: clamp(16px, 2.4vw, 30px);
  bottom: clamp(16px, 2.4vw, 30px);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.hero__dot {
  position: relative;
  width: 62px; height: 4px;
  border: 0; padding: 0;
  border-radius: 4px;
  background: rgba(255,255,255,.22);
  overflow: hidden;
}
.hero__dot i {
  position: absolute; inset: 0;
  transform-origin: left;
  transform: scaleX(0);
  background: #fff;
  border-radius: inherit;
}
.hero__dot.is-active i { animation: dotFill var(--hero-dur, 7s) linear forwards; }
@keyframes dotFill { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.hero__arrow {
  position: absolute; top: 50%; z-index: 3;
  width: 44px; height: 44px;
  margin-top: -22px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(10,10,16,.55);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity .25s, background .2s, transform .2s var(--ease);
}
.hero:hover .hero__arrow { opacity: 1; }
.hero__arrow:hover { background: rgba(10,10,16,.85); transform: scale(1.08); }
.hero__arrow--prev { left: 18px; }
.hero__arrow--next { right: 18px; }

/* ============================== СЕКЦИИ ================================= */

.section { padding: clamp(46px, 6vw, 86px) 0 0; }
.section--tight { padding-top: clamp(30px, 4vw, 48px); }

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
.section__title {
  margin: 0;
  font-size: clamp(21px, 2.6vw, 30px);
  letter-spacing: -.025em;
  font-weight: 750;
}
.section__sub { margin: 6px 0 0; color: var(--muted); font-size: 14.5px; }
.section__link { color: var(--muted); font-size: 14px; font-weight: 600; display: inline-flex; gap: 6px; align-items: center; transition: color .2s, gap .2s; }
.section__link:hover { color: var(--text); gap: 10px; }

.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--brand-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}

/* ============================ РЯД КАРТОЧЕК ============================= */

.rail { position: relative; }
.rail__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(236px, 1fr);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 18px;
  margin: -4px -4px -18px;
  scrollbar-width: none;
}
.rail__track::-webkit-scrollbar { display: none; }
.rail__track { cursor: grab; }
.rail__track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
  user-select: none;
}
.rail__track.is-dragging * { pointer-events: none; }
.rail__track img { -webkit-user-drag: none; user-select: none; }
.rail__track > * { scroll-snap-align: start; }

.rail__nav {
  position: absolute; top: 40%; z-index: 4;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(18,18,26,.9);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .2s var(--ease);
}
.rail:hover .rail__nav { opacity: 1; pointer-events: auto; }
.rail__nav:hover { transform: scale(1.1); }
.rail__nav[disabled] { opacity: 0 !important; pointer-events: none; }
.rail__nav--prev { left: -18px; }
.rail__nav--next { right: -18px; }

/* Карточка игры */
.card {
  position: relative;
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s, border-color .3s;
  isolation: isolate;
}
.card:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--glow) 55%, transparent);
  box-shadow: 0 26px 60px -24px color-mix(in srgb, var(--glow) 75%, transparent),
              0 10px 24px -14px rgba(0,0,0,.9);
}
.card__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease), filter .4s;
}
.card:hover .card__img { transform: scale(1.07); filter: saturate(1.12); }
.card__veil {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(6,6,10,.96) 4%, rgba(6,6,10,.55) 34%, rgba(6,6,10,.05) 62%);
}
.card__body {
  position: absolute; inset: auto 0 0 0;
  padding: 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.card__title { font-weight: 750; font-size: 17px; letter-spacing: -.02em; }
.card__genres { color: var(--muted); font-size: 12.5px; }
.card__cta {
  max-height: 0; opacity: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease), opacity .3s, margin .3s;
}
.card:hover .card__cta { max-height: 60px; opacity: 1; margin-top: 4px; }

.badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  max-width: calc(100% - 24px);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.badge--live  { background: rgba(53,208,127,.16); color: #6DE9A9; border: 1px solid rgba(53,208,127,.35); }
.badge--soon  { background: rgba(255,176,32,.16); color: #FFC85C; border: 1px solid rgba(255,176,32,.35); }
.badge--beta  { background: rgba(124,77,255,.2);  color: #B8A0FF; border: 1px solid rgba(124,77,255,.4); }

.badge-rating {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  display: flex; align-items: center; gap: 4px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(8,8,14,.7);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(10px);
  font-size: 12px; font-weight: 700;
}

/* ============================ БЛОК «ИСКРЫ» ============================= */

.panel {
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  background:
    radial-gradient(1000px 400px at 12% 0%, rgba(124,77,255,.16), transparent 62%),
    radial-gradient(800px 400px at 92% 100%, rgba(255,61,139,.12), transparent 60%),
    var(--surface);
  padding: clamp(28px, 4vw, 52px);
  position: relative;
  overflow: hidden;
}
.panel--spark {
  background:
    radial-gradient(900px 400px at 8% 0%, rgba(255,176,32,.18), transparent 60%),
    radial-gradient(700px 400px at 95% 100%, rgba(255,61,139,.12), transparent 60%),
    var(--surface);
}

.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.grid-2 > *, .grid-3 > *, .grid-4 > *, .stats > *, .grid-cards > * { min-width: 0; }

.feature {
  padding: 22px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.035);
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), background .3s, border-color .3s;
}
.feature:hover { transform: translateY(-4px); background: rgba(255,255,255,.06); border-color: var(--line-2); }
.feature__icon {
  width: 42px; height: 42px;
  border-radius: 13px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(124,77,255,.28), rgba(255,61,139,.2));
  border: 1px solid var(--line-2);
  margin-bottom: 14px;
}
.feature h3 { margin: 0 0 6px; font-size: 16.5px; letter-spacing: -.02em; }
.feature p  { margin: 0; color: var(--muted); font-size: 14px; }

.spark-pack {
  position: relative;
  padding: 22px 20px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  text-align: center;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.spark-pack:hover { transform: translateY(-5px); border-color: rgba(255,176,32,.5); box-shadow: 0 20px 44px -22px rgba(255,176,32,.8); }
.spark-pack__amount { font-size: 30px; font-weight: 800; letter-spacing: -.03em; color: #FFD98A; }
.spark-pack__label { color: var(--muted); font-size: 13px; margin-bottom: 14px; }
.spark-pack__price { font-size: 19px; font-weight: 700; margin-bottom: 14px; }
.spark-pack__tag {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  padding: 3px 12px; border-radius: 999px;
  background: linear-gradient(120deg, var(--spark), var(--spark-2));
  color: #251500; font-size: 11px; font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Счётчики */
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.stat { text-align: center; padding: 18px 12px; border-radius: var(--r); background: rgba(255,255,255,.03); border: 1px solid var(--line); }
.stat__v { font-size: clamp(24px, 3vw, 34px); font-weight: 800; letter-spacing: -.03em; background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__l { color: var(--muted); font-size: 13px; margin-top: 2px; }

/* ============================ «СКОРО» / ЛИСТ ОЖИДАНИЯ ================== */

.spotlight {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 420px;
  display: grid;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.spotlight__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.spotlight__veil {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(6,6,10,.95) 0%, rgba(6,6,10,.75) 42%, rgba(6,6,10,.18) 78%);
}
.spotlight__body { position: relative; padding: clamp(28px, 4vw, 52px); max-width: 580px; }

.progress {
  height: 7px;
  border-radius: 99px;
  background: rgba(255,255,255,.1);
  overflow: hidden;
}
.progress i {
  display: block; height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--spark), var(--spark-2));
  width: 0;
  transition: width 1.4s var(--ease);
  position: relative;
}
.progress i::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  animation: shine 2.4s linear infinite;
}
@keyframes shine { from { transform: translateX(-100%); } to { transform: translateX(100%); } }

.form-inline { display: flex; gap: 10px; flex-wrap: wrap; }
.input {
  flex: 1; min-width: 210px;
  padding: 13px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line-2);
  color: var(--text);
  outline: 0;
  font-size: 14.5px;
  transition: border-color .2s, background .2s;
}
.input:focus { border-color: var(--brand); background: rgba(255,255,255,.08); }
.input::placeholder { color: var(--muted-2); }

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

/* ============================== НОВОСТИ ================================ */

.news-card {
  display: flex; flex-direction: column; gap: 10px;
  padding: 22px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  height: 100%;
  transition: transform .3s var(--ease), border-color .3s, background .3s;
}
.news-card:hover { transform: translateY(-4px); border-color: var(--line-2); background: var(--surface-2); }
.news-card__top { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: var(--muted); }
.news-card__tag {
  padding: 3px 10px; border-radius: 7px;
  background: rgba(124,77,255,.18);
  color: #B8A0FF; font-weight: 650; font-size: 11.5px;
  border: 1px solid rgba(124,77,255,.3);
}
.news-card h3 { margin: 0; font-size: 17px; letter-spacing: -.02em; }
.news-card p { margin: 0; color: var(--muted); font-size: 14px; }

/* ============================== ПОДВАЛ ================================= */

.footer {
  margin-top: clamp(60px, 8vw, 110px);
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.02));
  padding: 48px 0 34px;
}
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; }
.footer h4 { margin: 0 0 14px; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); font-weight: 700; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer a { color: var(--muted); font-size: 14px; transition: color .2s; }
.footer a:hover { color: var(--text); }
.footer__legal {
  margin-top: 34px; padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  color: var(--muted-2); font-size: 13px;
}

/* ========================== ВНУТРЕННИЕ СТРАНИЦЫ ======================== */

.page-head { padding: clamp(30px, 4vw, 54px) 0 0; }
.page-head h1 { margin: 0; font-size: clamp(28px, 4vw, 44px); letter-spacing: -.035em; font-weight: 800; }
.page-head p { color: var(--muted); margin: 10px 0 0; max-width: 720px; }

.chips { display: flex; gap: 9px; flex-wrap: wrap; }
.chips a, .chips button {
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13.5px; font-weight: 600;
  transition: all .2s var(--ease);
}
.chips a:hover, .chips button:hover { color: var(--text); border-color: var(--line-2); transform: translateY(-2px); }
.chips a.is-active { background: var(--brand-grad); color: #fff; border-color: transparent; box-shadow: 0 8px 22px -10px rgba(124,77,255,.9); }

.grid-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 20px; }

/* Страница игры */
.gamehero {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-lg);
}
/* Ключевой арт уходит в фактуру фона — герой на баннере логотип, а не персонаж */
.gamehero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: blur(16px) saturate(.7);
  transform: scale(1.1);
  opacity: .5;
}
.gamehero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(760px 460px at 82% 46%, color-mix(in srgb, var(--glow, #7C4DFF) 30%, transparent), transparent 70%),
    linear-gradient(90deg, rgba(6,6,10,.97) 0%, rgba(6,6,10,.9) 46%, rgba(6,6,10,.7) 100%),
    linear-gradient(0deg, rgba(6,6,10,.9) 0%, transparent 55%);
}
.gamehero__body {
  position: relative;
  padding: clamp(26px, 4vw, 48px);
  width: 100%;
  display: flex;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  justify-content: space-between;
}
.gamehero__main { flex: 1; min-width: 0; }
.gamehero h1 { margin: 0 0 8px; font-size: clamp(30px, 4.6vw, 52px); letter-spacing: -.035em; font-weight: 800; }

.gamehero__logo { flex: none; display: grid; place-items: center; }
.gamehero__logo img {
  width: clamp(140px, 17vw, 230px);
  height: auto;
  border-radius: 26%;
  filter: drop-shadow(0 26px 50px color-mix(in srgb, var(--glow, #7C4DFF) 65%, transparent))
          drop-shadow(0 8px 20px rgba(0,0,0,.7));
  animation: logoFloat 7s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-12px) rotate(-1.2deg); }
}

@media (max-width: 860px) {
  .gamehero__body { flex-direction: column-reverse; align-items: flex-start; gap: 22px; }
  .gamehero__logo img { width: 104px; animation: none; }
}

.specs { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.spec { background: var(--surface); padding: 16px 18px; }
.spec__k { color: var(--muted-2); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.spec__v { margin-top: 4px; font-weight: 650; font-size: 14.5px; }

/* ====================== КАРТОЧКИ ПЕРСОНАЖЕЙ / МИРОВ ==================== */

.chr-track { grid-auto-columns: minmax(238px, 1fr); }

.chr {
  position: relative;
  display: block;
  padding: 0;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 3 / 4.35;
  transition: transform .35s var(--ease), border-color .3s, box-shadow .35s;
}
.chr:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--glow, #7C4DFF) 50%, transparent);
  box-shadow: 0 26px 60px -26px color-mix(in srgb, var(--glow, #7C4DFF) 80%, transparent);
}

.chr__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .6s var(--ease);
}
.chr:hover .chr__img { transform: scale(1.05); }

.chr__veil {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(6,6,10,.97) 16%, rgba(6,6,10,.72) 40%, rgba(6,6,10,.06) 68%);
}

.chr__status, .chr__voice {
  position: absolute; top: 11px; z-index: 2;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px; font-weight: 650;
  background: rgba(8,8,14,.72);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(10px);
  color: var(--muted);
}
.chr__status { left: 11px; }
.chr__voice  { right: 11px; color: #CDD2DE; }
.chr__status i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--muted-2);
}
.chr__status.is-online { color: #6DE9A9; border-color: rgba(53,208,127,.35); }
.chr__status.is-online i { background: #35D07F; box-shadow: 0 0 0 3px rgba(53,208,127,.22); }

.chr__body {
  position: absolute; inset: auto 0 0 0;
  padding: 14px;
  display: flex; flex-direction: column; gap: 7px;
}
.chr__name {
  font-size: 16.5px; font-weight: 750; letter-spacing: -.02em;
  display: flex; align-items: baseline; gap: 7px;
}
.chr__name i {
  font-style: normal; font-size: 12.5px; font-weight: 600;
  color: var(--muted);
  padding: 1px 7px; border-radius: 6px;
  background: rgba(255,255,255,.09);
}
.chr__text {
  font-size: 12.8px; line-height: 1.45; color: #B4BAC9;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}
.chr__foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 2px; }
.chr__meta { display: inline-flex; align-items: center; gap: 5px; font-size: 11.5px; color: var(--muted-2); }
.chr__cta {
  padding: 6px 13px;
  border-radius: 9px;
  font-size: 12.5px; font-weight: 700;
  background: var(--brand-grad);
  color: #fff;
  opacity: 0; transform: translateY(6px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.chr:hover .chr__cta { opacity: 1; transform: none; }

/* ============================== ЛАЙТБОКС ============================== */

.lb {
  position: fixed; inset: 0; z-index: 200;
  display: none;
  align-items: center; justify-content: center;
  padding: clamp(14px, 4vw, 44px);
  background: rgba(4, 4, 8, .94);
  backdrop-filter: blur(16px);
}
.lb.is-open { display: flex; animation: lbIn .25s var(--ease); }
@keyframes lbIn { from { opacity: 0; } to { opacity: 1; } }

.lb__card {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 380px);
  gap: 0;
  max-width: 800px; width: 100%;
  max-height: calc(100vh - 80px);
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: lbZoom .3s var(--ease);
}
@keyframes lbZoom { from { transform: scale(.95); opacity: 0; } to { transform: none; opacity: 1; } }

.lb__media { position: relative; background: #0A0A10; min-height: 300px; }
.lb__img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.lb__info {
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  overflow-y: auto;
}
.lb__tag {
  align-self: flex-start;
  padding: 4px 11px; border-radius: 999px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  background: rgba(124,77,255,.18); color: #B8A0FF;
  border: 1px solid rgba(124,77,255,.32);
}
.lb__name { margin: 0; font-size: 27px; font-weight: 800; letter-spacing: -.03em; line-height: 1.1; }
.lb__name span { font-size: 16px; font-weight: 600; color: var(--muted); margin-left: 9px; }
.lb__text { margin: 0; color: #C6CAD6; font-size: 15px; line-height: 1.6; }
.lb__chips { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.lb__dot {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 12px; border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  font-size: 12.5px; font-weight: 600; color: var(--muted);
}
.lb__dot i { width: 7px; height: 7px; border-radius: 50%; background: var(--muted-2); }
.lb__dot.is-online { color: #6DE9A9; border-color: rgba(53,208,127,.35); }
.lb__dot.is-online i { background: #35D07F; box-shadow: 0 0 0 3px rgba(53,208,127,.2); }

.lb__block {
  padding: 16px;
  border-radius: var(--r);
  background: rgba(255,255,255,.035);
  border: 1px solid var(--line);
}
.lb__block-title {
  display: block;
  font-size: 11px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 12px;
}
.lb__block .perks li { font-size: 13.5px; }
.lb__actions { margin-top: auto; padding-top: 8px; }

.lb__btn {
  position: fixed; z-index: 2;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(20,20,28,.85);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(10px);
  transition: background .2s, transform .2s var(--ease);
}
.lb__btn:hover { background: rgba(34,34,48,.95); transform: scale(1.08); }
.lb__close { top: clamp(14px, 3vw, 24px); right: clamp(14px, 3vw, 24px); }
.lb__prev  { left: clamp(8px, 3vw, 24px);  top: 50%; margin-top: -23px; }
.lb__next  { right: clamp(8px, 3vw, 24px); top: 50%; margin-top: -23px; }

@media (max-width: 860px) {
  .lb__card { grid-template-columns: minmax(0, 1fr); max-width: 420px; }
  .lb__media { aspect-ratio: 3 / 3.4; min-height: 0; }
  .lb__info { padding: 20px; }
  .lb__name { font-size: 22px; }
}
@media (max-width: 560px) {
  .chr-track { grid-auto-columns: minmax(172px, 1fr); }
  .chr__text { -webkit-line-clamp: 2; font-size: 12px; }
  .chr__cta { opacity: 1; transform: none; }
}

.prose { max-width: 780px; color: #C6CAD6; }
.prose h2 { color: var(--text); font-size: 22px; letter-spacing: -.025em; margin: 34px 0 12px; }
.prose h3 { color: var(--text); font-size: 17px; margin: 26px 0 8px; }
.prose p, .prose li { font-size: 15px; line-height: 1.7; }
.prose ul { padding-left: 20px; }
.prose a { color: #A78BFA; }

/* Кабинет / формы */
.auth-wrap { display: grid; place-items: center; min-height: calc(100vh - var(--header-h)); padding: 40px 0; }
.auth-card {
  width: 100%; max-width: 440px;
  padding: 34px;
  border-radius: var(--r-xl);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.field { display: grid; gap: 7px; margin-bottom: 16px; }
.field label { font-size: 13.5px; font-weight: 600; color: #C6CAD6; }
.field .input { width: 100%; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--muted); }
.check input { margin-top: 3px; accent-color: var(--brand); }

.cab { display: grid; grid-template-columns: 250px 1fr; gap: 26px; align-items: start; padding-top: 30px; }
.cab__nav { display: grid; gap: 4px; position: sticky; top: calc(var(--header-h) + 18px); }
.cab__nav a { padding: 11px 15px; border-radius: 12px; color: var(--muted); font-weight: 600; font-size: 14.5px; display: flex; gap: 10px; align-items: center; transition: all .2s; }
.cab__nav a:hover { background: rgba(255,255,255,.05); color: var(--text); }
.cab__nav a.is-active { background: var(--brand-grad); color: #fff; box-shadow: 0 10px 26px -14px rgba(124,77,255,.9); }

.tile { padding: 22px; border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--line); }
.balance {
  padding: 26px;
  border-radius: var(--r-lg);
  background: radial-gradient(700px 300px at 10% 0%, rgba(255,176,32,.2), transparent 60%), var(--surface);
  border: 1px solid rgba(255,176,32,.22);
}
.balance__v { font-size: 42px; font-weight: 800; letter-spacing: -.04em; color: #FFD98A; line-height: 1; }

.tx { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.tx:last-child { border-bottom: 0; }
.tx__a { font-weight: 700; font-variant-numeric: tabular-nums; }
.tx__a.is-plus { color: var(--ok); }
.tx__a.is-minus { color: #FF8080; }

.alert { padding: 13px 16px; border-radius: 12px; font-size: 14px; margin-bottom: 18px; }
.alert--ok  { background: rgba(53,208,127,.12); border: 1px solid rgba(53,208,127,.3); color: #8BEFBB; }
.alert--err { background: rgba(255,80,80,.1);  border: 1px solid rgba(255,80,80,.28); color: #FFA3A3; }

/* Появление при скролле */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }

/* Мобильное меню */
.mobile-nav {
  position: fixed; inset: var(--header-h) 0 0;
  background: rgba(8,8,12,.97);
  backdrop-filter: blur(20px);
  z-index: 80;
  padding: 22px 24px;
  display: none;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a { padding: 14px 16px; border-radius: 12px; font-size: 17px; font-weight: 600; background: rgba(255,255,255,.04); }

/* ============================== АДАПТИВ ================================ */

@media (max-width: 1080px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .cab { grid-template-columns: 1fr; }
  .cab__nav { position: static; grid-auto-flow: column; overflow-x: auto; scrollbar-width: none; }
  .cab__nav a { white-space: nowrap; }
}

@media (max-width: 900px) {
  .nav, .search { display: none; }
  .burger { display: grid !important; }
  .grid-3, .grid-4, .grid-2, .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rail__nav { display: none; }

  /* Заголовок секции: ссылка уезжает под текст, а не ломает строку */
  .section__head { flex-direction: column; align-items: flex-start; gap: 10px; }
  .section__link { order: 3; }

  /* Герой: текст прижимаем к низу и кладём на тёмное, а не на арт */
  .hero { height: clamp(430px, 74vh, 580px); border-radius: var(--r-lg); }
  .hero__bg { background-position: 88% top; }
  .hero__veil {
    background:
      linear-gradient(0deg, rgba(6,6,10,.98) 34%, rgba(6,6,10,.78) 60%, rgba(6,6,10,.22) 100%),
      linear-gradient(90deg, rgba(6,6,10,.55), rgba(6,6,10,.1));
  }
  .hero__body {
    max-width: none;
    justify-content: flex-end;
    padding: 26px 22px 62px;
    gap: 13px;
  }
  .hero__title { font-size: clamp(30px, 8.4vw, 42px); }
  .hero__sub {
    font-size: 14.5px;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  }
  /* больше трёх меток на телефоне не помещается — остальные не показываем */
  .hero__meta .tag:nth-child(n+4) { display: none; }
}

@media (max-width: 560px) {
  .wrap { padding-inline: 14px; }

  /* Шапка: логотип + компактная кнопка + меню */
  .header { height: 58px; }
  .header__in { gap: 12px; }
  .logo__mark { width: 30px; height: 30px; border-radius: 9px; font-size: 11.5px; }
  .logo__text { font-size: 14.5px; }
  .header__tools { gap: 8px; margin-left: auto; }
  .header__tools .btn--primary { padding: 9px 12px; }
  .btn-label { display: none; }
  .burger { width: 36px; height: 36px; }

  .grid-3, .grid-4, .grid-2 { grid-template-columns: minmax(0, 1fr); }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat__l { font-size: 12px; hyphens: auto; }
  .section__title { font-size: 22px; }
  .section__sub { font-size: 13.5px; }

  /* Карточки: метки мельче, жанры в одну строку */
  .rail__track { grid-auto-columns: minmax(154px, 1fr); gap: 12px; }
  .grid-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .badge { font-size: 9.5px; padding: 3px 8px; top: 9px; left: 9px; }
  .badge-rating { font-size: 10.5px; padding: 3px 7px; top: 9px; right: 9px; }
  .badge-app { top: auto; bottom: 9px; right: 9px; left: auto; padding: 4px; }
  .badge-app__t { display: none; }
  .card__body { padding: 12px; }
  .card__title { font-size: 14.5px; }
  .card__genres { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 11.5px; }
  .card__cta { display: none; }

  .chr-track { grid-auto-columns: minmax(166px, 1fr); }
  .chr__text { -webkit-line-clamp: 2; font-size: 12px; }
  .chr__cta { opacity: 1; transform: none; }
  .chr__status, .chr__voice { font-size: 10px; padding: 3px 8px; }

  .hero__dot { width: 30px; }
  .hero__pager { bottom: 14px; right: 14px; }
  .footer__grid { grid-template-columns: 1fr; }

  /* Панели и кнопки установки */
  .panel, .app-panel { padding: 20px 16px; border-radius: var(--r-lg); }
  .app-panel__logo { width: 76px; }
  .get { min-height: 60px; padding: 10px 14px; gap: 11px; }
  .get__tile { width: 36px; height: 36px; border-radius: 10px; }
  .get__tile img { width: 27px; height: 27px; }
  .get__txt b { font-size: 15px; }
  .spotlight { min-height: 0; }
  .spotlight__body { padding: 24px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; }
}
