:root {
  --bg: #07113a;
  --bg-soft: #0d1a4c;
  --bg-raised: #111f5d;
  --surface: #17286d;
  --surface-2: #20398f;
  --gold: #f7b500;
  --gold-light: #ffdd64;
  --green: #38d07f;
  --blue: #2f73ff;
  --text: #f6f8ff;
  --muted: #c5cff5;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 8%, rgba(47, 115, 255, 0.22), transparent 31rem),
    radial-gradient(circle at 82% 24%, rgba(247, 181, 0, 0.12), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  color: var(--muted);
}

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

.narrow {
  width: min(100% - 32px, 850px);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 17, 58, 0.82);
  backdrop-filter: blur(18px);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 17, 58, 0.96);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.25);
}

.header-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  width: 190px;
  min-height: 44px;
  flex: 0 0 auto;
  align-items: center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 14px;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.site-nav .nav-cta {
  background: var(--gold);
  color: #08133b;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 11px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 99px;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: clamp(540px, 72vh, 690px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 46%, rgba(47, 115, 255, 0.22), transparent 23rem),
    radial-gradient(circle at 88% 72%, rgba(247, 181, 0, 0.14), transparent 20rem),
    linear-gradient(135deg, #07113a 0%, #0a1748 58%, #111f5d 100%);
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  right: -6rem;
  bottom: -10rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(247, 181, 0, 0.28);
  border-radius: 50%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: center;
  gap: 50px;
  padding: 114px 0 90px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  color: var(--text);
  font-size: clamp(40px, 6vw, 78px);
  line-height: 0.98;
}

.hero-text {
  max-width: 610px;
  margin-bottom: 28px;
  color: #e7ecff;
  font-size: 19px;
}

.hero-actions,
.center-action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #07113a;
  box-shadow: 0 14px 26px rgba(247, 181, 0, 0.26);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.09);
  color: var(--text);
}

.button-small {
  min-height: 42px;
  width: 100%;
  padding: 0 14px;
  font-size: 14px;
  background: var(--gold);
  color: #07113a;
}

.button-play {
  min-height: 58px;
  padding: 0 30px;
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, #59f49e, #21cd6c 58%, #10ad56);
  color: #041b14;
  font-size: 17px;
  box-shadow: 0 16px 34px rgba(33, 205, 108, 0.32);
}

.button-small.button-play {
  min-height: 50px;
  padding: 0 16px;
  font-size: 15px;
}

.hero-badge {
  align-self: center;
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.hero-badge img {
  border-radius: 8px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 132px 0 58px;
  background:
    radial-gradient(circle at 76% 46%, rgba(47, 115, 255, 0.22), transparent 23rem),
    radial-gradient(circle at 88% 72%, rgba(247, 181, 0, 0.14), transparent 20rem),
    linear-gradient(135deg, #07113a 0%, #0a1748 58%, #111f5d 100%);
  background-position: center;
  background-size: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -7rem;
  bottom: -12rem;
  width: 32rem;
  height: 32rem;
  border: 1px solid rgba(247, 181, 0, 0.22);
  border-radius: 50%;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 540px);
  align-items: center;
  gap: 44px;
}

.page-media {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.logo-banner {
  max-width: 420px;
  justify-self: center;
  aspect-ratio: 1;
  object-fit: cover;
}

.section {
  padding: 84px 0;
}

.bonus-strip {
  padding: 0 0 14px;
  margin-bottom: -44px;
  transform: translateY(-72px);
}

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

.strip-grid > div {
  min-height: 136px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(32, 57, 143, 0.96), rgba(17, 31, 93, 0.96));
  padding: 22px;
  box-shadow: var(--shadow);
}

.strip-label {
  display: block;
  margin-bottom: 6px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.strip-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 24px;
}

.strip-grid p {
  margin-bottom: 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.split-copy h2,
.section-copy h2,
.final-inner h2 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
}

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

.feature-card,
.mini-card,
.game-card,
.review-card,
.quick-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 31, 93, 0.88);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.feature-card {
  grid-column: span 2;
  overflow: hidden;
}

.feature-card img {
  width: 100%;
  height: auto;
  object-fit: initial;
}

.feature-card h3,
.feature-card p {
  padding-right: 22px;
  padding-left: 22px;
}

.feature-card h3 {
  margin: 20px 0 8px;
  font-size: 22px;
}

.feature-card p {
  margin-bottom: 24px;
}

.mini-card {
  min-height: 210px;
  padding: 22px;
}

.mini-icon {
  display: inline-flex;
  min-width: 42px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 8px;
  background: rgba(56, 208, 127, 0.14);
  color: var(--green);
  font-weight: 900;
}

.mini-card h3,
.game-title {
  margin-bottom: 8px;
  font-size: 20px;
}

.mini-card p,
.review-card p {
  margin-bottom: 0;
}

.section-raised {
  background:
    linear-gradient(180deg, rgba(12, 25, 74, 0.52), rgba(12, 25, 74, 0.04));
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  align-items: center;
  gap: 44px;
}

.split-section-reverse {
  grid-template-columns: minmax(340px, 520px) minmax(0, 1fr);
}

.split-section-reverse .split-copy {
  order: 2;
}

.split-section-reverse .split-media {
  order: 1;
}

.split-copy p {
  max-width: 690px;
}

.split-media img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 26px 0;
}

.bonus-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 18px;
}

.bonus-grid strong {
  display: block;
  color: var(--gold-light);
  font-size: 30px;
  line-height: 1;
}

.bonus-grid span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 31, 93, 0.88);
}

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

th,
td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px;
  text-align: left;
  vertical-align: top;
}

th {
  background: rgba(247, 181, 0, 0.14);
  color: var(--gold-light);
  font-size: 14px;
  text-transform: uppercase;
}

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

tbody tr:last-child td {
  border-bottom: 0;
}

.center-action {
  justify-content: center;
  margin-top: 24px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.game-card {
  overflow: hidden;
  padding: 10px 10px 14px;
}

.game-card img {
  width: 100%;
  aspect-ratio: 828 / 1113;
  border-radius: 8px;
  object-fit: cover;
}

.game-title {
  margin: 13px 0 12px;
  padding: 0 2px;
  color: var(--text);
  font-weight: 900;
  font-size: 16px;
  line-height: 1.18;
}

.payment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}

.payment-list span {
  border: 1px solid rgba(56, 208, 127, 0.32);
  border-radius: 8px;
  background: rgba(56, 208, 127, 0.1);
  padding: 10px 12px;
  color: #dfffea;
  font-weight: 800;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.review-card {
  margin: 0;
  padding: 24px;
}

.review-card blockquote {
  margin: 0 0 18px;
  color: #eef2ff;
  font-size: 17px;
}

.review-card figcaption {
  color: var(--gold-light);
  font-weight: 900;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.quick-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.quick-card:hover,
.quick-card:focus-visible {
  transform: translateY(-3px);
  background: rgba(32, 57, 143, 0.94);
}

.quick-card strong {
  color: var(--text);
  font-size: 20px;
}

.quick-card span {
  color: var(--muted);
}

.quick-card-cta {
  background: linear-gradient(180deg, rgba(247, 181, 0, 0.24), rgba(17, 31, 93, 0.92));
}

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

.offer-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 31, 93, 0.88);
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.offer-card span {
  display: inline-flex;
  min-width: 42px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 8px;
  background: rgba(247, 181, 0, 0.14);
  color: var(--gold-light);
  font-weight: 900;
}

.offer-card h2 {
  margin-bottom: 10px;
  font-size: 25px;
  line-height: 1.12;
}

.offer-card p {
  min-height: 96px;
}

.table-wrap a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  background: rgba(247, 181, 0, 0.14);
  padding: 0 12px;
  color: var(--gold-light);
  font-weight: 900;
}

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

.section-copy p {
  font-size: 17px;
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 31, 93, 0.86);
  padding: 0 18px;
}

summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: var(--text);
  font-weight: 900;
  list-style: none;
}

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

summary::after {
  content: "+";
  margin-left: auto;
  color: var(--gold);
  font-size: 22px;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: 0 0 18px;
}

.final-cta {
  padding-bottom: 96px;
}

.final-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  border: 1px solid rgba(247, 181, 0, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(110deg, rgba(247, 181, 0, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(11, 24, 72, 0.98), rgba(28, 49, 126, 0.96));
  background-position: center;
  background-size: cover;
  padding: 34px;
  box-shadow: var(--shadow);
}

.final-inner p {
  margin-bottom: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #050d2c;
  padding: 44px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 180px;
  gap: 34px;
  align-items: start;
}

.footer-logo {
  width: 70px;
  margin-bottom: 12px;
}

.license-box {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  align-items: center;
}

.license-box p,
.site-footer p {
  margin-bottom: 0;
  font-size: 12px;
}

.footer-nav {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-weight: 800;
}

.footer-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.sticky-play {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 45;
  min-height: 58px;
  min-width: 166px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #07113a;
  font-size: 17px;
  font-weight: 900;
  box-shadow: 0 16px 38px rgba(247, 181, 0, 0.32), 0 14px 34px rgba(0, 0, 0, 0.38);
}

.redirect-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 72% 42%, rgba(47, 115, 255, 0.22), transparent 23rem),
    radial-gradient(circle at 18% 76%, rgba(247, 181, 0, 0.12), transparent 20rem),
    linear-gradient(135deg, #07113a 0%, #0a1748 58%, #111f5d 100%);
  background-position: center;
  background-size: cover;
}

.redirect-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.redirect-card {
  width: min(100%, 480px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 17, 58, 0.88);
  padding: 34px;
  text-align: center;
  box-shadow: var(--shadow);
}

.redirect-card img {
  width: 82px;
  margin: 0 auto 18px;
}

.redirect-card h1 {
  margin-bottom: 12px;
  font-size: 34px;
  line-height: 1.08;
}

@media (max-width: 1080px) {
  .feature-layout,
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-card {
    grid-column: span 3;
  }

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

@media (max-width: 860px) {
  .container,
  .narrow {
    width: min(100% - 24px, var(--container));
  }

  .header-inner {
    min-height: 66px;
  }

  .brand {
    width: 158px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 66px;
    right: 12px;
    left: 12px;
    display: none;
    grid-template-columns: 1fr;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(7, 17, 58, 0.98);
    padding: 12px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    justify-content: flex-start;
    min-height: 48px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 88px 0 70px;
  }

  .hero-badge {
    order: -1;
    width: 154px;
    justify-self: center;
    padding: 8px;
  }

  h1 {
    font-size: clamp(34px, 11vw, 54px);
  }

  .hero-text {
    margin-bottom: 20px;
    font-size: 17px;
  }

  .bonus-strip {
    padding-bottom: 4px;
    margin-bottom: -18px;
    transform: translateY(-28px);
  }

  .strip-grid,
  .split-section,
  .split-section-reverse,
  .reviews-grid,
  .quick-grid,
  .footer-grid,
  .final-inner,
  .page-hero-inner {
    grid-template-columns: 1fr;
  }

  .split-section-reverse .split-copy,
  .split-section-reverse .split-media {
    order: initial;
  }

  .section {
    padding: 58px 0;
  }

  .section.bonus-strip {
    padding: 0 0 4px;
  }

  .page-hero {
    padding: 88px 0 40px;
  }

  .page-hero h1 {
    font-size: clamp(32px, 8vw, 46px);
    line-height: 1.04;
  }

  .games-grid,
  .feature-layout {
    grid-template-columns: repeat(2, 1fr);
  }

  .games-grid-wide {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card {
    grid-column: span 2;
  }

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

  .license-box {
    grid-template-columns: 1fr;
  }

  .final-inner {
    padding: 26px;
  }

  .sticky-play {
    display: inline-flex;
  }

  .site-footer {
    padding-bottom: 86px;
  }
}

@media (max-width: 560px) {
  .container,
  .narrow {
    width: min(100% - 20px, var(--container));
  }

  .header-inner {
    gap: 12px;
  }

  .brand {
    width: 144px;
  }

  .hero {
    background-position: 56% center;
  }

  .hero-inner {
    padding: 76px 0 62px;
  }

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

  .button {
    min-height: 50px;
    padding: 0 14px;
  }

  .hero-badge {
    display: block;
    width: 132px;
    margin-bottom: 2px;
  }

  .strip-grid {
    gap: 10px;
  }

  .strip-grid > div {
    min-height: 0;
    padding: 16px;
  }

  .strip-grid strong {
    font-size: 21px;
  }

  .section-heading {
    margin-bottom: 24px;
    text-align: left;
  }

  .section-heading h2,
  .split-copy h2,
  .section-copy h2,
  .final-inner h2 {
    font-size: 30px;
  }

  .games-grid,
  .feature-layout,
  .quick-grid,
  .offer-grid,
  .games-grid-wide {
    grid-template-columns: 1fr;
  }

  .feature-card {
    grid-column: span 1;
  }

  .page-hero .logo-banner {
    width: min(100%, 240px);
  }

  .mini-card {
    min-height: 0;
  }

  th,
  td {
    padding: 14px;
  }

  .review-card,
  .quick-card,
  .offer-card {
    padding: 18px;
  }

  .offer-card p {
    min-height: 0;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .sticky-play {
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    width: auto;
  }
}
