* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Arial, sans-serif;
  background: #0b1220;
  color: #edf2ff;
  line-height: 1.5;
}
a { color: #8ab4ff; text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11, 18, 32, 0.92);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
}

.logo {
  color: #fff;
  font-weight: 800;
  font-size: 24px;
}

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

.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: #d9e7ff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .01em;
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    0 10px 26px rgba(0,0,0,.18);
  transition:
    transform .16s ease,
    border-color .16s ease,
    background .16s ease,
    color .16s ease,
    box-shadow .16s ease;
}

.nav a:hover {
  text-decoration: none;
  color: #fff;
  border-color: rgba(86, 152, 255, .45);
  background:
    radial-gradient(circle at top center, rgba(59,130,246,.20), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 14px 30px rgba(0,0,0,.24);
}

.hero {
  padding: 48px 0 24px;
}
.hero--small {
  padding: 32px 0 16px;
}
.hero h1 {
  margin: 0 0 12px;
  font-size: 40px;
  line-height: 1.1;
}
.hero p {
  margin: 0;
  max-width: 800px;
  color: #b7c4e0;
}

.section {
  padding: 24px 0 32px;
}
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.section h2 {
  margin: 0 0 16px;
  font-size: 28px;
}

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

.game-card {
  background: #111a2b;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  overflow: hidden;
}

.game-card__image-wrap {
  display: block;
  aspect-ratio: 3 / 4;
  background: #162239;
}

.game-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.game-card__noimage {
  display: grid;
  place-items: center;
  height: 100%;
  color: #9fb0d4;
}

.game-card__body {
  padding: 14px;
}

.game-card__title {
  font-size: 18px;
  line-height: 1.3;
  margin: 0 0 8px;
}
.game-card__title a {
  color: #fff;
}

.game-card__meta {
  color: #a7b4cf;
  font-size: 14px;
  margin-bottom: 10px;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.price-row--big .price-current {
  font-size: 34px;
}
.price-current {
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
}
.price-old {
  color: #9aa8c5;
  text-decoration: line-through;
  white-space: nowrap;
}

.game-page__top {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 28px;
  padding: 36px 0 20px;
}
.game-page__cover img {
  width: 100%;
  display: block;
  border-radius: 18px;
}
.game-page__info h1 {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 38px;
}
.meta-list {
  list-style: none;
  padding: 0;
  margin: 18px 0;
}
.meta-list li {
  margin-bottom: 8px;
  color: #d8e2f7;
}

.btn {
  display: inline-block;
  padding: 12px 18px;
  border: 0;
  border-radius: 12px;
  background: #3b82f6;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item {
  background: #111a2b;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 14px 16px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
}
.faq-answer {
  margin-top: 12px;
}

.prose {
  color: #dbe6ff;
}
.prose p {
  margin: 0 0 14px;
}

.site-footer {
  padding: 28px 0 40px;
  color: #91a2c6;
}

@media (max-width: 980px) {
  .game-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .game-page__top {
    grid-template-columns: 1fr;
  }

}

.auth-wrap {
  display: flex;
  justify-content: center;
}

.auth-card,
.profile-card {
  background: #111a2b;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 20px;
}

.auth-card {
  width: min(520px, 100%);
}

.auth-form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  color: #d8e2f7;
  font-weight: 700;
}

.field input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: #0d1526;
  color: #fff;
  outline: none;
}

.field input:focus {
  border-color: #3b82f6;
}

.alert {
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 14px;
}

.alert--error {
  background: rgba(220, 38, 38, 0.16);
  border: 1px solid rgba(220, 38, 38, 0.35);
  color: #ffd3d3;
}

.alert--success {
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #d4ffe0;
}

.auth-help {
  margin-top: 14px;
  color: #b7c4e0;
}

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

.profile-value {
  font-size: 34px;
  font-weight: 800;
  color: #fff;
}

.muted {
  color: #b7c4e0;
}

@media (max-width: 800px) {
  .profile-grid {
    grid-template-columns: 1fr;
  }
}

.cashback-box {
  margin: 12px 0 16px;
  color: #d4ffe0;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.28);
  border-radius: 12px;
  padding: 12px 14px;
}

.cashback-history {
  display: grid;
  gap: 12px;
}

.cashback-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cashback-row:last-child {
  border-bottom: 0;
}

.cashback-row__title {
  font-weight: 700;
  color: #fff;
}

.cashback-row__meta {
  font-size: 13px;
  color: #a7b4cf;
  margin-top: 4px;
}

.cashback-row__amount {
  font-weight: 800;
  white-space: nowrap;
}

.cashback-row__amount.is-positive {
  color: #8df0aa;
}

.cashback-row__amount.is-negative {
  color: #ffb0b0;
}

.btn--small {
  padding: 10px 14px;
  font-size: 14px;
  border-radius: 10px;
}

.btn--ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
}

.buy-page-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.buy-product {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  align-items: start;
}

.buy-product__image img {
  width: 100%;
  display: block;
  border-radius: 14px;
}

.buy-product__title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
}

.buy-product__meta {
  color: #b7c4e0;
  margin-bottom: 14px;
}

.buy-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

@media (max-width: 900px) {
  .buy-page-grid {
    grid-template-columns: 1fr;
  }

  .buy-product {
    grid-template-columns: 1fr;
  }

  .buy-product__image {
    max-width: 240px;
  }
}

.cart-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 18px;
  align-items: start;
}

.checkout-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.checkout-choice__card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(148,163,184,.22);
  background: linear-gradient(180deg, rgba(15,23,42,.92), rgba(9,16,31,.92));
  color: #eaf1ff;
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(0,0,0,.18);
}

.checkout-choice__card:hover {
  border-color: rgba(96,165,250,.55);
  text-decoration: none;
}

.checkout-choice__card.is-recommended {
  border-color: rgba(96,165,250,.72);
  box-shadow: 0 18px 42px rgba(37,99,235,.18), inset 0 0 0 1px rgba(96,165,250,.18);
}

.checkout-choice__kicker {
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.checkout-choice__card strong {
  font-size: 20px;
  line-height: 1.15;
}

.checkout-choice__card span:not(.checkout-choice__kicker) {
  color: #aebedf;
  font-size: 14px;
  line-height: 1.45;
}

.checkout-choice__card em {
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.cart-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.cart-trust-strip span {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(34,197,94,.10);
  border: 1px solid rgba(34,197,94,.22);
  color: #c9f9d8;
  font-size: 13px;
  font-weight: 800;
}

.cart-summary {
  display: grid;
  gap: 12px;
}

.cart-summary__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cart-summary__row span {
  min-width: 0;
}

.cart-summary__row strong {
  flex: 0 0 auto;
  text-align: right;
  white-space: nowrap;
}

.cart-summary__row:last-child {
  border-bottom: 0;
}

.is-green {
  color: #59f28b;
}

.cart-empty-card {
  display: grid;
  gap: 14px;
}

.cart-next-step,
.cart-help-strip {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
  padding: 16px;
  border-radius: 18px;
}

.cart-next-step {
  background: linear-gradient(180deg, rgba(34,197,94,.14), rgba(59,130,246,.10));
  border: 1px solid rgba(34,197,94,.26);
}

.cart-next-step__title {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 4px;
}

.cart-next-step__text,
.cart-help-strip span {
  color: #b7c4e0;
  line-height: 1.45;
}

.cart-next-step__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cart-help-strip {
  background: rgba(17,26,43,.76);
  border: 1px solid rgba(255,255,255,.08);
}

.cart-help-strip strong {
  display: block;
  color: #fff;
  margin-bottom: 4px;
}

.cart-help-strip__links {
  display: flex;
  gap: 12px;
  flex: 0 0 auto;
}

.cart-help-strip__links a {
  color: #9fc2ff;
  font-weight: 800;
  text-decoration: none;
}

.buy-actions--auto,
.buy-actions--auto form,
.btn--auto-checkout {
  width: 100%;
}

.quick-checkout-form {
  display: grid;
  gap: 12px;
}

.quick-checkout-field {
  display: grid;
  gap: 8px;
  color: #dbe6ff;
  font-weight: 700;
}

.quick-checkout-field input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  background: rgba(8, 14, 26, .68);
  color: #fff;
  padding: 0 15px;
  outline: none;
}

.quick-checkout-field input:focus {
  border-color: rgba(89, 155, 255, .62);
  box-shadow: 0 0 0 4px rgba(59,130,246,.14);
}

.quick-checkout-note {
  color: #9fb0d2;
  font-size: 14px;
  line-height: 1.45;
}

.cart-account-addon {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  color: #dbe6ff;
  font-weight: 800;
}

.cart-account-addon input {
  width: 18px;
  height: 18px;
  accent-color: #3b82f6;
  flex: 0 0 auto;
}

.cart-account-addon span {
  min-width: 0;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}

.cart-account-addon strong {
  color: #78f2a6;
  white-space: nowrap;
}

.btn--auto-checkout {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(180deg, #5b9cff, #2563eb);
  box-shadow: 0 14px 34px rgba(37, 99, 235, .34);
  font-size: 16px;
}

.manager-box {
  margin-top: 18px;
  background: linear-gradient(180deg, rgba(255,98,0,0.16), rgba(255,80,80,0.14));
  border: 1px solid rgba(255,120,60,0.22);
  border-radius: 18px;
  padding: 16px;
}

.manager-box__title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 14px;
  color: #fff;
  overflow-wrap: normal;
}

.manager-box__title span {
  white-space: nowrap;
}

.manager-box__text {
  color: #ffd9cd;
  line-height: 1.45;
  margin: -4px 0 14px;
}

.manager-form {
  display: grid;
  gap: 10px;
}

.manager-form__field {
  display: grid;
  gap: 7px;
  color: #fff;
  font-weight: 700;
}

.manager-form__field input {
  width: 100%;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  background: rgba(8, 14, 26, .62);
  color: #fff;
  padding: 13px 14px;
  outline: none;
}

.manager-form__field input:focus {
  border-color: rgba(255,139,89,.55);
}

.btn--manager {
  background: linear-gradient(180deg, #ff6b2e, #ff4d2d);
}

.manager-message-box {
  margin: 16px 0;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: #dbe6ff;
  line-height: 1.55;
}

.cart-items {
  display: grid;
  gap: 14px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.cart-item__main {
  display: flex;
  gap: 14px;
  align-items: center;
  min-width: 0;
}

.cart-item__image img {
  width: 82px;
  height: 82px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.cart-item__title {
  font-weight: 800;
  font-size: 18px;
  color: #fff;
}

.cart-item__meta {
  color: #a7b4cf;
  margin-top: 4px;
}

.cart-item__side {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.cart-item__price {
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
}

.cart-sticky {
  position: fixed;
  left: 50%;
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 90;
  width: min(1040px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(8,18,38,.94);
  border: 1px solid rgba(148,199,255,.18);
  box-shadow: 0 18px 48px rgba(0,0,0,.38);
  backdrop-filter: blur(14px);
}

.global-cart-reminder {
  position: fixed;
  left: 50%;
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 88;
  width: min(520px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(8,18,38,.94);
  border: 1px solid rgba(148,199,255,.18);
  box-shadow: 0 18px 48px rgba(0,0,0,.34);
  backdrop-filter: blur(14px);
}

.global-cart-reminder__text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.global-cart-reminder__text span {
  color: #b7c4e0;
  font-size: 14px;
}

.global-cart-reminder__text strong {
  color: #fff;
}

.page-product .global-cart-reminder {
  display: none;
}

.cart-sticky__main {
  display: grid;
  gap: 2px;
  color: #b7c4e0;
  min-width: 0;
}

.cart-sticky__main strong {
  color: #fff;
  font-size: 20px;
}

.cart-sticky__actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.cart-nudge-modal[hidden] {
  display: none !important;
}

.cart-nudge-modal {
  position: fixed;
  inset: 0;
  z-index: 3100;
}

.cart-nudge-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4,9,18,.64);
  backdrop-filter: blur(6px);
}

.cart-nudge-modal__dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(520px, calc(100% - 32px));
  transform: translate(-50%, -50%);
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, #111a2b, #0b1426);
  border: 1px solid rgba(148,199,255,.16);
  box-shadow: 0 24px 70px rgba(0,0,0,.48);
}

.cart-nudge-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.cart-nudge-modal__eyebrow {
  color: #78f2a6;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cart-nudge-modal h2 {
  margin: 0 34px 10px 0;
  font-size: 28px;
  line-height: 1.1;
}

.cart-nudge-modal p {
  margin: 0 0 16px;
  color: #c7d5f2;
  line-height: 1.55;
}

.cart-nudge-modal__actions {
  display: grid;
  gap: 10px;
}

.cart-nudge-modal__support {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}

.cart-nudge-modal__support a {
  color: #9fc2ff;
  font-weight: 800;
  text-decoration: none;
}

body.cart-nudge-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .checkout-choice {
    grid-template-columns: 1fr;
  }

  .cart-layout {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .cart-item {
    flex-direction: column;
    align-items: stretch;
    min-width: 0;
  }

  .cart-item__main,
  .cart-item__info {
    min-width: 0;
  }

  .cart-item__title,
  .cart-item__meta,
  .cart-summary__row span,
  .manager-box__title,
  .manager-box__text,
  .quick-checkout-note {
    overflow-wrap: anywhere;
  }

  .cart-item__side {
    justify-items: start;
    min-width: 0;
  }

  .cart-next-step,
  .cart-help-strip,
  .cart-sticky,
  .global-cart-reminder {
    align-items: stretch;
    flex-direction: column;
  }

  .cart-next-step__actions,
  .cart-sticky__actions {
    justify-content: stretch;
  }

  .cart-next-step__actions .btn,
  .cart-sticky__actions .btn {
    flex: 1 1 0;
    min-width: 0;
  }

  .cart-sticky,
  .global-cart-reminder {
    bottom: calc(74px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 560px) {
  .checkout-choice__card {
    padding: 15px;
  }

  .cart-trust-strip {
    display: grid;
  }

  .cart-summary__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 12px;
    align-items: baseline;
  }

  .cart-summary__row strong {
    max-width: 46vw;
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .btn--auto-checkout,
  .manager-form .btn,
  .cart-sticky__actions .btn,
  .cart-next-step__actions .btn {
    white-space: normal;
    text-align: center;
    line-height: 1.2;
    padding-left: 12px;
    padding-right: 12px;
  }

  .cart-sticky {
    width: calc(100% - 20px);
    padding: 10px;
    gap: 10px;
  }

  .cart-sticky__actions {
    gap: 8px;
    min-width: 0;
  }

  .cart-sticky__main strong {
    font-size: 18px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

.catalog-search {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.catalog-search input {
  flex: 1 1 320px;
  min-width: 260px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: #0d1526;
  color: #fff;
  outline: none;
}

.catalog-search input:focus {
  border-color: #3b82f6;
}

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

.collection-card {
  display: block;
  padding: 20px;
  border-radius: 18px;
  background: #111a2b;
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  text-decoration: none;
  transition: transform .15s ease, border-color .15s ease;
}

.collection-card:hover {
  transform: translateY(-2px);
  border-color: rgba(59,130,246,0.45);
  text-decoration: none;
}

.collection-card__title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.collection-card__link {
  color: #8ab4ff;
  font-size: 14px;
}

@media (max-width: 980px) {
  .collections-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .collections-grid {
    grid-template-columns: 1fr;
  }
}

.section--home {
  padding-top: 20px;
  padding-bottom: 32px;
}

.section-head--home {
  margin-bottom: 18px;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8ab4ff;
}

.section-link {
  color: #8ab4ff;
  font-weight: 600;
}

.home-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  padding: 34px 0 22px;
}

.home-hero__content,
.home-hero__side {
  min-width: 0;
}

.home-hero__content {
  background:
    radial-gradient(circle at top left, rgba(59,130,246,.22), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 48px rgba(0,0,0,.25);
}

.home-hero__content h1 {
  margin: 0 0 14px;
  max-width: 820px;
  font-size: 48px;
  line-height: 1.05;
}

.home-hero__content p {
  margin: 0 0 20px;
  max-width: 720px;
  color: #b7c4e0;
  font-size: 17px;
}

.home-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: #cfe0ff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.home-hero__title {
  margin: 0 0 14px;
  font-size: 48px;
  line-height: 1.05;
}

.home-hero__text {
  margin: 0 0 20px;
  max-width: 760px;
  color: #b7c4e0;
  font-size: 17px;
}

.home-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.home-trust-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -6px 0 18px;
}

.home-trust-inline span {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
  color: #cbd9f7;
  font-size: 13px;
  font-weight: 800;
}

.home-hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.home-hero__metrics span {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: #dbe6ff;
  font-weight: 800;
}

.hero-metric {
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  border-radius: 18px;
  padding: 16px;
}

.hero-metric__value {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.hero-metric__label {
  color: #aab8d4;
  font-size: 14px;
}

.hero-panel {
  height: 100%;
  background:
    radial-gradient(circle at top right, rgba(34,197,94,.18), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 18px 48px rgba(0,0,0,.25);
}

.hero-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.hero-panel__head h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
}

.hero-panel__rate {
  flex: 0 0 auto;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(34,197,94,.10);
  color: #c9f7df;
  border: 1px solid rgba(34,197,94,.18);
  font-size: 13px;
  font-weight: 800;
}

.home-buy-paths {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.home-buy-path {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 154px;
  padding: 18px;
  border-radius: 22px;
  color: #fff;
  text-decoration: none;
  background:
    radial-gradient(circle at top left, rgba(59,130,246,.14), transparent 34%),
    linear-gradient(180deg, rgba(17,26,43,.96), rgba(12,20,34,.96));
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.home-buy-path:hover {
  text-decoration: none;
  transform: translateY(-2px);
  border-color: rgba(96,165,250,.42);
  box-shadow: 0 14px 34px rgba(0,0,0,.20);
}

.home-buy-path__kicker {
  color: #8ab4ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-buy-path strong {
  font-size: 18px;
  line-height: 1.2;
}

.home-buy-path span:last-child {
  color: #b7c4e0;
  line-height: 1.45;
}

.home-account-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(96,165,250,.22);
  border-radius: 18px;
  background:
    radial-gradient(circle at top left, rgba(34,197,94,.16), transparent 34%),
    linear-gradient(180deg, rgba(17,26,43,.92), rgba(11,18,32,.92));
}

.home-account-cta h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.home-account-cta p {
  margin: 0;
  max-width: 720px;
  color: #b7c4e0;
  line-height: 1.55;
}

.home-account-cta__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.home-account-cta__actions span {
  color: #78f2a6;
  font-size: 24px;
  font-weight: 900;
  white-space: nowrap;
}

.hero-panel__title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 14px;
}

.hero-panel__list {
  margin: 0 0 20px;
  padding-left: 18px;
  color: #dbe6ff;
}

.hero-panel__list li {
  margin-bottom: 8px;
}

.hero-panel__box {
  margin-top: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 16px;
}

.hero-panel__box-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}

.hero-panel__box-text {
  color: #b7c4e0;
  line-height: 1.6;
}

.collection-tile {
  display: block;
  text-decoration: none;
  color: #fff;
}

.collection-tile:hover {
  text-decoration: none;
}

.collection-tile__inner {
  height: 100%;
  border-radius: 22px;
  padding: 20px;
  background:
    radial-gradient(circle at top left, rgba(59,130,246,.18), transparent 30%),
    linear-gradient(180deg, #111a2b, #0f1728);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .15s ease, border-color .15s ease;
}

.collection-tile:hover .collection-tile__inner {
  transform: translateY(-2px);
  border-color: rgba(59,130,246,.45);
}

.collection-tile__kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8ab4ff;
  margin-bottom: 12px;
}

.collection-tile__title {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 18px;
}

.collection-tile__arrow {
  color: #c9d9ff;
  font-size: 14px;
  font-weight: 600;
}

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

.trust-card {
  border-radius: 24px;
  padding: 22px;
  background: #111a2b;
  border: 1px solid rgba(255,255,255,.08);
}

.trust-card__title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}

.trust-card__text {
  color: #b7c4e0;
  line-height: 1.7;
}

.trust-list {
  margin: 0;
  padding-left: 18px;
  color: #dbe6ff;
}

.trust-list li {
  margin-bottom: 10px;
}

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

  .home-hero__content h1,
  .home-hero__title {
    font-size: 38px;
  }

  .home-hero__metrics {
    grid-template-columns: 1fr;
  }

  .home-buy-paths,
  .subs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-account-cta,
  .buy-account-layout {
    grid-template-columns: 1fr;
  }

  .home-account-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .buy-account-form-card {
    position: static;
  }

  .buy-account-steps {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .home-hero__content h1,
  .home-hero__title {
    font-size: 30px;
  }

  .home-hero__content,
  .hero-panel,
  .trust-card {
    padding: 18px;
    border-radius: 20px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel__head {
    display: grid;
  }

  .hero-panel__rate {
    justify-self: start;
  }

  .home-buy-paths,
  .subs-grid {
    grid-template-columns: 1fr;
  }

  .home-buy-path {
    min-height: 0;
  }
}

.subscription-tabs {
  display: grid;
  gap: 18px;
}

.subscription-tabs__buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.subscription-tab {
  border: 1px solid rgba(255,255,255,.10);
  background: #0d1526;
  color: #dbe6ff;
  padding: 12px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

.subscription-tab.is-active {
  background: #3b82f6;
  border-color: #3b82f6;
  color: #fff;
}

.subscription-pane.is-active {
  display: block;
}

/* ===== HOME CAROUSEL ===== */

.home-carousel {
  position: relative;
}

.home-carousel__track {
  min-width: 0;
}

.home-carousel__track .game-grid,
.collections-track {
  display: grid;
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  padding: 2px 2px 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.home-carousel__track .game-grid::-webkit-scrollbar,
.collections-track::-webkit-scrollbar {
  display: none;
}

.home-carousel__track .game-grid > *,
.collections-track > * {
  scroll-snap-align: start;
}

.home-carousel__track .game-grid {
  grid-auto-columns: minmax(220px, 220px);
}

.collections-track {
  grid-auto-columns: minmax(280px, 280px);
}

/* ===== TOPUP CALC ===== */

.topup-calc__chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.topup-chip {
  border: 1px solid rgba(255,255,255,.10);
  background: #0d1526;
  color: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 700;
}

.topup-calc__field {
  display: grid;
  gap: 8px;
}

.topup-calc__field span {
  color: #dbe6ff;
  font-weight: 700;
}

.topup-calc__field input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: #0d1526;
  color: #fff;
  outline: none;
}

.topup-calc__result {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

/* ===== COMPACT CARD ===== */

.game-card--compact {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #111a2b;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition: transform .15s ease, border-color .15s ease;
}

.game-card--compact:hover {
  transform: translateY(-2px);
  border-color: rgba(59,130,246,.35);
  text-decoration: none;
}

.game-card--compact .game-card__media {
  aspect-ratio: 0.78 / 1;
  background: #0d1526;
  overflow: hidden;
}

.game-card--compact .game-card__media img,
.game-card__media-placeholder {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.game-card--compact .game-card__body {
  padding: 14px 14px 16px;
}

.game-card--compact .game-card__title {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.game-card--compact .game-card__meta {
  color: #aab8d4;
  font-size: 14px;
  margin-bottom: 12px;
  min-height: 20px;
}

.game-card--compact .price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.game-card--compact .price-current {
  font-size: 18px;
  font-weight: 800;
}

.game-card--compact .price-old {
  color: #94a3b8;
  text-decoration: line-through;
  font-size: 15px;
}

@media (max-width: 980px) {
  .home-carousel__track .game-grid {
    grid-auto-columns: minmax(190px, 190px);
  }

  .collections-track {
    grid-auto-columns: minmax(240px, 240px);
  }

  .game-card--compact .game-card__title {
    font-size: 15px;
  }

  .game-card--compact .game-card__meta {
    font-size: 13px;
  }

  .game-card--compact .price-current {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .home-carousel__track .game-grid {
    grid-auto-columns: minmax(170px, 170px);
  }

  .collections-track {
    grid-auto-columns: minmax(220px, 220px);
  }
}

.game-page {
  padding-bottom: 96px;
}

.product-bottom-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: flex;
  gap: 10px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(7, 13, 24, 0.94);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,.08);
}

.product-bottom-bar__buy {
  flex: 1 1 auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.product-bottom-bar__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: #111a2b;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.product-bottom-bar__icon:hover {
  border-color: rgba(59,130,246,.35);
}

@media (min-width: 1100px) {
  .product-bottom-bar {
    left: 50%;
    transform: translateX(-50%);
    width: min(760px, calc(100% - 32px));
    bottom: 18px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;
  }
}

.product-bottom-bar__icon.is-active {
  background: rgba(239, 68, 68, 0.16);
  border-color: rgba(239, 68, 68, 0.35);
  color: #ffb4b4;
}

.home-carousel__track .game-grid {
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: 276px;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 2px 10px;
  scroll-behavior: auto;
  scroll-snap-type: none;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.home-carousel__track .game-grid::-webkit-scrollbar {
  display: none;
}

.home-carousel__track .game-grid.dragging {
  cursor: grabbing;
  user-select: none;
}

.home-carousel__track {
  overflow: hidden;
}

.collections-track {
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: 280px;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 2px 10px;
  scroll-behavior: auto;
  scroll-snap-type: none;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.collections-track::-webkit-scrollbar {
  display: none;
}

.collections-track.dragging {
  cursor: grabbing;
  user-select: none;
}

@media (max-width: 980px) {
  .home-carousel__track .game-grid {
    grid-auto-columns: 220px;
  }

  .collections-track {
    grid-auto-columns: 240px;
  }
}

@media (max-width: 640px) {
  .home-carousel__track .game-grid {
    grid-auto-columns: 190px;
  }

  .collections-track {
    grid-auto-columns: 220px;
  }
}

.home-carousel__track .game-grid a,
.home-carousel__track .game-grid img,
.collections-track a,
.collections-track img {
  -webkit-user-drag: none;
  user-select: none;
}

.contact-widget {
  position: fixed;
  right: 22px;
  bottom: calc(22px + env(safe-area-inset-bottom));
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  pointer-events: none;
}

.contact-widget > * {
  pointer-events: auto;
}

.contact-widget__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px) scale(.96);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.contact-widget.is-open .contact-widget__actions {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.contact-widget__action {
  position: relative;
  min-width: 172px;
  height: 56px;
  padding: 0 18px 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 14px 32px rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.contact-widget__action:hover {
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: 0 18px 36px rgba(0,0,0,.34);
  border-color: rgba(255,255,255,.24);
}

.contact-widget__action-ring {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.20), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  pointer-events: none;
}

.contact-widget__action-icon {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-widget__action-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-widget__label {
  position: relative;
  z-index: 1;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .01em;
  white-space: nowrap;
}

.contact-widget__action--tg {
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.24), transparent 30%),
    linear-gradient(135deg, #2ea5e5, #1f8ed5);
}

.contact-widget__action--max {
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.24), transparent 30%),
    linear-gradient(135deg, #5ab2ff, #2f7df0);
}

.contact-widget__toggle {
  position: relative;
  width: 68px;
  height: 68px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.95), rgba(255,255,255,.82)),
    linear-gradient(180deg, #ffffff, #eef3ff);
  color: #0f172a;
  box-shadow:
    0 16px 38px rgba(0,0,0,.30),
    0 0 0 1px rgba(255,255,255,.35);
  cursor: pointer;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}

.contact-widget__toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(0,0,0,.34);
}

.contact-widget__toggle-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(59,130,246,.18), transparent 58%);
  pointer-events: none;
}

.contact-widget__icon {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity .2s ease, transform .2s ease;
}

.contact-widget__icon--open svg {
  width: 28px;
  height: 28px;
  display: block;
}

.contact-widget__icon--close {
  font-size: 34px;
  line-height: 1;
  opacity: 0;
  transform: rotate(-90deg) scale(.7);
}

.contact-widget.is-open .contact-widget__icon--open {
  opacity: 0;
  transform: rotate(90deg) scale(.72);
}

.contact-widget.is-open .contact-widget__icon--close {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.contact-widget__toggle::before,
.contact-widget__toggle::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0;
}

.contact-widget__toggle::before {
  border: 1px solid rgba(255,255,255,.35);
  animation: contactPulse 2.2s infinite ease-out;
}

.contact-widget__toggle::after {
  border: 1px solid rgba(59,130,246,.30);
  animation: contactPulse 2.2s 1.1s infinite ease-out;
}

.contact-widget:not(.is-open) .contact-widget__toggle:hover {
  transform: translateY(-2px) scale(1.04);
}

.contact-widget.is-open .contact-widget__toggle::before,
.contact-widget.is-open .contact-widget__toggle::after {
  animation: none;
  opacity: 0;
}

@keyframes contactPulse {
  0% {
    transform: scale(0.92);
    opacity: 0;
  }
  18% {
    opacity: .55;
  }
  70% {
    opacity: .18;
  }
  100% {
    transform: scale(1.32);
    opacity: 0;
  }
}

@media (max-width: 640px) {
  .contact-widget {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
  }

  .contact-widget__toggle {
    width: 62px;
    height: 62px;
  }

  .contact-widget__action {
    min-width: 152px;
    height: 52px;
    padding-right: 16px;
  }

  .contact-widget__label {
    font-size: 14px;
  }
}

.subs-box {
  background:
    radial-gradient(circle at top left, rgba(59,130,246,.14), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  padding: 16px;
  box-shadow: 0 18px 48px rgba(0,0,0,.22);
}

.subs-toolbar {
  display: inline-grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: min(520px, 100%);
  margin-bottom: 14px;
  padding: 6px;
  border-radius: 18px;
  background: rgba(8,17,33,.72);
  border: 1px solid rgba(255,255,255,.06);
}

.subs-tab {
  min-height: 44px;
  border: 0;
  border-radius: 14px;
  color: #dbe6ff;
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.subs-tab.is-active {
  color: #fff;
  background: #3b82f6;
  box-shadow: 0 10px 24px rgba(59,130,246,.24);
}

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

.subs-grid .subs-card {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  min-height: 238px;
  padding: 16px;
  border-radius: 22px;
}

.subs-grid .subs-card[hidden] {
  display: none;
}

.subs-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #b7c4e0;
  font-size: 13px;
  font-weight: 800;
}

.subs-card__top mark {
  padding: 4px 8px;
  border-radius: 999px;
  color: #fff;
  background: #f97316;
}

.subs-grid .subs-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.15;
}

.subs-grid .subs-card p {
  margin: 0 0 18px;
  color: #b7c4e0;
  line-height: 1.45;
}

.subs-grid .subs-card strong {
  margin-top: auto;
  color: #fff;
  font-size: 24px;
  line-height: 1.1;
}

.subs-card__link {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 14px;
  color: #fff;
  background: #3b82f6;
  font-weight: 800;
  text-decoration: none;
}

.subs-card__link:hover {
  text-decoration: none;
  filter: brightness(1.04);
}

.subs-card__link.is-disabled {
  opacity: .55;
  background: rgba(255,255,255,.08);
}

.subs-box__seg,
.subs-box__durations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.subs-box__durations {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.subs-box__seg-btn,
.subs-box__dur-btn {
  border: 0;
  border-radius: 18px;
  padding: 14px 16px;
  cursor: pointer;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  background: rgba(8, 17, 33, .82);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
  transition: transform .15s ease, opacity .15s ease, background .15s ease;
}

.subs-box__seg-btn.is-active,
.subs-box__dur-btn.is-active {
  background: linear-gradient(135deg, #ff4b7a, #ff6a2b);
  box-shadow:
    0 10px 24px rgba(255,98,56,.22),
    inset 0 0 0 1px rgba(255,255,255,.08);
}

.subs-box__dur-btn.is-disabled {
  opacity: .35;
  pointer-events: none;
}

.subs-list {
  display: grid;
  gap: 12px;
}

.subs-card {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 22px;
  background: rgba(17,26,43,.92);
  border: 1px solid rgba(255,255,255,.08);
  color: #fff;
  text-decoration: none;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.subs-card:hover {
  transform: translateY(-1px);
  border-color: rgba(59,130,246,.35);
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  text-decoration: none;
}

.subs-card__image {
  width: 116px;
  height: 116px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
  flex: 0 0 auto;
}

.subs-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.subs-card__body {
  min-width: 0;
}

.subs-card__title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 10px;
  color: #fff;
}

.subs-card__price {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
}

.subs-box__hint {
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(8,17,33,.55);
  color: #dbe6ff;
  line-height: 1.55;
}

.subs-box__empty {
  padding: 18px 10px;
  color: #b7c4e0;
}

@media (max-width: 640px) {
  .subs-box {
    padding: 14px;
    border-radius: 24px;
  }

  .subs-box__seg-btn,
  .subs-box__dur-btn {
    font-size: 15px;
    padding: 13px 10px;
  }

  .subs-card {
    grid-template-columns: 96px 1fr;
    gap: 12px;
    padding: 12px;
    border-radius: 20px;
  }

  .subs-card__image {
    width: 96px;
    height: 96px;
    border-radius: 16px;
  }

  .subs-card__title {
    font-size: 16px;
  }

  .subs-card__price {
    font-size: 20px;
  }
}

/* Скрываем виджет на странице товара */
.page-product .contact-widget__toggle {
  display: none !important;
}

.mobile-tabbar {
  display: none;
}

@media (max-width: 768px) {
  body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .mobile-tabbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    background: rgba(7, 13, 24, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,.08);
  }

  .mobile-tabbar__item {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 4px;
    border-radius: 14px;
    color: #b7c4e0;
    text-decoration: none;
    transition: background .15s ease, color .15s ease, transform .15s ease;
  }

  .mobile-tabbar__item:hover {
    text-decoration: none;
    color: #fff;
  }

  .mobile-tabbar__item.is-active {
    background: rgba(59,130,246,.12);
    color: #fff;
  }

  .mobile-tabbar__icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-tabbar__icon svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  .mobile-tabbar__label {
    font-size: 11px;
    font-weight: 700;
    line-height: 1.1;
    white-space: nowrap;
  }

  .page-product .mobile-tabbar {
    display: none;
  }
}

.product-bottom-bar__icon--chat svg {
  width: 22px;
  height: 22px;
  display: block;
}

.product-bottom-bar__icon--chat {
  color: #fff;
}

/* ========= MOBILE TABBAR BUTTON ========= */

.mobile-tabbar__item--button {
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

/* ========= FLOATING CONTACT WIDGET ========= */

@media (max-width: 768px) {
  .contact-widget {
    display: none !important;
  }
}

/* ========= PRODUCT BAR PREMIUM ========= */

.product-bottom-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: flex;
  gap: 10px;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  background:
    linear-gradient(180deg, rgba(8,14,26,.94), rgba(10,18,34,.98));
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 -14px 34px rgba(0,0,0,.28);
}

.product-bottom-bar__buy {
  flex: 1 1 auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 62px;
  border-radius: 18px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.16), transparent 28%),
    linear-gradient(135deg, #4f8fff, #3b82f6 55%, #6aa8ff);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .01em;
  box-shadow:
    0 14px 28px rgba(59,130,246,.28),
    inset 0 1px 0 rgba(255,255,255,.18);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  text-decoration: none;
}

.product-bottom-bar__buy:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  text-decoration: none;
}

.product-bottom-bar__buy:active {
  transform: translateY(0);
}

.product-bottom-bar__icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.10), transparent 30%),
    linear-gradient(180deg, rgba(18,28,49,.98), rgba(11,20,37,.98));
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  box-shadow:
    0 10px 24px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.06);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.product-bottom-bar__icon:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.18);
  box-shadow:
    0 14px 28px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.product-bottom-bar__icon:active {
  transform: translateY(0);
}

.product-bottom-bar__icon.is-active {
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.10), transparent 30%),
    linear-gradient(135deg, rgba(239,68,68,.24), rgba(185,28,28,.16));
  border-color: rgba(239,68,68,.35);
  color: #ffd1d1;
}

.product-bottom-bar__icon--chat {
  position: relative;
}

.product-bottom-bar__icon--chat svg {
  width: 24px;
  height: 24px;
  display: block;
}

.product-bottom-bar__icon--chat::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 22px;
  border: 1px solid rgba(96,165,250,.20);
  animation: productChatPulse 2.2s infinite ease-out;
  pointer-events: none;
}

@keyframes productChatPulse {
  0% {
    transform: scale(.95);
    opacity: 0;
  }
  25% {
    opacity: .45;
  }
  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

@media (min-width: 1100px) {
  .product-bottom-bar {
    left: 50%;
    transform: translateX(-50%);
    width: min(860px, calc(100% - 32px));
    bottom: 18px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
  }
}

/* ========= CONTACT MODAL ========= */

.contact-modal[hidden] {
  display: none !important;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4,9,18,.62);
  backdrop-filter: blur(8px);
}

.contact-modal__dialog {
  position: absolute;
  left: 50%;
  bottom: calc(18px + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  width: min(420px, calc(100% - 24px));
  border-radius: 28px;
  padding: 22px;
  background:
    radial-gradient(circle at top left, rgba(59,130,246,.16), transparent 28%),
    linear-gradient(180deg, rgba(18,27,45,.98), rgba(10,18,34,.98));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 24px 60px rgba(0,0,0,.36);
}

.contact-modal__x {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.contact-modal__title {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 10px;
}

.contact-modal__text {
  color: #c7d5f2;
  line-height: 1.55;
  margin-bottom: 18px;
}

.contact-modal__buttons {
  display: grid;
  gap: 12px;
}

.contact-modal__btn {
  min-height: 62px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(0,0,0,.22);
  transition: transform .16s ease, filter .16s ease;
}

.contact-modal__btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  text-decoration: none;
}

.contact-modal__btn-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-modal__btn-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-modal__btn--tg {
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.20), transparent 28%),
    linear-gradient(135deg, #2ea5e5, #1f8ed5);
}

.contact-modal__btn--max {
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.20), transparent 28%),
    linear-gradient(135deg, #5ab2ff, #2f7df0);
}

body.contact-modal-open {
  overflow: hidden;
}

.product-bottom-bar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
}

.product-bottom-bar__icon svg {
  width: 22px;
  height: 22px;
  display: block;
  margin: 0;
  flex: 0 0 auto;
}

.product-bottom-bar__icon--chat svg {
  width: 24px;
  height: 24px;
}

.topup-calc__input-row {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.topup-calc__input-row input {
  flex: 1 1 auto;
}

.topup-calc__limit-note {
  margin-top: 12px;
  color: #b7c4e0;
  font-size: 14px;
}

.topup-calc__result {
  margin-top: 16px;
  border-radius: 18px;
  padding: 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
}

.topup-calc__result--loading {
  color: #dbe6ff;
}

.topup-calc__result--warn {
  background: rgba(245,158,11,.08);
  border-color: rgba(245,158,11,.20);
}

.topup-calc__result--error {
  background: rgba(239,68,68,.08);
  border-color: rgba(239,68,68,.20);
}

.topup-calc__result--success {
  background: rgba(34,197,94,.06);
  border-color: rgba(34,197,94,.18);
}

.calc-rich-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
}

.calc-rich-grid {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
}

.calc-rich-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.calc-rich-item:last-child {
  border-bottom: 0;
}

.calc-rich-label {
  color: #b7c4e0;
}

.calc-rich-value {
  font-weight: 800;
  text-align: right;
}

.calc-rich-note {
  color: #dbe6ff;
  line-height: 1.5;
}

.calc-rich-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.field-label {
  color: #d8e2f7;
  font-weight: 700;
}

/* ===== GRID ===== */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 900px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CARD ===== */
.trust-card {
  background: linear-gradient(180deg, #0f1a2b 0%, #0c1624 100%);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.trust-card__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #fff;
}

/* ===== REVIEWS BLOCK ===== */
.yandex-reviews-card {
  display: flex;
  flex-direction: column;
}

/* контейнер iframe */
.yandex-reviews-frame {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

/* сам iframe */
.yandex-reviews-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ссылка снизу */
.yandex-reviews-frame a {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: #8aa4c5;
  text-decoration: none;
  transition: color 0.2s ease;
}

.yandex-reviews-frame a:hover {
  color: #fff;
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
  .trust-card {
    padding: 16px;
  }

  .trust-card__title {
    font-size: 18px;
  }

  .yandex-reviews-frame {
    height: 360px;
  }
}

.yandex-reviews-frame {
  height: 800px;
}

@media (max-width: 600px) {
  .yandex-reviews-frame {
    height: 680px;
  }
}

.yandex-reviews-frame {
  position: relative;
  width: 100%;
  height: 800px;
  border-radius: 16px;
  overflow: hidden;

  /* ключевая магия */
  background: #fff;
  padding: 8px; /* создаёт "рамку" */
}

.yandex-reviews-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

.yandex-reviews-card {
  background: radial-gradient(
    1200px 400px at 0% 0%,
    rgba(255,255,255,0.04),
    transparent
  ),
  linear-gradient(180deg, #0f1a2b 0%, #0c1624 100%);
}

.hero-panel[data-topup-calculator] {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(34,197,94,.18), transparent 22%),
    radial-gradient(circle at top left, rgba(59,130,246,.16), transparent 28%),
    linear-gradient(180deg, rgba(15,23,42,.96), rgba(8,16,32,.98));
  border: 1px solid rgba(255,255,255,.09);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    0 24px 60px rgba(0,0,0,.32);
}

.hero-panel[data-topup-calculator]::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,.04), transparent 28%, transparent 72%, rgba(255,255,255,.03));
}

.hero-panel__title {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -.02em;
}

.hero-panel__box-text {
  color: #c1d2f3;
  font-size: 16px;
  line-height: 1.7;
}

.topup-calc__field {
  gap: 12px;
  margin-top: 18px;
}

.topup-calc__field span {
  display: block;
  color: #f3f7ff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.01em;
}

.topup-calc__input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  margin-top: 0;
}

.topup-calc__field input {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background:
    linear-gradient(180deg, rgba(7,15,30,.92), rgba(10,20,38,.96));
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.topup-calc__field input::placeholder {
  color: #7384a8;
  font-weight: 500;
}

.topup-calc__field input:focus {
  border-color: rgba(89, 155, 255, .6);
  box-shadow:
    0 0 0 4px rgba(59,130,246,.14),
    inset 0 1px 0 rgba(255,255,255,.04);
}

.hero-panel [data-topup-calc-btn] {
  min-width: 164px;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 16px;
  border: 1px solid rgba(96,165,250,.32);
  background:
    radial-gradient(circle at top center, rgba(255,255,255,.20), transparent 42%),
    linear-gradient(180deg, #4f95ff, #3478eb);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    0 14px 28px rgba(37,99,235,.28);
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}

.hero-panel [data-topup-calc-btn]:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.22),
    0 18px 36px rgba(37,99,235,.34);
}

.topup-calc__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}

.topup-chip {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background:
    linear-gradient(180deg, rgba(15,27,49,.96), rgba(10,19,35,.96));
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .01em;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.03),
    0 6px 18px rgba(0,0,0,.16);
  transition: transform .14s ease, border-color .14s ease, background .14s ease;
}

.topup-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(96,165,250,.45);
  background:
    radial-gradient(circle at top center, rgba(59,130,246,.14), transparent 60%),
    linear-gradient(180deg, rgba(17,31,56,.98), rgba(10,19,35,.98));
}

.topup-calc__limit-note {
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.07);
  color: #b9c8e6;
  font-size: 14px;
  line-height: 1.5;
}

.topup-calc__limit-note strong {
  color: #fff;
  font-weight: 800;
}

.topup-calc__result {
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}

.topup-calc__result--empty {
  color: #dbe6ff;
  font-size: 17px;
  line-height: 1.6;
}

.calc-rich-item {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.calc-rich-title {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.01em;
}

.calc-rich-label {
  color: #b8c7e5;
}

.calc-rich-value {
  color: #fff;
  font-weight: 800;
}

.calc-rich-note {
  color: #d7e4ff;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .topup-calc__input-row {
    grid-template-columns: 1fr;
  }

  .hero-panel [data-topup-calc-btn] {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .hero-panel__title {
    font-size: 22px;
  }

  .hero-panel__box-text {
    font-size: 15px;
    line-height: 1.6;
  }

  .topup-calc__field input {
    min-height: 52px;
    font-size: 17px;
  }

  .topup-chip {
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }

  .topup-calc__result {
    padding: 16px;
    border-radius: 18px;
  }
}

.home-hero__text {
  margin: 0 0 24px;
}

.home-hero__metrics {
  margin-top: 4px;
}

/* Убираем стрелки в Chrome, Safari, Edge */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.calc-rich-actions {
  margin-top: 18px;
}

/* делаем кнопку на всю ширину */
.calc-rich-actions .btn {
  display: block;
  width: 100%;
  text-align: center;

  min-height: 60px;
  font-size: 18px;
  border-radius: 18px;

  position: relative;
  overflow: hidden;

  border: 1px solid rgba(96,165,250,.35);

  background:
    radial-gradient(circle at 50% -20%, rgba(255,255,255,.25), transparent 60%),
    linear-gradient(180deg, #5ea2ff, #3b82f6);

  color: #fff;
  font-weight: 800;
  letter-spacing: .01em;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.25),
    0 16px 34px rgba(37,99,235,.35),
    0 6px 14px rgba(0,0,0,.25);

  transition:
    transform .16s ease,
    box-shadow .16s ease,
    filter .16s ease;
}

/* glow */
.calc-rich-actions .btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.35), transparent 60%);
  opacity: .6;
  pointer-events: none;
}

/* hover */
.calc-rich-actions .btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.28),
    0 20px 44px rgba(37,99,235,.45),
    0 8px 18px rgba(0,0,0,.28);
}

/* active */
.calc-rich-actions .btn:active {
  transform: translateY(0);
  box-shadow:
    inset 0 2px 6px rgba(0,0,0,.25),
    0 8px 18px rgba(37,99,235,.25);
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  color: #9fb3d9;
  font-size: 14px;
}

.breadcrumbs a {
  color: #8ab4ff;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(7, 13, 24, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
}

.logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo__glow {
  position: absolute;
  left: 8px;
  top: 50%;
  width: 60px;
  height: 60px;
  transform: translateY(-50%);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(59,130,246,.28) 0%, rgba(124,58,237,.18) 45%, rgba(124,58,237,0) 75%);
  filter: blur(12px);
  pointer-events: none;
}

.logo img {
  position: relative;
  z-index: 1;
  height: 45px;
  width: auto;
  display: block;
  transition: transform .2s ease, opacity .2s ease, filter .2s ease;
}

.logo:hover img {
  transform: scale(1.03);
  opacity: .96;
  filter: drop-shadow(0 0 10px rgba(59,130,246,.22));
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.nav a {
  color: #cfe0ff;
  text-decoration: none;
  font-weight: 600;
  transition: color .15s ease, opacity .15s ease;
}

.nav a:hover {
  color: #ffffff;
}

@media (max-width: 980px) {
  .site-header__inner {
    min-height: 64px;
  }

  .logo img {
    height: 40px;
  }

  .nav {
    gap: 14px;
  }

  .nav a {
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .site-header__inner {
    align-items: center;
    gap: 12px;
  }

  .logo__glow {
    width: 52px;
    height: 52px;
  }

  .nav {
    gap: 12px;
    justify-content: flex-end;
  }

  .nav a {
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .header-row {
    min-height: 64px;
    padding: 10px 0;
  }

  .nav {
    display: none;
  }

  .logo {
    font-size: 22px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .section h2 {
    font-size: 24px;
  }

  .game-grid {
    grid-template-columns: 1fr;
  }
}

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

.news-card {
  background: #111a2b;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  overflow: hidden;
}

.news-card__link {
  display: block;
  color: #fff;
  text-decoration: none;
}

.news-card__link:hover {
  text-decoration: none;
}

.news-card__media {
  aspect-ratio: 1.6 / 1;
  background: #0d1526;
  overflow: hidden;
}

.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-card__body {
  padding: 16px;
}

.news-card__date {
  font-size: 13px;
  color: #9fb3d9;
  margin-bottom: 10px;
}

.news-card__title {
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 12px;
}

.news-card__excerpt {
  color: #b7c4e0;
  line-height: 1.6;
  margin-bottom: 14px;
}

.news-card__more {
  color: #8ab4ff;
  font-weight: 700;
}

.news-hero-image img {
  width: 100%;
  display: block;
  border-radius: 22px;
}

.news-content {
  max-width: 900px;
}

@media (max-width: 980px) {
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.news-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 320px);
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 2px 2px 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.news-strip::-webkit-scrollbar {
  display: none;
}

.news-strip > * {
  scroll-snap-align: start;
}

.news-tile {
  background: #111a2b;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  overflow: hidden;
  min-width: 0;
}

.news-tile__link {
  display: block;
  color: #fff;
  text-decoration: none;
}

.news-tile__link:hover {
  text-decoration: none;
}

.news-tile__media {
  aspect-ratio: 1.65 / 1;
  background: #0d1526;
  overflow: hidden;
}

.news-tile__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.news-tile__body {
  padding: 16px;
}

.news-tile__date {
  font-size: 13px;
  color: #9fb3d9;
  margin-bottom: 10px;
}

.news-tile__title {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-tile__excerpt {
  color: #b7c4e0;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-tile__more {
  color: #8ab4ff;
  font-weight: 700;
  font-size: 14px;
}

@media (max-width: 980px) {
  .news-strip {
    grid-auto-columns: minmax(280px, 280px);
  }

  .news-tile__title {
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .news-strip {
    grid-auto-columns: minmax(240px, 240px);
  }

  .news-tile__body {
    padding: 14px;
  }

  .news-tile__title {
    font-size: 17px;
  }
}

.game-page {
  padding-bottom: 108px;
}

.game-page__top {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  padding: 36px 0 24px;
}

.game-page__media,
.game-page__info {
  min-width: 0;
}

.game-page__cover {
  position: relative;
}

.game-page__cover-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.game-page__cover-button img,
.game-page__cover img {
  width: 100%;
  display: block;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 24px 60px rgba(0,0,0,.34);
}

.game-page__zoom {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 14, 26, .78);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .18s ease, transform .18s ease, border-color .18s ease;
  pointer-events: none;
}

.game-page__zoom svg {
  width: 20px;
  height: 20px;
}

.game-page__cover-button:hover .game-page__zoom {
  opacity: 1;
  transform: translateY(0);
}

.game-page__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  color: #fff;
  font-weight: 800;
}

.product-badge__label {
  color: #b7c4e0;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.product-badge--cashback {
  background: linear-gradient(180deg, rgba(34,197,94,.18), rgba(34,197,94,.10));
  border-color: rgba(34,197,94,.28);
}

.product-badge--discount {
  background: linear-gradient(180deg, rgba(59,130,246,.18), rgba(99,102,241,.12));
  border-color: rgba(96,165,250,.28);
}

.game-page__info-card {
  padding: 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(59,130,246,.15), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 22px 54px rgba(0,0,0,.24);
}

.game-page__title,
.game-page__info h1 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.06;
  letter-spacing: -.03em;
  color: #fff;
  text-wrap: balance;
}

.game-page__price-row {
  margin-bottom: 20px;
}

.price-row--big .price-current {
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 1;
}

.price-old {
  font-size: clamp(18px, 2vw, 24px);
}

.meta-list--product {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
  margin: 0;
}

.meta-list--product li {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
}

.meta-list--product li strong {
  color: #92a4c7;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.meta-list--product li span {
  color: #edf2ff;
  font-size: 16px;
  line-height: 1.45;
}

.section-head--product {
  margin-bottom: 18px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(4, 8, 16, .82);
  backdrop-filter: blur(8px);
}

.lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  margin: 16px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__image {
  max-width: 100%;
  max-height: calc(100vh - 32px);
  display: block;
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(0,0,0,.45);
}

.lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(10, 16, 28, .82);
  color: #fff;
  cursor: pointer;
  z-index: 2;
}

.lightbox__close svg {
  width: 20px;
  height: 20px;
}

body.is-lightbox-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .game-page__top {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 24px;
  }

  .game-page__info-card {
    padding: 22px;
    border-radius: 24px;
  }

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

@media (max-width: 640px) {
  .game-page {
    padding-bottom: 102px;
  }

  .game-page__title,
  .game-page__info h1 {
    font-size: clamp(22px, 7vw, 30px);
    line-height: 1.12;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 14px;
  }

  .price-row--big .price-current {
    font-size: 42px;
  }

  .price-old {
    font-size: 18px;
  }

  .game-page__badges {
    gap: 10px;
  }

  .product-badge {
    width: 100%;
    justify-content: space-between;
    border-radius: 16px;
  }

  .meta-list--product {
    grid-template-columns: 1fr;
  }

  .meta-list--product li {
    padding: 13px 14px;
    border-radius: 16px;
  }

  .game-page__cover-button img,
  .game-page__cover img {
    border-radius: 22px;
  }

  .game-page__zoom {
    display: none !important;
  }
}

.game-page__top {
  grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.game-page__info-card {
  padding: 22px 24px;
  border-radius: 24px;
}

.game-page__cover {
  position: relative;
}

.game-page__cover-button img,
.game-page__cover img {
  border-radius: 22px;
}

.game-page__badges--overlay {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 64px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: flex-start;
  pointer-events: none;
}

.product-badge {
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  gap: 8px;
  font-size: 13px;
  line-height: 1;
  backdrop-filter: blur(10px);
  box-shadow:
    0 10px 24px rgba(0,0,0,.20),
    inset 0 1px 0 rgba(255,255,255,.05);
}

.product-badge__label {
  font-size: 11px;
  letter-spacing: .06em;
}

.product-badge strong {
  font-size: 13px;
  font-weight: 800;
}

.product-badge--cashback {
  background: rgba(8, 73, 52, .82);
  border-color: rgba(52, 211, 153, .28);
}

.product-badge--discount {
  background: rgba(29, 57, 124, .84);
  border-color: rgba(96, 165, 250, .26);
}

.game-page__title,
.game-page__info h1 {
  margin: 0 0 14px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.04;
  letter-spacing: -.025em;
  text-wrap: balance;
  max-width: 12ch;
}

.game-page__price-row {
  margin-bottom: 16px;
  gap: 12px;
}

.price-row--big .price-current {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.price-old {
  font-size: clamp(16px, 1.6vw, 22px);
}

.meta-list--product {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.meta-list--product li {
  padding: 10px 12px;
  border-radius: 16px;
  gap: 3px;
  min-height: auto;
}

.meta-list--product li strong {
  font-size: 10px;
  letter-spacing: .08em;
  color: #8fa6d3;
}

.meta-list--product li span {
  font-size: 14px;
  line-height: 1.35;
}

.game-page__zoom {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  right: 12px;
  bottom: 12px;
}

.game-page__zoom svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 980px) {
  .game-page__top {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .game-page__info-card {
    padding: 18px;
    border-radius: 20px;
  }

  .game-page__title,
  .game-page__info h1 {
    max-width: none;
    font-size: clamp(24px, 4.8vw, 32px);
    line-height: 1.08;
    margin-bottom: 12px;
  }

  .price-row--big .price-current {
    font-size: clamp(26px, 6vw, 38px);
  }

  .meta-list--product {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .meta-list--product li {
    padding: 9px 11px;
    border-radius: 14px;
  }

  .meta-list--product li span {
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .game-page__top {
    gap: 14px;
    padding-top: 16px;
  }

  .game-page__cover-button img,
  .game-page__cover img {
    border-radius: 18px;
  }

  .game-page__badges--overlay {
    top: 10px;
    left: 10px;
    right: 54px;
    gap: 6px;
  }

  .product-badge {
    width: auto;
    min-height: 30px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
  }

  .product-badge__label {
    font-size: 10px;
  }

  .product-badge strong {
    font-size: 12px;
  }

  .game-page__title,
  .game-page__info h1 {
    font-size: clamp(18px, 5.8vw, 26px);
    line-height: 1.12;
    margin-bottom: 10px;
    max-width: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-wrap: pretty;
  }

  .game-page__price-row {
    margin-bottom: 12px;
    gap: 10px;
  }

  .price-row--big .price-current {
    font-size: clamp(22px, 9vw, 32px);
  }

  .price-old {
    font-size: 15px;
  }

  .meta-list--product {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .meta-list--product li {
    padding: 8px 10px;
    border-radius: 12px;
    gap: 2px;
  }

  .meta-list--product li strong {
    font-size: 9px;
  }

  .meta-list--product li span {
    font-size: 12px;
    line-height: 1.25;
  }

  .game-page__zoom {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    right: 10px;
    bottom: 10px;
  }

  .game-page__zoom svg {
    width: 16px;
    height: 16px;
  }
}

.game-page__top {
  grid-template-columns: minmax(0, 460px) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.game-page__info-card {
  padding: 18px 20px;
  border-radius: 22px;
}

.game-page__cover-button img,
.game-page__cover img {
  border-radius: 20px;
}

.game-page__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1;
}

.product-badge__label {
  font-size: 11px;
  letter-spacing: .06em;
}

.product-badge strong {
  font-size: 14px;
}

.game-page__title,
.game-page__info h1 {
  margin: 0 0 12px;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.08;
  letter-spacing: -.02em;
  max-width: none;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  text-wrap: pretty;
}

.game-page__price-row {
  margin-bottom: 14px;
  gap: 10px;
}

.price-row--big .price-current {
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1;
}

.price-old {
  font-size: clamp(15px, 1.4vw, 20px);
}

.meta-list--product {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 10px;
  margin: 0;
}

.meta-list--product li {
  padding: 9px 12px;
  border-radius: 14px;
  gap: 2px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
}

.meta-list--product li strong {
  font-size: 10px;
  letter-spacing: .07em;
  color: #8ea3cf;
}

.meta-list--product li span {
  font-size: 13px;
  line-height: 1.25;
}

@media (min-width: 1200px) {
  .meta-list--product {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .game-page__top {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .game-page__info-card {
    padding: 16px;
    border-radius: 18px;
  }

  .game-page__title,
  .game-page__info h1 {
    max-width: none;
    font-size: clamp(22px, 4.5vw, 28px);
    line-height: 1.1;
  }

  .price-row--big .price-current {
    font-size: clamp(22px, 5.6vw, 30px);
  }

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

@media (max-width: 640px) {
  .game-page__top {
    gap: 14px;
    padding-top: 14px;
  }

  .game-page__cover-button img,
  .game-page__cover img {
    border-radius: 16px;
  }

  .game-page__badges {
    margin-top: 10px;
    gap: 8px;
  }

  .product-badge {
    width: auto;
    min-height: 38px;
    padding: 8px 13px;
    font-size: 13px;
  }

  .product-badge__label {
    font-size: 10px;
  }

  .product-badge strong {
    font-size: 13px;
  }

  .game-page__title,
  .game-page__info h1 {
    font-size: clamp(18px, 5.4vw, 24px);
    line-height: 1.12;
    margin-bottom: 8px;
    max-width: none;
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    -webkit-box-orient: initial;
    overflow: visible;
    word-break: keep-all;
    overflow-wrap: break-word;
    hyphens: none;
    text-wrap: pretty;
  }

  .game-page__price-row {
    margin-bottom: 10px;
  }

  .price-row--big .price-current {
    font-size: clamp(20px, 8vw, 28px);
  }

  .price-old {
    font-size: 14px;
  }

  .meta-list--product {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .meta-list--product li {
    padding: 8px 10px;
    border-radius: 12px;
  }

  .meta-list--product li strong {
    font-size: 9px;
  }

  .meta-list--product li span {
    font-size: 12px;
    line-height: 1.2;
  }
}

.game-page__top {
  grid-template-columns: minmax(0, 460px) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.game-page__info-card {
  padding: 18px 20px;
  border-radius: 22px;
}

.game-page__cover-button img,
.game-page__cover img {
  border-radius: 20px;
}

.game-page__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1;
}

.product-badge__label {
  font-size: 11px;
  letter-spacing: .06em;
}

.product-badge strong {
  font-size: 14px;
}

.game-page__title,
.game-page__info h1 {
  margin: 0 0 12px;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.08;
  letter-spacing: -.02em;
  max-width: none;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  text-wrap: pretty;
}

.game-page__price-row {
  margin-bottom: 14px;
  gap: 10px;
}

.price-row--big .price-current {
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1;
}

.price-old {
  font-size: clamp(15px, 1.4vw, 20px);
}

.meta-list--product {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 10px;
  margin: 0;
}

.meta-list--product li {
  padding: 9px 12px;
  border-radius: 14px;
  gap: 2px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
}

.meta-list--product li strong {
  font-size: 10px;
  letter-spacing: .07em;
  color: #8ea3cf;
}

.meta-list--product li span {
  font-size: 13px;
  line-height: 1.25;
}

@media (min-width: 1200px) {
  .meta-list--product {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .game-page__top {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .game-page__info-card {
    padding: 16px;
    border-radius: 18px;
  }

  .game-page__title,
  .game-page__info h1 {
    max-width: none;
    font-size: clamp(22px, 4.5vw, 28px);
    line-height: 1.1;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
    text-wrap: balance;
  }

  .price-row--big .price-current {
    font-size: clamp(22px, 5.6vw, 30px);
  }

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

@media (max-width: 640px) {
  .game-page__top {
    gap: 14px;
    padding-top: 14px;
  }

  .game-page__cover-button img,
  .game-page__cover img {
    border-radius: 16px;
  }

  .game-page__badges {
    margin-top: 10px;
    gap: 8px;
  }

  .product-badge {
    width: auto;
    min-height: 38px;
    padding: 8px 13px;
    font-size: 13px;
  }

  .product-badge__label {
    font-size: 10px;
  }

  .product-badge strong {
    font-size: 13px;
  }

  .game-page__title,
  .game-page__info h1 {
    font-size: clamp(18px, 5.4vw, 24px);
    line-height: 1.12;
    margin-bottom: 8px;
    max-width: none;
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    -webkit-box-orient: initial;
    overflow: visible;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
    text-wrap: balance;
  }

  .game-page__price-row {
    margin-bottom: 10px;
  }

  .price-row--big .price-current {
    font-size: clamp(20px, 8vw, 28px);
  }

  .price-old {
    font-size: 14px;
  }

  .meta-list--product {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .meta-list--product li {
    padding: 8px 10px;
    border-radius: 12px;
  }

  .meta-list--product li strong {
    font-size: 9px;
  }

  .meta-list--product li span {
    font-size: 12px;
    line-height: 1.2;
  }
}

.product-timer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 14px;
  padding: 9px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.035);
  color: #dbe6ff;
}

.product-timer__label {
  font-size: 13px;
  color: #9fb3d9;
  font-weight: 600;
}

.product-timer__value {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .01em;
}

.product-timer--discount {
  background: rgba(59,130,246,.08);
  border-color: rgba(96,165,250,.18);
}

.product-timer--release {
  background: rgba(168,85,247,.08);
  border-color: rgba(192,132,252,.18);
}

@media (max-width: 640px) {
  .product-timer {
    margin-bottom: 12px;
    padding: 8px 10px;
    border-radius: 12px;
    gap: 8px;
  }

  .product-timer__label {
    font-size: 12px;
  }

  .product-timer__value {
    font-size: 13px;
  }
}

/* ===== CATALOG PAGE ===== */

.catalog-hero {
  padding-top: 18px;
  padding-bottom: 8px;
}

.catalog-hero__inner {
  background:
    radial-gradient(circle at top left, rgba(59,130,246,.16), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.012));
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 24px;
  padding: 22px 24px;
  box-shadow: 0 14px 36px rgba(0,0,0,.18);
}

.catalog-hero__text {
  max-width: 760px;
  color: #b7c4e0;
  margin: 0;
  font-size: 15px;
}

.catalog-hero__stats {
  display: none !important;
}

.section--catalog-top {
  padding-top: 14px;
  padding-bottom: 10px;
}

.section--subscription-cta {
  padding-top: 12px;
  padding-bottom: 8px;
}

.subscription-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(34,197,94,.13), rgba(59,130,246,.10)),
    linear-gradient(180deg, rgba(10,22,45,.95), rgba(8,18,38,.95));
  border: 1px solid rgba(148, 199, 255, .16);
  box-shadow: 0 16px 38px rgba(0,0,0,.18);
}

.subscription-cta__copy {
  min-width: 0;
}

.subscription-cta__eyebrow {
  color: #78f2a6;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.subscription-cta h2 {
  margin: 0 0 8px;
  font-size: 25px;
  line-height: 1.18;
}

.subscription-cta p {
  max-width: 720px;
  margin: 0;
  color: #b7c4e0;
  line-height: 1.5;
}

.subscription-cta__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}

.subscription-cta-card {
  display: grid;
  gap: 8px;
  min-height: 122px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(7, 18, 39, .74);
  border: 1px solid rgba(255,255,255,.10);
  text-decoration: none;
  color: #fff;
}

.subscription-cta-card:hover {
  border-color: rgba(89,155,255,.48);
  text-decoration: none;
}

.subscription-cta-card__title {
  font-weight: 800;
  line-height: 1.2;
}

.subscription-cta-card__price {
  color: #78f2a6;
  font-size: 20px;
  font-weight: 900;
}

.subscription-cta-card__action {
  align-self: end;
  color: #9fc2ff;
  font-size: 14px;
  font-weight: 800;
}

.buy-account-hero__content {
  max-width: 920px;
}

.buy-account-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.buy-account-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 20px;
  align-items: start;
}

.buy-account-form-card {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
}

.buy-account-price {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(34,197,94,.10);
  border: 1px solid rgba(34,197,94,.22);
}

.buy-account-price span {
  color: #b7c4e0;
  font-weight: 800;
}

.buy-account-price strong {
  color: #78f2a6;
  font-size: 28px;
  font-weight: 900;
  white-space: nowrap;
}

.buy-account-trust {
  display: grid;
  gap: 8px;
}

.buy-account-trust span {
  padding: 9px 11px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: #cbd9f7;
  font-size: 13px;
  font-weight: 800;
}

.buy-account-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.buy-account-steps h2 {
  margin-top: 8px;
}

@media (max-width: 980px) {
  .buy-account-layout {
    grid-template-columns: 1fr;
  }

  .buy-account-form-card {
    position: static;
    width: 100%;
  }

  .buy-account-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .buy-account-hero {
    padding-top: 24px;
  }

  .buy-account-hero__content h1 {
    font-size: 30px;
    line-height: 1.12;
  }

  .buy-account-hero__actions,
  .buy-account-hero__actions .btn {
    width: 100%;
  }

  .buy-account-layout {
    gap: 14px;
  }

  .buy-account-copy .profile-card,
  .buy-account-form-card,
  .buy-account-steps .profile-card,
  #account-faq .profile-card {
    padding: 18px;
    border-radius: 18px;
  }

  .buy-account-form-card {
    gap: 14px;
  }

  .buy-account-price {
    align-items: center;
    padding: 12px 14px;
  }

  .buy-account-price strong {
    font-size: 24px;
  }
}

.catalog-toolbar {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(10,22,45,.94), rgba(8,18,38,.94));
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
  overflow: visible;
}

.catalog-toolbar__main {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.catalog-search--premium {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.catalog-search--premium input {
  width: 100%;
  min-width: 0;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, #09172f, #071227);
  color: #fff;
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.03),
    0 6px 20px rgba(0,0,0,.14);
}

.catalog-search--premium .btn,
.catalog-search--premium .btn--ghost {
  min-height: 54px;
  padding: 0 22px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.catalog-search--premium input:focus,
.catalog-filter-control:focus {
  border-color: rgba(59,130,246,.55);
  box-shadow:
    0 0 0 3px rgba(59,130,246,.12),
    0 8px 24px rgba(0,0,0,.18);
}

.catalog-filters {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-width: 0;
}

.catalog-filter-control {
  width: 100%;
  min-width: 0;
  min-height: 54px;
  padding: 0 18px;
  padding-right: 44px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, #09172f, #071227);
  color: #fff;
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.03),
    0 6px 20px rgba(0,0,0,.14);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(180deg, #09172f, #071227),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat, no-repeat;
  background-position: 0 0, right 16px center;
  background-size: auto, 14px;
}

.catalog-filter-control option {
  color: #eef4ff;
  background: #0b1730;
}

.catalog-filter-check {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  padding: 0 4px;
  color: #eef4ff;
  font-weight: 700;
}

.catalog-filter-check input {
  width: 18px;
  height: 18px;
  accent-color: #3b82f6;
}

.catalog-meta-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 14px;
}

.catalog-meta-row__text {
  color: #cfdcff;
  font-size: 14px;
}

.catalog-meta-row__text.muted {
  display: none !important;
}

.catalog-seo-blocks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

/* ===== CATALOG GRID / CARDS ===== */

.game-grid--catalog {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.game-card--compact .game-card__media {
  position: relative;
}

.game-card__badges {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: flex-start;
  pointer-events: none;
}

.game-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 20px rgba(0,0,0,.18);
  max-width: 100%;
}

.game-card__badge--hit {
  background: rgba(249, 115, 22, .88);
}

.game-card__badge--sale {
  background: rgba(220, 38, 38, .88);
}

.game-card__badge--lang {
  background: rgba(37, 99, 235, .88);
}

.game-card__badge--voice {
  background: linear-gradient(180deg, rgba(14,165,233,.92), rgba(2,132,199,.92));
}

.game-card__badge--preorder {
  background: linear-gradient(180deg, rgba(168,85,247,.92), rgba(126,34,206,.92));
}

.game-card__badge--new {
  background: linear-gradient(180deg, rgba(16,185,129,.92), rgba(5,150,105,.92));
}

.game-card__badge--free {
  background: linear-gradient(180deg, rgba(74,222,128,.94), rgba(22,163,74,.94));
  color: #04130a;
}

.game-card__badge--announce {
  background: linear-gradient(180deg, rgba(96,165,250,.94), rgba(37,99,235,.94));
}

.price-current--free {
  color: #72f2a7;
}

.price-current--announce {
  color: #9fc0ff;
}

.price-current--muted {
  color: #9ca9c3;
  font-size: 14px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1180px) {
  .catalog-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-filter-check {
    min-height: 44px;
  }
}

@media (max-width: 1100px) {
  .game-grid--catalog {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .subscription-cta {
    grid-template-columns: 1fr;
  }

  .catalog-search--premium {
    grid-template-columns: 1fr;
  }

  .catalog-filters {
    grid-template-columns: 1fr 1fr;
  }

  .game-grid--catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .catalog-seo-blocks {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .catalog-hero__inner,
  .catalog-toolbar,
  .subscription-cta {
    padding: 16px;
    border-radius: 20px;
  }

  .subscription-cta h2 {
    font-size: 21px;
  }

  .catalog-meta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .catalog-filters {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .catalog-filter-control,
  .catalog-search--premium input,
  .catalog-search--premium .btn,
  .catalog-search--premium .btn--ghost {
    min-height: 48px;
    border-radius: 16px;
  }

  .game-grid--catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .game-grid--catalog .game-card--compact .game-card__body {
    padding: 10px 10px 12px;
  }

  .game-grid--catalog .game-card--compact .game-card__title {
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 6px;
  }

  .game-grid--catalog .game-card--compact .game-card__meta {
    font-size: 12px;
    margin-bottom: 8px;
    min-height: auto;
  }

  .game-grid--catalog .game-card--compact .price-current {
    font-size: 15px;
  }

  .game-grid--catalog .game-card--compact .price-old {
    font-size: 12px;
  }

  .game-card__badges {
    top: 8px;
    left: 8px;
    right: 8px;
    gap: 6px;
  }

  .game-card__badge {
    min-height: 22px;
    padding: 0 8px;
    font-size: 10px;
  }
}

/* ===== GLOBAL HEADER SEARCH ===== */

.header-search {
  position: relative;
  flex: 1 1 420px;
  max-width: 520px;
  margin: 0 20px;
}

.header-search__box {
  position: relative;
}

.header-search__input {
  width: 100%;
  min-height: 48px;
  padding: 0 52px 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, #0d1830, #091225);
  color: #fff;
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.03),
    0 8px 24px rgba(0,0,0,.14);
}

.header-search__input:focus {
  border-color: rgba(59,130,246,.55);
  box-shadow:
    0 0 0 3px rgba(59,130,246,.12),
    0 8px 24px rgba(0,0,0,.18);
}

.header-search__submit {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 38px;
  height: 38px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #cfe0ff;
  cursor: pointer;
}

.header-search__submit svg {
  width: 20px;
  height: 20px;
}

.header-search__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 50;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(9, 17, 31, 0.98);
  box-shadow: 0 18px 42px rgba(0,0,0,.32);
  backdrop-filter: blur(10px);
}

.header-search__results {
  display: grid;
  gap: 6px;
}

.header-search__item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 8px;
  border-radius: 14px;
  color: #fff;
  text-decoration: none;
}

.header-search__item:hover {
  text-decoration: none;
  background: rgba(255,255,255,.04);
}

.header-search__thumb {
  width: 54px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  background: #0f1728;
  display: block;
}

.header-search__thumb img,
.header-search__thumb-placeholder {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.header-search__item-body {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.header-search__item-title {
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.header-search__item-meta {
  color: #aab8d4;
  font-size: 13px;
}

.header-search__item-price {
  white-space: nowrap;
  font-weight: 800;
  color: #fff;
  font-size: 14px;
}

.header-search__all {
  display: block;
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  color: #d7e5ff;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.header-search__all:hover {
  text-decoration: none;
  color: #fff;
}

.header-search__empty {
  padding: 10px 12px;
  color: #b7c4e0;
}

.mobile-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(7, 12, 22, 0.92);
  backdrop-filter: blur(10px);
  padding: 16px;
}

.mobile-search-overlay__panel {
  max-width: 720px;
  margin: 0 auto;
  padding-top: 10px;
}

.mobile-search-overlay__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  margin-bottom: 12px;
}

.mobile-search-overlay__input {
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, #0d1830, #091225);
  color: #fff;
  outline: none;
}

.mobile-search-overlay__close {
  min-width: 52px;
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: #111a2b;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.mobile-search-overlay__results {
  display: block;
}

body.is-mobile-search-open {
  overflow: hidden;
}

@media (max-width: 1180px) {
  .header-search {
    max-width: 420px;
    margin: 0 14px;
  }
}

@media (max-width: 980px) {
  .header-search--desktop {
    display: none;
  }

  .header-row {
    gap: 12px;
  }

  .nav {
    gap: 8px;
  }

}

@media (max-width: 640px) {
  .mobile-tabbar {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .mobile-tabbar__label {
    font-size: 11px;
  }

  .mobile-tabbar__icon {
    margin-bottom: 4px;
  }
}

/* ===== PREMIUM NAV ICONS ===== */

.nav--icons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.region-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  width: 92px;
  min-height: 42px;
  padding: 4px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(148,163,184,.20);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 12px 30px rgba(0,0,0,.20);
}

.region-switch__option {
  min-width: 0;
  min-height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-decoration: none;
  transition: color .16s ease, background .16s ease, box-shadow .16s ease;
}

.region-switch__option:hover {
  color: #fff;
  text-decoration: none;
}

.region-switch__option.is-active {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255,255,255,.20), rgba(255,255,255,0) 36%),
    linear-gradient(135deg, #3b82f6 0%, #7c3aed 100%);
  box-shadow:
    0 8px 18px rgba(59,130,246,.28),
    inset 0 1px 0 rgba(255,255,255,.22);
}

.nav-pill {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    0 10px 26px rgba(0,0,0,.18);
  transition:
    transform .16s ease,
    border-color .16s ease,
    background .16s ease,
    box-shadow .16s ease;
}

.nav-pill:hover {
  text-decoration: none;
  color: #fff;
  border-color: rgba(86,152,255,.45);
  background:
    radial-gradient(circle at top center, rgba(59,130,246,.20), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 14px 30px rgba(0,0,0,.24);
}

.nav-icon {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d7e5ff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 10px 24px rgba(0,0,0,.16);
  transition:
    transform .16s ease,
    border-color .16s ease,
    background .16s ease,
    color .16s ease,
    box-shadow .16s ease;
}

.nav-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.nav-icon:hover {
  text-decoration: none;
  color: #fff;
  border-color: rgba(59,130,246,.40);
  background:
    radial-gradient(circle at top center, rgba(59,130,246,.18), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 14px 28px rgba(0,0,0,.22);
}

.nav-icon__badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #3b82f6;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  border: 2px solid #07111f;
  box-shadow: 0 6px 16px rgba(59,130,246,.35);
}

.nav-icon[data-tooltip] {
  position: relative;
}

.nav-icon[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(4px);
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(7, 13, 24, .96);
  border: 1px solid rgba(255,255,255,.08);
  color: #eef4ff;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: .14s ease;
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
}

.nav-icon[data-tooltip]:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* прячем иконки в хедере на мобильных — там уже есть нижнее меню */
@media (max-width: 980px) {
  /* скрываем только лишнее */
  .nav--icons .nav-icon--favorite,
  .nav--icons .nav-icon--cart {
    display: none;
  }

  /* каталог и профиль оставляем */
  .nav--icons .nav-pill {
    display: none;
  }

  /* уменьшаем размер кнопок */
  .nav-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .nav-icon svg {
    width: 20px;
    height: 20px;
  }

  .header-row {
    gap: 10px;
  }

  .nav--icons {
    gap: 10px;
  }

  .region-switch {
    width: 82px;
    min-height: 40px;
  }

  .region-switch__option {
    min-height: 32px;
    font-size: 11px;
  }

  .nav-pill {
    min-height: 50px;
    padding: 0 20px;
    font-size: 15px;
  }
}

@media (max-width: 640px) {
    /* скрываем только лишнее */
  .nav--icons .nav-icon--favorite,
  .nav--icons .nav-icon--cart {
    display: none;
  }

  /* каталог и профиль оставляем */
  .nav--icons .nav-pill {
    display: none;
  }

  /* уменьшаем размер кнопок */
  .nav-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .nav-icon svg {
    width: 20px;
    height: 20px;
  }

  .header-row {
    gap: 10px;
  }

  .nav-pill {
    min-height: 48px;
    padding: 0 18px;
    font-size: 14px;
  }
}

@media (max-width: 980px) {
  .mobile-tabbar {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: 100%;
  }

  .mobile-tabbar__item {
    width: 100%;
  }

}


@media (min-width: 981px) {
  .nav-icon--catalog {
    display: none;
  }
}

/* ===== MOBILE HEADER / TABBAR PREMIUM HOTFIX ===== */

/* desktop: текстовый каталог, иконка каталога скрыта */
.nav-icon--catalog {
  display: none;
}

/* mobile tabbar always full width */
.mobile-tabbar {
  width: 100%;
}

.mobile-tabbar__item {
  width: 100%;
}

/* tablet + mobile */
@media (max-width: 980px) {
  .header-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    min-height: 74px;
  }

  .header-search--desktop {
    display: none !important;
  }

  .nav--icons {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  /* убираем текстовый каталог в мобильной версии */
  .nav--icons .nav-pill {
    display: none !important;
  }

  /* по умолчанию прячем лишние иконки в шапке */
  .nav--icons .nav-icon {
    display: none !important;
  }

  /* но каталог и профиль оставляем */
  .nav--icons .nav-icon--catalog,
  .nav--icons .nav-icon--profile {
    display: inline-flex !important;
  }

  .nav-icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
  }

  .nav-icon svg {
    width: 20px;
    height: 20px;
  }

  .nav-icon[data-tooltip]::after {
    display: none;
  }

  /* нижнее меню на 5 колонок */
  .mobile-tabbar {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

/* phone */
@media (max-width: 640px) {
  .site-header .logo img {
    height: 40px;
    width: auto;
  }

  .header-row {
    gap: 8px;
    min-height: 70px;
  }

  .nav--icons {
    gap: 8px;
  }

  .nav-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .nav-icon svg {
    width: 19px;
    height: 19px;
  }

  .mobile-tabbar {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .mobile-tabbar__item {
    min-width: 0;
  }

  .mobile-tabbar__label {
    font-size: 11px;
  }

  .mobile-tabbar__icon {
    margin-bottom: 4px;
  }
}

/* ===== PREMIUM PROFILE POPOVER ===== */

.nav-profile-popover {
  position: relative;
}

.nav-profile-popover__toggle {
  cursor: pointer;
}

.nav-profile-popover__menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 240px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(9,17,31,.98);
  box-shadow: 0 18px 42px rgba(0,0,0,.32);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: .16s ease;
  z-index: 60;
}

.nav-profile-popover:hover .nav-profile-popover__menu,
.nav-profile-popover:focus-within .nav-profile-popover__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-profile-popover__head {
  padding: 10px 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 6px;
}

.nav-profile-popover__email {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  word-break: break-word;
}

.nav-profile-popover__cashback {
  margin-top: 4px;
  color: #9fd0ff;
  font-size: 13px;
  font-weight: 700;
}

.nav-profile-popover__link {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: #eaf2ff;
  text-decoration: none;
  font-weight: 700;
}

.nav-profile-popover__link:hover {
  text-decoration: none;
  color: #fff;
  background: rgba(255,255,255,.05);
}

.nav-profile-popover__link--danger {
  color: #ffb4b4;
}

/* ===== MOBILE HEADER / TABBAR PREMIUM ===== */

.nav-icon--catalog {
  display: none;
}

.mobile-tabbar__icon {
  position: relative;
}

.mobile-tabbar__badge {
  position: absolute;
  top: -5px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #3b82f6;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  border: 2px solid #07111f;
  box-shadow: 0 6px 16px rgba(59,130,246,.35);
}

@media (max-width: 980px) {
  .header-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    min-height: 74px;
  }

  .header-search--desktop {
    display: none !important;
  }

  .nav--icons {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .nav--icons .nav-pill,
  .nav--icons .nav-icon--favorite,
  .nav--icons .nav-icon--cart,
  .nav-profile-popover__menu {
    display: none !important;
  }

  .nav-icon--catalog,
  .nav-profile-popover__toggle {
    display: inline-flex !important;
  }

  .nav-icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
  }

  .nav-icon svg {
    width: 20px;
    height: 20px;
  }

  .nav-icon[data-tooltip]::after {
    display: none !important;
  }

  .mobile-tabbar {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: 100%;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    background:
      linear-gradient(180deg, rgba(7,13,24,.96), rgba(7,13,24,.98));
    border-top: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(16px);
    box-shadow: 0 -10px 32px rgba(0,0,0,.24);
  }

  .mobile-tabbar__item {
    width: 100%;
    min-width: 0;
    min-height: 64px;
    padding: 10px 4px 8px;
    border-radius: 0;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: #9fb2d8;
    text-decoration: none;
    position: relative;
    transition: .16s ease;
  }

  .mobile-tabbar__item:hover {
    text-decoration: none;
    color: #fff;
  }

  .mobile-tabbar__item.is-active {
    color: #fff;
  }

  .mobile-tabbar__item.is-active::before {
    content: "";
    position: absolute;
    inset: 6px 6px 4px;
    border-radius: 18px;
    background:
      radial-gradient(circle at top center, rgba(59,130,246,.22), transparent 65%),
      linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
    border: 1px solid rgba(255,255,255,.08);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.05),
      0 10px 24px rgba(0,0,0,.18);
    z-index: 0;
  }

  .mobile-tabbar__item > * {
    position: relative;
    z-index: 1;
  }

  .mobile-tabbar__icon {
    margin-bottom: 2px;
  }

  .mobile-tabbar__icon svg {
    width: 22px;
    height: 22px;
    display: block;
  }

  .mobile-tabbar__label {
    font-size: 11px;
    font-weight: 700;
    line-height: 1.1;
  }
}

@media (max-width: 640px) {
  .site-header .logo img {
    height: 40px;
    width: auto;
  }

  .header-row {
    gap: 8px;
    min-height: 70px;
  }

  .nav--icons {
    gap: 8px;
  }

  .nav-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .nav-icon svg {
    width: 19px;
    height: 19px;
  }

  .mobile-tabbar__item {
    min-height: 62px;
  }

  .mobile-tabbar__label {
    font-size: 10px;
  }

  .mobile-tabbar__badge {
    top: -4px;
    right: -7px;
  }
}

/* УБИВАЕМ внешний прямоугольник */
.mobile-tabbar__item.is-active {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* если вдруг есть hover/active от браузера */
.mobile-tabbar__item:active,
.mobile-tabbar__item:focus {
  background: transparent !important;
  outline: none;
}

/* убираем серый highlight на мобилках (очень важно) */
.mobile-tabbar__item {
  -webkit-tap-highlight-color: transparent;
}

.game-card__sub-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.game-card__sub-badge,
.product-membership-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  color: #fff;
}

.product-membership-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 4px;
}

.product-membership-badge {
  min-height: 30px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, opacity .18s ease;
}

.product-membership-badge:hover {
  transform: translateY(-1px);
  opacity: .96;
  text-decoration: none;
  color: #fff;
}

.game-card__sub-badge--essential,
.product-membership-badge--essential {
  background: rgba(255, 214, 10, .12);
  border-color: rgba(255, 214, 10, .30);
}

.game-card__sub-badge--extra,
.product-membership-badge--extra {
  background: rgba(255, 184, 0, .14);
  border-color: rgba(255, 184, 0, .30);
}

.game-card__sub-badge--deluxe,
.product-membership-badge--deluxe {
  background: rgba(155, 111, 255, .14);
  border-color: rgba(155, 111, 255, .30);
}

.game-card__sub-badge--ea,
.product-membership-badge--ea {
  background: rgba(67, 190, 255, .14);
  border-color: rgba(67, 190, 255, .30);
}

.game-card__sub-badge--ubi,
.product-membership-badge--ubi {
  background: rgba(122, 162, 255, .14);
  border-color: rgba(122, 162, 255, .30);
}

.game-card__sub-badge--gta,
.product-membership-badge--gta {
  background: rgba(74, 222, 128, .14);
  border-color: rgba(74, 222, 128, .30);
}

.game-card__membership {
  margin-top: 10px;
  display: grid;
  gap: 6px;
}

.game-card__membership-label {
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  color: #9fb2d7;
}

.game-card__sub-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.game-card__sub-badge,
.product-membership-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  color: #fff;
}

.product-membership {
  margin: 14px 0 4px;
  display: grid;
  gap: 8px;
}

.product-membership__label {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  color: #cbd9f7;
}

.product-membership-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-membership-badge {
  min-height: 30px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, opacity .18s ease, border-color .18s ease;
}

.product-membership-badge:hover {
  transform: translateY(-1px);
  opacity: .96;
  text-decoration: none;
  color: #fff;
}

.game-card__sub-badge--essential,
.product-membership-badge--essential {
  background: rgba(255, 214, 10, .12);
  border-color: rgba(255, 214, 10, .30);
}

.game-card__sub-badge--extra,
.product-membership-badge--extra {
  background: rgba(255, 184, 0, .14);
  border-color: rgba(255, 184, 0, .30);
}

.game-card__sub-badge--deluxe,
.product-membership-badge--deluxe {
  background: rgba(155, 111, 255, .14);
  border-color: rgba(155, 111, 255, .30);
}

.game-card__sub-badge--ea,
.product-membership-badge--ea {
  background: rgba(67, 190, 255, .14);
  border-color: rgba(67, 190, 255, .30);
}

.game-card__sub-badge--ubi,
.product-membership-badge--ubi {
  background: rgba(122, 162, 255, .14);
  border-color: rgba(122, 162, 255, .30);
}

.game-card__sub-badge--gta,
.product-membership-badge--gta {
  background: rgba(74, 222, 128, .14);
  border-color: rgba(74, 222, 128, .30);
}

.product-variants {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
}

.product-buy-panel {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(15,23,42,.72);
  border: 1px solid rgba(148,163,184,.18);
}

.product-buy-panel__primary {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 64px;
  padding: 18px 24px;
  border-radius: 16px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,.22), rgba(255,255,255,0) 34%),
    linear-gradient(135deg, #6ea8ff 0%, #3b82f6 44%, #2563eb 100%);
  color: #fff;
  font-size: 19px;
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
  text-shadow: 0 1px 0 rgba(15, 23, 42, .28);
  box-shadow:
    0 18px 42px rgba(37,99,235,.36),
    inset 0 1px 0 rgba(255,255,255,.22),
    inset 0 -1px 0 rgba(15,23,42,.18);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.product-buy-panel__primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.24) 42%, transparent 64%);
  transform: translateX(-115%);
  transition: transform .55s ease;
}

.product-buy-panel__primary:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  filter: saturate(1.06);
  box-shadow:
    0 22px 52px rgba(37,99,235,.46),
    inset 0 1px 0 rgba(255,255,255,.26),
    inset 0 -1px 0 rgba(15,23,42,.18);
}

.product-buy-panel__primary:hover::before {
  transform: translateX(115%);
}

.product-buy-panel__primary:active {
  transform: translateY(0);
  box-shadow:
    0 12px 28px rgba(37,99,235,.32),
    inset 0 2px 8px rgba(15,23,42,.18);
}

.product-buy-panel__manager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 50px;
  padding: 12px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,90,48,.22), rgba(251,146,60,.14));
  border: 1px solid rgba(251,146,60,.32);
  color: #fff;
  text-decoration: none;
}

.product-buy-panel__manager:hover {
  text-decoration: none;
  border-color: rgba(251,146,60,.54);
}

.product-buy-panel__manager span {
  font-weight: 900;
}

.product-buy-panel__manager strong {
  white-space: nowrap;
}

.product-buy-panel__note {
  color: #aebedf;
  font-size: 13px;
  line-height: 1.45;
}

.regional-price-hint {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 14px;
  padding: 13px 15px;
  border-radius: 14px;
  color: #eaf4ff;
  text-decoration: none;
  background:
    linear-gradient(135deg, rgba(16,185,129,.20), rgba(59,130,246,.12)),
    rgba(15,23,42,.74);
  border: 1px solid rgba(52,211,153,.28);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 16px 34px rgba(2,6,23,.24);
}

.regional-price-hint:hover {
  color: #fff;
  text-decoration: none;
  border-color: rgba(52,211,153,.48);
}

.regional-price-hint span {
  min-width: 0;
  color: #bfe9dd;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.regional-price-hint strong {
  white-space: nowrap;
  color: #fff;
  font-size: 18px;
  font-weight: 950;
}

.product-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 18px;
}

.product-trust-row div {
  min-width: 0;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.07);
}

.product-trust-row strong,
.product-trust-row span {
  display: block;
}

.product-trust-row strong {
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
}

.product-trust-row span {
  color: #9fb0d0;
  font-size: 12px;
  line-height: 1.35;
  margin-top: 3px;
}

.product-variants__title {
  color: #92a4c7;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-variants__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-variant {
  display: inline-grid;
  min-height: 48px;
  min-width: 112px;
  align-content: center;
  gap: 3px;
  padding: 9px 14px;
  border: 1px solid rgba(148,163,184,.28);
  border-radius: 8px;
  background: rgba(15,23,42,.72);
  color: #edf2ff;
  text-decoration: none;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.product-variant:hover {
  transform: translateY(-1px);
  border-color: rgba(96,165,250,.62);
  background: rgba(30,41,59,.9);
}

.product-variant.is-active {
  border-color: rgba(59,130,246,.95);
  background: rgba(37,99,235,.22);
  box-shadow: inset 0 0 0 1px rgba(96,165,250,.28);
}

.product-variant__label {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.product-variant__price {
  color: #bfdbfe;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

@media (max-width: 560px) {
  .product-variants__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-variant {
    min-width: 0;
  }

  .product-trust-row {
    grid-template-columns: 1fr;
  }

  .product-buy-panel__manager {
    align-items: flex-start;
    flex-direction: column;
  }
}

.product-gallery-section {
  padding-top: 18px;
  padding-bottom: 8px;
}

.product-included-games__details {
  display: grid;
  gap: 16px;
}

.product-included-games__details > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(15,23,42,.92), rgba(9,16,31,.92));
  border: 1px solid rgba(148,163,184,.22);
  color: #fff;
  cursor: pointer;
  list-style: none;
}

.product-included-games__details > summary::-webkit-details-marker {
  display: none;
}

.product-included-games__details > summary span {
  font-size: 20px;
  font-weight: 900;
}

.product-included-games__details > summary strong {
  color: #9fc2ff;
  font-size: 14px;
  white-space: nowrap;
}

.product-status-panel {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 18px;
  border: 1px solid rgba(118, 139, 180, .32);
  border-radius: 18px;
  background: rgba(13, 24, 42, .78);
}

.product-status-panel strong {
  color: #fff;
  font-size: 20px;
}

.product-status-panel span {
  color: #b9c5dd;
  line-height: 1.55;
}

.product-status-panel .btn {
  width: fit-content;
  min-width: 220px;
  justify-content: center;
}

.product-status-panel--free {
  border-color: rgba(70, 224, 143, .35);
  background: linear-gradient(135deg, rgba(16, 65, 54, .78), rgba(13, 24, 42, .88));
}

.product-status-panel--announce {
  border-color: rgba(91, 142, 255, .42);
  background: linear-gradient(135deg, rgba(24, 48, 93, .78), rgba(13, 24, 42, .88));
}

@media (max-width: 640px) {
  .product-status-panel .btn {
    width: 100%;
  }
}

.product-gallery-carousel {
  position: relative;
}

.product-gallery-track {
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: minmax(420px, 420px);
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 2px 10px;
  scroll-behavior: auto;
  scroll-snap-type: none;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.product-gallery-track::-webkit-scrollbar {
  display: none;
}

.product-gallery-track.dragging {
  cursor: grabbing;
  user-select: none;
}

.product-gallery-track a,
.product-gallery-track img,
.product-gallery-track button {
  -webkit-user-drag: none;
  user-select: none;
}

.product-gallery-slide {
  position: relative;
  display: block;
  border: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255,255,255,.04);
  cursor: pointer;
}

.product-gallery-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.product-video-section {
  display: none;
}

.product-video-card {
  display: grid;
  gap: 12px;
}

.product-video-card__title {
  margin: 0;
  font-size: 22px;
}

.product-video-card__media video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  background: #060b14;
  object-fit: cover;
}

.breadcrumbs--product {
  margin-top: 4px;
}

@media (max-width: 980px) {
  .product-gallery-track {
    grid-auto-columns: minmax(320px, 320px);
  }
}

@media (max-width: 640px) {
  .product-membership-badge {
    font-size: 11px;
    min-height: 28px;
    padding: 6px 10px;
  }

  .product-gallery-section {
    padding-top: 14px;
    padding-bottom: 4px;
  }

  .product-gallery-track {
    grid-auto-columns: minmax(84vw, 84vw);
    gap: 12px;
  }

  .product-gallery-slide {
    border-radius: 18px;
  }

  .product-video-section {
    display: block;
    width: calc(100vw - 32px);
    margin-left: 50%;
    transform: translateX(-50%);
    padding-top: 14px;
    padding-bottom: 4px;
  }

  .product-video-card {
    padding: 0;
    border-radius: 0;
  }

  .product-video-card__media {
    width: 100%;
  }

  .product-video-card__media video {
    border-radius: 18px;
  }

  .game-card__membership-label,
  .product-membership__label {
    font-size: 12px;
  }
}

.game-card__media {
  position: relative;
  overflow: hidden;
}

.game-card__sub-badges-overlay {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  z-index: 3;
  pointer-events: none;
}

.game-card__sub-badges-overlay::before {
  content: "";
  position: absolute;
  inset: -8px;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 12, 22, 0.72) 100%);
  border-radius: 16px;
  z-index: -1;
}

.game-card__sub-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 18px rgba(0,0,0,.22);
}

.game-card__sub-badge--essential {
  background: rgba(255, 214, 10, .22);
  border-color: rgba(255, 214, 10, .34);
}

.game-card__sub-badge--extra {
  background: rgba(255, 184, 0, .22);
  border-color: rgba(255, 184, 0, .34);
}

.game-card__sub-badge--deluxe {
  background: rgba(155, 111, 255, .22);
  border-color: rgba(155, 111, 255, .34);
}

.game-card__sub-badge--ea {
  background: rgba(67, 190, 255, .22);
  border-color: rgba(67, 190, 255, .34);
}

.game-card__sub-badge--ubi {
  background: rgba(122, 162, 255, .22);
  border-color: rgba(122, 162, 255, .34);
}

.game-card__sub-badge--gta {
  background: rgba(74, 222, 128, .22);
  border-color: rgba(74, 222, 128, .34);
}

@media (max-width: 640px) {
  .game-card__sub-badges-overlay {
    left: 8px;
    right: 8px;
    bottom: 8px;
    gap: 5px;
  }

  .game-card__sub-badge {
    min-height: 20px;
    padding: 3px 7px;
    font-size: 9px;
  }
}

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

.bot-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(59,130,246,.16), transparent 30%),
    linear-gradient(180deg, #111a2b, #0f1728);
  border: 1px solid rgba(255,255,255,.08);
  color: #fff;
  text-decoration: none;
}

.bot-card:hover {
  text-decoration: none;
  border-color: rgba(59,130,246,.35);
}

.bot-card__icon {
  flex: 0 0 auto;
  min-width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.bot-card__title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.bot-card__text {
  color: #b7c4e0;
  line-height: 1.6;
  margin-bottom: 10px;
}

.bot-card__meta {
  color: #8ab4ff;
  font-weight: 700;
}

@media (max-width: 800px) {
  .bots-grid {
    grid-template-columns: 1fr;
  }

  .bot-card {
    padding: 18px;
    border-radius: 20px;
  }

  .bot-card__title {
    font-size: 20px;
  }
}

.bot-card--has-qr {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr 112px;
  align-items: center;
  gap: 18px;
}

.bot-card--has-qr .bot-card__body {
  min-width: 0;
}

.bot-card__qr-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bot-card__qr-link {
  display: block;
  width: 96px;
  height: 96px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  flex-shrink: 0;
}

.bot-card__qr-link:hover {
  transform: scale(1.03);
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
}

.bot-card__qr {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 900px) {
  .bot-card--has-qr {
    grid-template-columns: auto 1fr;
    align-items: start;
  }

  .bot-card__qr-wrap {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-left: 72px;
    margin-top: 4px;
  }

  .bot-card__qr-link {
    width: 84px;
    height: 84px;
  }
}

@media (max-width: 560px) {
  .bot-card__qr-wrap {
    padding-left: 0;
  }
}

.bot-card--qr {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 96px;
  align-items: center;
  gap: 18px;
  padding: 20px;
  overflow: hidden;
}

.bot-card--qr .bot-card__icon,
.bot-card--qr .bot-card__body,
.bot-card--qr .bot-card__qr-link {
  position: relative;
  z-index: 2;
}

.bot-card__main-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.bot-card--qr .bot-card__body {
  min-width: 0;
}

.bot-card__qr-link {
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.bot-card__qr-link:hover {
  transform: scale(1.03);
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
}

.bot-card__qr {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

@media (max-width: 900px) {
  .bot-card--qr {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .bot-card--qr .bot-card__qr-link {
    grid-column: 2;
    justify-self: start;
    margin-top: 8px;
    width: 84px;
    height: 84px;
  }
}

@media (max-width: 560px) {
  .bot-card--qr {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
  }

  .bot-card--qr .bot-card__qr-link {
    width: 76px;
    height: 76px;
  }
}

.bot-card--qr {
  grid-template-columns: 72px minmax(0, 1fr) 140px;
}

.bot-card__qr-link {
  width: 120px;
  height: 120px;
}

@media (min-width: 1200px) {
  .bot-card__qr-link {
    width: 140px;
    height: 140px;
  }
}

/* === QR версия карточек === */

.bot-card--qr {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 140px;
  align-items: center;
  gap: 18px;
  padding: 20px;
  overflow: hidden;
}

.bot-card--qr .bot-card__icon,
.bot-card--qr .bot-card__body,
.bot-card--qr .bot-card__qr-link {
  position: relative;
  z-index: 2;
}

.bot-card__main-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

/* QR */

.bot-card__qr-link {
  width: 120px;
  height: 120px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.bot-card__qr-link:hover {
  transform: scale(1.03);
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
}

.bot-card__qr {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* КНОПКА (мобилка) */

.bot-card__actions {
  display: none;
  margin-top: 12px;
}

.bot-btn {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #5f7cff, #7a5cff);
  transition: transform .15s ease, box-shadow .15s ease;
}

.bot-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(90,120,255,0.3);
}

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

@media (max-width: 900px) {
  .bot-card--qr {
    grid-template-columns: 60px minmax(0, 1fr);
  }

  .bot-card__qr-link {
    display: none;
  }

  .bot-card__actions {
    display: block;
  }
}

@media (max-width: 560px) {
  .bot-card--qr {
    padding: 16px;
    gap: 14px;
  }
}

.section--auctions,
.section--auction-page {
  padding-top: 28px;
}

.card-soft {
  background:
    radial-gradient(circle at top left, rgba(59,130,246,.10), transparent 28%),
    linear-gradient(180deg, rgba(17,26,43,.98), rgba(12,20,35,.98));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 26px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
}

.auctions-intro {
  margin-bottom: 22px;
  color: #c8d5f1;
  line-height: 1.7;
}

.auction-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.auction-card {
  display: block;
  text-decoration: none;
  color: #fff;
  border-radius: 26px;
  padding: 22px;
  background:
    radial-gradient(circle at top left, rgba(59,130,246,.14), transparent 26%),
    linear-gradient(180deg, #111a2b, #0d1728);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.auction-card:hover {
  transform: translateY(-2px);
  border-color: rgba(96,165,250,.35);
  box-shadow: 0 14px 34px rgba(0,0,0,.26);
  text-decoration: none;
}

.auction-card__top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.auction-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
}

.auction-card__badge.is-active {
  background: rgba(34,197,94,.14);
  color: #89f0b0;
  border: 1px solid rgba(34,197,94,.24);
}

.auction-card__badge.is-finished {
  background: rgba(148,163,184,.16);
  color: #d3dceb;
  border: 1px solid rgba(148,163,184,.24);
}

.auction-card__title {
  font-size: 32px;
  line-height: 1.18;
  margin: 0;
  color: #fff;
}

.auction-card__timer,
.auction-hero__timer {
  flex: 0 0 auto;
  min-width: 170px;
  text-align: right;
  color: #8ab4ff;
  font-weight: 800;
  line-height: 1.4;
}

.auction-card__desc {
  color: #b9c7e4;
  line-height: 1.7;
  margin-bottom: 18px;
}

.auction-card__meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.auction-stat {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 18px;
  padding: 14px 16px;
}

.auction-stat__label {
  color: #91a2c6;
  font-size: 13px;
  margin-bottom: 8px;
}

.auction-stat__value {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}

.auction-card__games {
  color: #dbe6ff;
  line-height: 1.7;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
}

.auction-card__footer {
  margin-top: 18px;
}

.auction-card__more {
  color: #8ab4ff;
  font-weight: 800;
}

.auction-page {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 420px);
  gap: 24px;
}

.auction-page__main {
  min-width: 0;
}

.auction-page__sidebar {
  min-width: 0;
}

.auction-hero {
  margin-bottom: 22px;
}

.auction-hero__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.auction-hero__title {
  font-size: 46px;
  line-height: 1.1;
  margin: 0;
}

.auction-hero__desc {
  color: #c8d5f1;
  line-height: 1.8;
  font-size: 17px;
}

.auction-page__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.auction-block__title {
  margin: 0 0 16px;
  font-size: 26px;
  color: #fff;
}

.auction-balance-box {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(59,130,246,.10);
  border: 1px solid rgba(59,130,246,.18);
  margin-bottom: 18px;
}

.auction-balance-box__label {
  color: #9fb3d9;
  font-size: 14px;
}

.auction-balance-box__value {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
}

.auction-games-text {
  color: #dbe6ff;
  line-height: 1.8;
}

.auction-price-box {
  margin-bottom: 18px;
}

.auction-price-box__value {
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}

.auction-price-box__meta {
  margin-top: 10px;
  color: #9fb3d9;
}

.auction-bid-box {
  margin-top: 16px;
}

.auction-field-label {
  display: block;
  margin-bottom: 10px;
  color: #c8d5f1;
  font-weight: 700;
}

.auction-bid-box__row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.auction-input {
  flex: 1 1 220px;
  min-height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(8,15,27,.8);
  color: #fff;
  padding: 0 16px;
  font-size: 18px;
  outline: none;
}

.auction-input:focus {
  border-color: rgba(96,165,250,.45);
  box-shadow: 0 0 0 4px rgba(59,130,246,.12);
}

.auction-bid-box__hint {
  margin-top: 10px;
  color: #91a2c6;
  font-size: 14px;
}

.auction-finished-note {
  color: #dbe6ff;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(148,163,184,.12);
  border: 1px solid rgba(148,163,184,.18);
}

.auction-bids-list {
  display: grid;
  gap: 12px;
}

.auction-bid-item {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
}

.auction-bid-item__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.auction-bid-item__rank {
  color: #9fb3d9;
  font-size: 13px;
  font-weight: 700;
}

.auction-bid-item__amount {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}

.auction-bid-item__date {
  margin-top: 8px;
  color: #8ea0c3;
  font-size: 13px;
}

.auction-empty,
.auction-empty-bids {
  color: #b9c7e4;
}

@media (max-width: 1100px) {
  .auction-page {
    grid-template-columns: 1fr;
  }

  .auction-hero__title {
    font-size: 38px;
  }

  .auction-card__title {
    font-size: 28px;
  }
}

@media (max-width: 820px) {
  .auction-list {
    grid-template-columns: 1fr;
  }

  .auction-card__top,
  .auction-hero__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .auction-card__timer,
  .auction-hero__timer {
    min-width: 0;
    text-align: left;
  }

  .auction-card__meta-grid {
    grid-template-columns: 1fr 1fr;
  }

  .auction-hero__title {
    font-size: 32px;
  }

  .auction-price-box__value {
    font-size: 34px;
  }
}

@media (max-width: 560px) {
  .card-soft,
  .auction-card {
    padding: 18px;
    border-radius: 22px;
  }

  .auction-card__meta-grid {
    grid-template-columns: 1fr;
  }

  .auction-hero__title {
    font-size: 28px;
  }

  .auction-block__title {
    font-size: 22px;
  }

  .auction-price-box__value {
    font-size: 30px;
  }
}

.auction-hero-home {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 360px);
  gap: 22px;
  padding: 26px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(59,130,246,.14), transparent 24%),
    radial-gradient(circle at bottom right, rgba(124,58,237,.12), transparent 24%),
    linear-gradient(180deg, #111a2b, #0d1728);
  border: 1px solid rgba(255,255,255,.08);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(0,0,0,.24);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.auction-hero-home:hover {
  transform: translateY(-2px);
  border-color: rgba(96,165,250,.35);
  box-shadow: 0 18px 42px rgba(0,0,0,.28);
  text-decoration: none;
}

.auction-hero-home__content {
  min-width: 0;
}

.auction-hero-home__title {
  margin: 10px 0 14px;
  font-size: 38px;
  line-height: 1.12;
  color: #fff;
}

.auction-hero-home__desc {
  color: #c8d5f1;
  line-height: 1.75;
  margin-bottom: 18px;
  max-width: 900px;
}

.auction-hero-home__meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.auction-mini-stat {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
}

.auction-mini-stat__label {
  display: block;
  color: #91a2c6;
  font-size: 13px;
  margin-bottom: 8px;
}

.auction-mini-stat__value {
  display: block;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
}

.auction-hero-home__games {
  color: #dbe6ff;
  line-height: 1.8;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  margin-bottom: 18px;
}

.auction-hero-home__cta {
  margin-top: 6px;
}

.auction-hero-home__side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  min-height: 100%;
}

.auction-hero-home__timer-label {
  color: #9fb3d9;
  font-size: 14px;
  margin-bottom: 12px;
}

.auction-hero-home__timer {
  font-size: 28px;
  font-weight: 900;
  color: #8ab4ff;
  line-height: 1.3;
}

.auction-hero-home__hint {
  margin-top: 14px;
  color: #b9c7e4;
  line-height: 1.6;
  font-size: 14px;
}

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

  .auction-hero-home__title {
    font-size: 32px;
  }

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

@media (max-width: 640px) {
  .auction-hero-home {
    padding: 20px;
    border-radius: 24px;
  }

  .auction-hero-home__title {
    font-size: 28px;
  }

  .auction-hero-home__meta {
    grid-template-columns: 1fr;
  }

  .auction-mini-stat__value {
    font-size: 22px;
  }

  .auction-hero-home__timer {
    font-size: 24px;
  }
}

.auction-hot-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(249,115,22,.14);
  color: #ffbf8a;
  border: 1px solid rgba(249,115,22,.24);
  font-weight: 800;
  margin-bottom: 14px;
}
