:root {
  --bg: #08111f;
  --bg-soft: rgba(9, 20, 38, 0.82);
  --panel: rgba(12, 24, 43, 0.82);
  --panel-strong: rgba(17, 33, 58, 0.95);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f7f5ef;
  --muted: #b3bfd3;
  --gold: #f4b544;
  --red: #ff5f45;
  --blue: #59d5ff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(255, 95, 69, 0.16), transparent 24%),
    radial-gradient(circle at left 20%, rgba(89, 213, 255, 0.2), transparent 18%),
    linear-gradient(180deg, #08111f 0%, #091427 50%, #060d17 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 90%);
}

.page-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 72px;
}

.promo-banner {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  padding: 18px;
  margin-bottom: 18px;
  color: var(--text);
  text-decoration: none;
  background: linear-gradient(135deg, rgba(255, 95, 69, 0.22), rgba(244, 181, 68, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.promo-banner img {
  width: 100%;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}

.promo-banner-copy {
  display: grid;
  gap: 10px;
}

.promo-banner-copy strong {
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  line-height: 1.1;
}

.promo-banner-copy span:last-child {
  color: var(--muted);
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero,
.section {
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero {
  padding: 24px;
}

.hero::after,
.section::after {
  content: "";
  position: absolute;
  inset: auto -80px -100px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 181, 68, 0.12), transparent 65%);
  pointer-events: none;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 24px;
}

.topbar {
  padding: 18px 20px;
}

.sticky-nav {
  position: sticky;
  top: 12px;
  z-index: 40;
  margin-bottom: 18px;
  background: rgba(8, 17, 31, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.brand,
.topbar a {
  color: var(--text);
  text-decoration: none;
}

.brand {
  font-family: "Trebuchet MS", "Segoe UI Variable Display", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.topbar-links a {
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-cta {
  flex-shrink: 0;
}

.hero-grid,
.split-section,
.mobile-layout {
  display: grid;
  gap: 28px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.95fr);
  align-items: center;
}

.hero-copy h1,
.section-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  max-width: 12ch;
}

.lead,
.section-heading p,
.stat-card p,
.offer-card p,
.info-panel p,
.license-card li,
.game-card p,
.mobile-copy p,
.support-card p,
.faq-list p,
.split-section p {
  color: var(--muted);
  line-height: 1.7;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
}

.button-primary {
  color: #15100a;
  background: linear-gradient(135deg, var(--gold), #ffd98b);
}

.button-secondary {
  color: var(--text);
  border-color: rgba(89, 213, 255, 0.38);
  background: rgba(89, 213, 255, 0.08);
}

.button-ghost {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.hero-points,
.license-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.cta-link:hover {
  transform: translateY(-2px);
}

.cta-link-primary {
  color: #1b1207;
  background: linear-gradient(135deg, #ffcc73, #f4b544 45%, #ff8d4d 100%);
  box-shadow: 0 16px 34px rgba(244, 181, 68, 0.24);
}

.cta-link-secondary {
  color: var(--text);
  border: 1px solid rgba(89, 213, 255, 0.34);
  background: rgba(89, 213, 255, 0.08);
}

.cta-panel {
  margin-top: 24px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(255, 95, 69, 0.14), rgba(244, 181, 68, 0.1)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
}

.cta-panel strong,
.cta-band strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.cta-panel p,
.cta-band p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.cta-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

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

.feature-card,
.stat-card,
.offer-card,
.info-panel,
.logo-card,
.game-card,
.support-card,
.license-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.feature-card {
  display: grid;
  gap: 12px;
  padding: 12px;
  min-height: 180px;
  align-content: space-between;
  transform: translateY(0);
  transition: transform 220ms ease, border-color 220ms ease;
}

.feature-card:hover,
.game-card:hover,
.logo-card:hover,
.support-card:hover,
.offer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 181, 68, 0.35);
}

.feature-card img,
.game-card img,
.info-panel img,
.mobile-layout img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 16px;
}

.feature-card img,
.game-card img {
  aspect-ratio: 1 / 1;
}

.feature-card-large,
.feature-card-tall {
  grid-row: span 2;
}

.feature-card span,
.feature-card strong {
  display: block;
}

.feature-card span {
  color: var(--blue);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.feature-card strong {
  margin-top: 6px;
  font-size: 1.1rem;
}

.section {
  margin-top: 22px;
  padding: 34px 24px;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 22px;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  margin-bottom: 12px;
}

.stats-grid,
.offer-grid,
.games-grid,
.logo-grid,
.support-grid,
.accordion-grid {
  display: grid;
  gap: 16px;
}

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

.stat-card,
.offer-card,
.support-card {
  padding: 22px;
}

.stat-card strong,
.offer-card h3,
.support-card h3,
.game-card h3,
.license-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

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

.accent-gold {
  box-shadow: inset 0 0 0 1px rgba(244, 181, 68, 0.2);
}

.accent-red {
  box-shadow: inset 0 0 0 1px rgba(255, 95, 69, 0.2);
}

.accent-blue {
  box-shadow: inset 0 0 0 1px rgba(89, 213, 255, 0.2);
}

.split-section {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: center;
}

.mini-checklist,
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mini-checklist span,
.tag-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.95rem;
}

.info-panel {
  display: grid;
  gap: 18px;
  padding: 16px;
}

.info-panel img {
  aspect-ratio: 1 / 1;
}

.payments-grid,
.provider-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.logo-card {
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: 140px;
  padding: 18px;
  text-align: center;
}

.logo-card img {
  max-width: 100%;
  max-height: 44px;
  object-fit: contain;
  display: block;
}

.logo-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.license-card {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 95, 69, 0.08), rgba(255, 95, 69, 0.02)),
    var(--panel-strong);
}

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

.game-card {
  overflow: hidden;
}

.game-card div {
  padding: 18px;
}

.mobile-layout {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  align-items: center;
}

.mobile-layout img {
  max-width: 100%;
}

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

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

details {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px 16px 18px;
}

summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}

summary::-webkit-details-marker {
  display: none;
}

details .tag-cloud,
.faq-list details p {
  margin-top: 14px;
}

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

.benefits-grid,
.slots-grid,
.reviews-grid,
.contacts-grid,
.guides-grid {
  display: grid;
  gap: 16px;
}

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

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

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
  margin-bottom: 18px;
  background:
    linear-gradient(135deg, rgba(89, 213, 255, 0.09), rgba(255, 255, 255, 0.03)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.benefit-card,
.review-card,
.contact-card,
.table-card,
.slot-card,
.guide-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.benefit-card,
.review-card,
.contact-card,
.table-card {
  padding: 22px;
}

.guide-card {
  display: block;
  padding: 22px;
  color: var(--text);
  text-decoration: none;
  transition: transform 220ms ease, border-color 220ms ease;
}

.guide-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.guide-card span {
  color: var(--muted);
  line-height: 1.7;
}

.benefit-card strong,
.contact-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.benefit-card p,
.review-card p,
.contact-card p,
.author-copy p,
.seo-text-box p {
  color: var(--muted);
  line-height: 1.7;
}

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

.slot-card {
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease;
}

.slot-card:hover,
.review-card:hover,
.benefit-card:hover,
.guide-card:hover {
  transform: translateY(-4px);
  border-color: rgba(89, 213, 255, 0.34);
}

.slot-card-media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(180deg, rgba(89, 213, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.slot-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.slot-card-body {
  padding: 18px;
}

.slot-card-body h3,
.table-card h3,
.author-copy h2 {
  margin: 0 0 10px;
}

.table-card + .table-card {
  margin-top: 16px;
}

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

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 660px;
}

thead th {
  color: var(--gold);
  font-size: 0.92rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.04);
}

th,
td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: top;
}

tbody td {
  color: var(--muted);
}

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

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

.review-head span {
  color: var(--gold);
  font-weight: 700;
}

.author-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
  align-items: center;
}

.author-layout img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 22px;
}

.author-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

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

.contact-card a,
.contact-card p {
  color: var(--muted);
  text-decoration: none;
}

.seo-text-box {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(89, 213, 255, 0.08), rgba(255, 255, 255, 0.03)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.seo-text-box p + p {
  margin-top: 16px;
}

@media (max-width: 1100px) {
  .hero-grid,
  .split-section,
  .mobile-layout,
  .stats-grid,
  .offer-grid,
  .games-grid,
  .support-grid,
  .accordion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .payments-grid,
  .provider-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .page-shell {
    width: min(100% - 20px, 1240px);
    padding-top: 10px;
  }

  .topbar,
  .hero-grid,
  .hero-visual,
  .split-section,
  .mobile-layout,
  .stats-grid,
  .offer-grid,
  .games-grid,
  .payments-grid,
  .provider-grid,
  .support-grid,
  .accordion-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    align-items: flex-start;
  }

  .hero,
  .section {
    border-radius: 22px;
    padding: 22px 18px;
  }

  .hero-copy h1 {
    max-width: none;
  }
}

@media (max-width: 1100px) {
  .promo-banner,
  .benefits-grid,
  .guides-grid,
  .slots-grid,
  .reviews-grid,
  .contacts-grid,
  .author-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .promo-banner,
  .benefits-grid,
  .guides-grid,
  .slots-grid,
  .reviews-grid,
  .contacts-grid,
  .author-layout {
    grid-template-columns: 1fr;
  }

  .sticky-nav {
    position: static;
    border-radius: 24px;
  }

  .cta-band {
    grid-template-columns: 1fr;
  }

  table {
    min-width: 620px;
  }
}
