﻿:root {
  --bg: #0b1020;
  --bg-soft: #111a33;
  --card: #f4f6fb;
  --text: #0d1221;
  --muted: #5c688a;
  --accent: #f59e0b;
  --accent-2: #14b8a6;
  --line: #d8deee;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: #e9edff;
  background:
    radial-gradient(1200px 500px at 10% -5%, rgba(20, 184, 166, 0.23), transparent 55%),
    radial-gradient(900px 400px at 100% 0, rgba(245, 158, 11, 0.2), transparent 60%),
    var(--bg);
  min-height: 100vh;
}

.container {
  width: min(1140px, 100% - 32px);
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
  backdrop-filter: blur(10px);
  background: rgba(11, 16, 32, 0.78);
}

.topbar-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #14b8a6, #f59e0b);
  color: #111827;
  font-family: "Archivo Black", sans-serif;
  font-size: 14px;
}

.brand-text {
  font-family: "Archivo Black", sans-serif;
  letter-spacing: 0.03em;
  font-size: 20px;
}

.top-nav {
  display: inline-flex;
  gap: 14px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.34);
  background: rgba(17, 26, 51, 0.9);
  color: #e2e8f0;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
}

.top-nav a {
  color: #dbe4ff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  opacity: 0.88;
}

.top-nav a:hover {
  opacity: 1;
}

.top-nav a.is-current {
  opacity: 1;
  color: #ffffff;
}

.hero {
  padding: 56px 0 26px;
}

.hero-kicker {
  margin: 0;
  color: #8ce0d6;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.hero h1 {
  margin: 10px 0 12px;
  font-family: "Archivo Black", sans-serif;
  line-height: 1.06;
  font-size: clamp(34px, 5vw, 56px);
  max-width: 16ch;
}

.hero-text {
  margin: 0;
  max-width: 66ch;
  color: #cad4f5;
  font-size: clamp(15px, 2vw, 18px);
}

.hero-pills {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(17, 26, 51, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.28);
  color: #d8e0fa;
  font-size: 13px;
  font-weight: 600;
}

.rating-layout {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  padding-bottom: 56px;
}

.rating-list {
  display: grid;
  gap: 14px;
}

.card {
  background: var(--card);
  color: var(--text);
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  box-shadow: 0 16px 34px rgba(3, 10, 28, 0.35);
}

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

.card-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #102136;
  background: linear-gradient(135deg, #84fab0, #8fd3f4);
}

.card-score {
  margin: 0;
  font-size: 13px;
  color: #0f766e;
  font-weight: 700;
}

.card-main {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.logo {
  min-height: 88px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--logo);
}

.logo span {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(24px, 5vw, 34px);
  letter-spacing: 0.03em;
}

.logo-image {
  width: 88%;
  height: 88%;
  object-fit: contain;
}

.card h3 {
  margin: 0;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.1;
}

.rank {
  color: #64748b;
  font-size: 15px;
  font-weight: 700;
  margin-left: 8px;
}

.offer {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.actions {
  margin-top: 12px;
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr;
}

.actions-two {
  grid-template-columns: 1fr;
}

.btn {
  min-height: 44px;
  border-radius: 12px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-outline {
  color: #1e293b;
  background: #eef2ff;
  border-color: #cdd5ea;
}

.btn-solid {
  color: #fff;
  background: linear-gradient(135deg, #14b8a6, #0ea5e9);
}

.btn-promo {
  color: #78350f;
  background: #fef3c7;
  border-color: #fcd34d;
}

.btn-promo.is-copied {
  color: #065f46;
  background: #d1fae5;
  border-color: #34d399;
}

.btn-promo.is-error {
  color: #7f1d1d;
  background: #fee2e2;
  border-color: #fca5a5;
}

.copy-status {
  min-height: 18px;
  margin: 8px 0 0;
  font-size: 12px;
  color: #1d4ed8;
}

.rating-side {
  background: rgba(17, 26, 51, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 16px;
  padding: 16px;
  align-self: start;
}

.rating-side h2 {
  margin: 0 0 10px;
  font-family: "Archivo Black", sans-serif;
  font-size: 24px;
  line-height: 1;
}

.rating-side ul {
  margin: 0;
  padding-left: 18px;
  color: #d7e0ff;
}

.rating-side li + li {
  margin-top: 6px;
}

.side-note {
  margin-top: 14px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.side-note h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.side-note p {
  margin: 0;
  color: #d7def4;
  font-size: 14px;
}

.footer {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding: 22px 0 34px;
}

.footer p {
  margin: 0;
  color: #bcc8e8;
  font-size: 13px;
}

.review-page {
  padding: 24px 0 48px;
}

.review-body {
  background: #f3f5f8;
  color: #111827;
}

.review-shell {
  width: min(1020px, 100% - 32px);
  margin-inline: auto;
  background: #ffffff;
  color: #111827;
  border-radius: 10px;
  border: 1px solid #dbe2ef;
  padding: 20px;
  box-shadow: none;
}

.review-back {
  display: inline-flex;
  text-decoration: none;
  color: #64748b;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 12px;
}

.review-shell h1 {
  margin: 0 0 10px;
  color: #0f172a;
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.08;
}

.review-lead {
  margin: 0 0 16px;
  color: #475569;
  font-size: 16px;
}

.review-grid {
  margin: 0 0 16px;
  padding: 0;
  border-radius: 8px;
  border: 1px solid #dbe2ef;
  background: #ffffff;
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  overflow: hidden;
}

.review-grid p {
  margin: 0;
  font-size: 15px;
  color: #1e293b;
  padding: 15px 18px;
  border-bottom: 1px solid #edf2f8;
}

.review-grid p:last-child {
  border-bottom: 0;
}

.review-shell p {
  color: #334155;
  font-size: 15px;
}

.review-actions {
  margin-top: 20px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid #e5eaf3;
}

.detail-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.detail-card {
  border: 1px solid #dbe2ef;
  background: #ffffff;
  border-radius: 8px;
  padding: 18px;
  min-height: 132px;
}

.detail-card h2 {
  margin: 0 0 6px;
  color: #0f172a;
  font-size: 17px;
  line-height: 1.2;
}

.detail-card p {
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.45;
}

.related-block {
  margin-top: 18px;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid #dbe2ef;
  background: #ffffff;
}

.related-block h2 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #0f172a;
  line-height: 1.2;
}

.related-list {
  margin: 0;
  padding-left: 18px;
}

.related-list li + li {
  margin-top: 6px;
}

.related-list a {
  color: #2563eb;
  font-weight: 700;
  text-decoration: none;
}

.related-list a:hover {
  text-decoration: underline;
}

@media (min-width: 760px) {
  .card {
    padding: 16px;
  }

  .card-main {
    grid-template-columns: 220px 1fr;
    align-items: center;
  }

  body[data-page-slug="games"] .card-main {
    align-items: start;
  }

  .logo {
    min-height: 130px;
  }

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

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

}

@media (min-width: 1080px) {
  .rating-layout {
    grid-template-columns: 1fr 320px;
    gap: 22px;
  }

  .rating-side {
    position: sticky;
    top: 88px;
  }
}

@media (max-width: 900px) {
  .topbar-inner {
    gap: 10px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .top-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 2px;
    padding: 8px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: rgba(11, 16, 32, 0.98);
    box-shadow: 0 16px 30px rgba(2, 6, 23, 0.48);
  }

  .topbar.is-menu-open .top-nav {
    display: flex;
  }

  .top-nav a {
    display: block;
    min-height: 40px;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(17, 26, 51, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.2);
  }
}

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

  .review-actions .btn {
    width: 100%;
  }
}

.lang-switcher {
  position: relative;
}

.lang-current {
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.6);
  background: rgba(4, 12, 34, 0.92);
  color: #e5efff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.lang-flag {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.35);
  display: inline-block;
  flex: 0 0 18px;
}

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

.lang-short {
  opacity: 0.85;
}

.lang-caret {
  font-size: 10px;
  color: #93c5fd;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 230px;
  border-radius: 16px;
  border: 1px solid rgba(56, 189, 248, 0.45);
  background: rgba(3, 11, 35, 0.97);
  box-shadow: 0 18px 38px rgba(2, 6, 23, 0.55);
  padding: 8px;
  display: none;
  z-index: 35;
}

.lang-switcher.is-open .lang-menu {
  display: block;
}

.lang-option {
  min-height: 40px;
  border-radius: 10px;
  color: #e8f2ff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
}

.lang-option-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lang-check {
  opacity: 0;
  color: #2dd4bf;
  font-weight: 700;
}

.lang-option.is-active {
  background: rgba(15, 23, 42, 0.9);
}

.lang-option.is-active .lang-check {
  opacity: 1;
}

.lang-option:hover {
  background: rgba(30, 64, 175, 0.25);
}

.review-lang { margin-bottom: 12px; display: inline-block; }

.review-shell .lang-current {
  border-color: #c7d5eb;
  background: #f8fbff;
  color: #1e293b;
}

.review-shell .lang-caret {
  color: #475569;
}

.review-shell .lang-menu {
  border-color: #dbe2ef;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
}

.review-shell .lang-option {
  color: #0f172a;
}

.review-shell .lang-option.is-active {
  background: #f1f5f9;
}

.review-shell .lang-option:hover {
  background: #eef2ff;
}

.casino-top-card {
  margin: 14px 0 18px;
  border-radius: 12px;
  border: 1px solid #223247;
  background: linear-gradient(135deg, #132234, #1a2a3b);
  color: #e7efff;
  overflow: hidden;
}

.top-card-head {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.24);
}

.top-rank {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 8px;
  background: #2b4157;
  color: #f8fafc;
  font-size: 14px;
  font-weight: 700;
}

.top-card-main {
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.top-brand-col {
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 10px;
  background: rgba(8, 17, 29, 0.42);
  padding: 14px;
}

.top-brand-line {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-logo {
  width: 78px;
  height: 78px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--logo);
  color: #ffffff;
}

.top-logo span {
  font-family: "Archivo Black", sans-serif;
  font-size: 26px;
}

.top-logo-image {
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.top-brand-line h2 {
  margin: 0;
  color: #f8fafc;
  font-size: 34px;
  line-height: 1.05;
}

.top-brand-line p {
  margin: 4px 0 0;
  color: #c7d2e8;
  font-size: 14px;
}

.top-play-link {
  margin-top: 12px;
  width: 100%;
  min-height: 44px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
}

.top-info-col {
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 10px;
  background: rgba(8, 17, 29, 0.42);
  padding: 14px;
}

.top-offers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.top-offer {
  border-radius: 8px;
  border: 1px solid rgba(250, 204, 21, 0.7);
  background: rgba(17, 24, 39, 0.8);
  padding: 10px;
}

.top-offer-title {
  margin: 0;
  color: #fde047;
  font-size: 13px;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
}

.top-offer-value {
  margin: 6px 0 10px;
  text-align: center;
  color: #fef08a;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.05;
}

.top-promo-btn {
  width: 100%;
  min-height: 38px;
  border-radius: 8px;
  border: 1px solid #fcd34d;
  background: linear-gradient(135deg, #facc15, #f59e0b);
  color: #1f2937;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.top-promo-btn:disabled {
  opacity: 0.85;
  cursor: default;
}

.top-facts-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.top-facts-grid article {
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 8px;
  padding: 10px;
}

.top-facts-grid h3 {
  margin: 0 0 4px;
  color: #f8fafc;
  font-size: 15px;
}

.top-facts-grid p {
  margin: 0;
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.35;
}

@media (min-width: 960px) {
  .top-card-main {
    grid-template-columns: 320px 1fr;
  }

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

.brand-strip {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.brand-chip {
  min-height: 30px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px solid #d6deec;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #0f172a;
  background: #f8fbff;
}

.brand-chip.has-image {
  gap: 6px;
  padding-right: 12px;
}

.brand-chip.has-image img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.provider-netent { background: #eef2ff; color: #1e3a8a; border-color: #c7d2fe; }
.provider-pragmatic { background: #fff7ed; color: #9a3412; border-color: #fdba74; }
.provider-quickspin { background: #ecfdf5; color: #065f46; border-color: #6ee7b7; }
.provider-endorphina { background: #fdf2f8; color: #9d174d; border-color: #f9a8d4; }
.provider-evolution { background: #ecfeff; color: #0e7490; border-color: #67e8f9; }
.provider-hacksaw { background: #fef2f2; color: #991b1b; border-color: #fca5a5; }
.provider-nolimit { background: #f8fafc; color: #334155; border-color: #cbd5e1; }
.provider-bgaming { background: #eff6ff; color: #1d4ed8; border-color: #93c5fd; }
.provider-playson { background: #fff7ed; color: #b45309; border-color: #fcd34d; }
.provider-onespin { background: #f5f3ff; color: #6d28d9; border-color: #c4b5fd; }
.provider-playngo { background: #fefce8; color: #854d0e; border-color: #fde047; }
.provider-amatic { background: #f0f9ff; color: #0369a1; border-color: #7dd3fc; }
.provider-igt { background: #eef2ff; color: #3730a3; border-color: #a5b4fc; }
.provider-playtech { background: #f0fdf4; color: #166534; border-color: #86efac; }

.payment-mir { background: #ecfdf5; color: #065f46; border-color: #6ee7b7; }
.payment-visa { background: #eff6ff; color: #1d4ed8; border-color: #93c5fd; }
.payment-mastercard { background: #fff7ed; color: #c2410c; border-color: #fdba74; }
.payment-yoomoney { background: #fef2f2; color: #991b1b; border-color: #fca5a5; }
.payment-sbp { background: #ecfeff; color: #155e75; border-color: #67e8f9; }
.payment-btc { background: #fff7ed; color: #9a3412; border-color: #fdba74; }
.payment-eth { background: #eef2ff; color: #312e81; border-color: #a5b4fc; }
.payment-usdt { background: #ecfdf5; color: #065f46; border-color: #6ee7b7; }
.payment-wallet { background: #f5f3ff; color: #5b21b6; border-color: #c4b5fd; }
.payment-piastrix { background: #f0fdf4; color: #166534; border-color: #86efac; }
.payment-crypto { background: #fff7ed; color: #b45309; border-color: #fcd34d; }
.payment-skrill { background: #fdf2f8; color: #9d174d; border-color: #f9a8d4; }
.payment-neteller { background: #f0f9ff; color: #0c4a6e; border-color: #7dd3fc; }
.payment-bank { background: #f8fafc; color: #334155; border-color: #cbd5e1; }
.payment-paypal { background: #eff6ff; color: #1e40af; border-color: #93c5fd; }

.reg-slider {
  margin-top: 14px;
  border: 1px solid #dbe2ef;
  border-radius: 10px;
  background: #f8fbff;
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.reg-viewport {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #e1e8f5;
  background: #0f172a;
}

.reg-track {
  display: flex;
  transition: transform 260ms ease;
}

.reg-slide {
  margin: 0;
  min-width: 100%;
}

.reg-slide img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.reg-slide figcaption {
  padding: 8px 10px;
  border-top: 1px solid #dbe2ef;
  background: #ffffff;
  color: #334155;
  font-size: 13px;
  line-height: 1.35;
}

.reg-nav {
  min-height: 36px;
  border-radius: 8px;
  border: 1px solid #c6d3e9;
  background: #ffffff;
  color: #1e3a8a;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.reg-nav:disabled {
  opacity: 0.45;
  cursor: default;
}

.reg-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.reg-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  background: #cbd5e1;
  cursor: pointer;
}

.reg-dot.is-active {
  background: #2563eb;
}

@media (min-width: 680px) {
  .reg-slider {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .reg-viewport {
    grid-column: 2;
    grid-row: 1;
  }

  .reg-dots {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

