:root {
  --navy-950: #04142f;
  --navy-900: #052049;
  --navy-800: #0a356c;
  --navy-700: #114f89;
  --navy-500: #2b6bcc;
  --sky-100: #eff6ff;
  --sky-50: #f7fbff;
  --gold-500: #f7d861;
  --gold-600: #e19926;
  --gold-700: #c57a16;
  --red-500: #d45e0c;
  --red-700: #961719;
  --ink-900: #0f172a;
  --ink-700: #334155;
  --ink-500: #64748b;
  --white: #ffffff;
  --border-light: rgba(11, 32, 69, 0.12);
  --glass: rgba(255, 255, 255, 0.14);
  --shadow-soft: 0 24px 60px rgba(5, 32, 73, 0.18);
  --shadow-card: 0 16px 40px rgba(8, 37, 82, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 40px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--ink-900);
  background:
    radial-gradient(circle at top left, rgba(247, 216, 97, 0.22), transparent 28rem),
    linear-gradient(180deg, #f4f9ff 0%, #eef6ff 38%, #ffffff 100%);
  min-width: 320px;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 50;
  padding: 12px 16px;
  background: var(--white);
  color: var(--navy-900);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.94rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

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

.button--solid {
  color: var(--navy-950);
  background: linear-gradient(135deg, #ffea7e 0%, #f5c749 48%, #e1911a 100%);
  box-shadow: 0 14px 28px rgba(245, 199, 73, 0.3);
}

.button--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.button--outline {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(4, 20, 47, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.brand img {
  width: 208px;
  height: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.lang-switcher {
  position: relative;
  flex: 0 0 auto;
}

.lang-switcher__summary {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  list-style: none;
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.lang-switcher__summary::-webkit-details-marker {
  display: none;
}

.lang-switcher__summary:hover,
.lang-switcher__summary:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
}

.lang-switcher[open] .lang-switcher__summary {
  border-color: rgba(245, 199, 73, 0.5);
  background: rgba(255, 255, 255, 0.14);
}

.lang-switcher__current,
.lang-switcher__option {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.lang-switcher__current::after {
  content: "";
  width: 9px;
  height: 9px;
  margin-left: 2px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.8;
}

.lang-switcher__flag {
  flex: 0 0 auto;
  width: 24px;
  height: 18px;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.18);
}

.lang-switcher__code {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.lang-switcher__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 35;
  display: grid;
  gap: 6px;
  width: min(270px, calc(100vw - 32px));
  max-height: min(70vh, 560px);
  padding: 10px;
  overflow: auto;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.96)),
    radial-gradient(circle at top left, rgba(247, 216, 97, 0.12), transparent 12rem);
  box-shadow: var(--shadow-card);
}

.lang-switcher__option {
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--navy-900);
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lang-switcher__option:hover,
.lang-switcher__option:focus-visible {
  transform: translateX(2px);
  background: rgba(5, 32, 73, 0.06);
}

.lang-switcher__option.is-current {
  background: rgba(5, 32, 73, 0.08);
  color: var(--navy-950);
}

.hero {
  position: relative;
  overflow: clip;
  padding: 68px 0 80px;
  background:
    linear-gradient(102deg, rgba(4, 20, 47, 0.96) 8%, rgba(4, 20, 47, 0.68) 44%, rgba(4, 20, 47, 0.22) 74%),
    radial-gradient(circle at 18% 14%, rgba(247, 216, 97, 0.18), transparent 18rem),
    url("images/hero-bg-1440.webp");
  background:
    linear-gradient(102deg, rgba(4, 20, 47, 0.96) 8%, rgba(4, 20, 47, 0.68) 44%, rgba(4, 20, 47, 0.22) 74%),
    radial-gradient(circle at 18% 14%, rgba(247, 216, 97, 0.18), transparent 18rem),
    image-set(
      url("images/hero-bg-1440.avif") type("image/avif"),
      url("images/hero-bg-1440.webp") type("image/webp")
    );
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -12% -120px auto;
  width: 56%;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.22), transparent 34%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.1), transparent 58%);
  filter: blur(6px);
  pointer-events: none;
}

.hero::after {
  display: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 420px);
  align-items: end;
  gap: 34px;
}

.hero__copy {
  max-width: 640px;
  padding: 38px 0 26px;
  color: var(--white);
}

.hero__copy h1,
.hero__panel h2,
.section-heading h2,
.content-card h2,
.glass-card h2,
.callout-card h2,
.feature-card h2,
.resource-card h3,
.faq-list summary {
  font-family: "Exo 2", "Segoe UI", sans-serif;
}

.hero__copy h1 {
  margin: 0;
  font-size: clamp(2.9rem, 5vw, 5.1rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero__lead {
  max-width: 640px;
  margin: 20px 0 0;
  font-size: 1.04rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.86);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button--hero {
  min-width: 192px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.hero__stats li {
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.hero__stats strong {
  display: block;
  font-family: "Exo 2", "Segoe UI", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--gold-500);
}

.hero__stats span {
  display: block;
  margin-top: 8px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
}

.hero__panel {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08)),
    linear-gradient(155deg, rgba(16, 80, 138, 0.84), rgba(4, 20, 47, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-soft);
  color: var(--white);
}

.panel-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-950);
  background: linear-gradient(135deg, #fff6b7, #f6ca4e);
}

.hero__panel h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 1.05;
}

.fact-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
}

.fact-list div {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.fact-list dt {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.fact-list dd {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.panel-note {
  margin-top: 20px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.94rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.feature-strip {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding: 6px 0 12px;
}

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

.feature-card,
.content-card,
.glass-card,
.callout-card,
.resource-card,
.faq-list details {
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
}

.feature-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.74));
}

.feature-card__index {
  margin: 0 0 14px;
  font-family: "Exo 2", "Segoe UI", sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--red-500);
}

.feature-card h2 {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.1;
}

.feature-card p:last-child {
  margin: 14px 0 0;
  line-height: 1.7;
  color: var(--ink-700);
}

.section {
  padding: 46px 0;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
  gap: 20px;
}

.content-card {
  padding: 32px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.88);
}

.content-card--primary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.9)),
    linear-gradient(135deg, rgba(247, 216, 97, 0.08), transparent 38%);
}

.content-card h2,
.glass-card h2,
.callout-card h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.04;
  text-wrap: balance;
}

.content-card p:not(.eyebrow),
.glass-card p:not(.eyebrow),
.callout-card p:not(.eyebrow),
.resource-card p {
  margin: 16px 0 0;
  line-height: 1.78;
  color: var(--ink-700);
}

.check-list,
.step-list {
  margin: 18px 0 0;
  padding-left: 20px;
  line-height: 1.75;
  color: var(--ink-700);
}

.check-list li + li,
.step-list li + li {
  margin-top: 10px;
}

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

.glass-card {
  padding: 30px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82)),
    radial-gradient(circle at top right, rgba(247, 216, 97, 0.14), transparent 15rem);
}

.callout-card {
  padding: 30px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, rgba(4, 20, 47, 0.96), rgba(17, 80, 138, 0.92)),
    radial-gradient(circle at top right, rgba(247, 216, 97, 0.22), transparent 14rem);
  color: var(--white);
}

.callout-card p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.84);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.02;
  text-wrap: balance;
}

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

.faq-list details {
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
}

.faq-list summary {
  position: relative;
  list-style: none;
  padding: 22px 64px 22px 24px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--navy-900);
  background: linear-gradient(135deg, rgba(247, 216, 97, 0.3), rgba(225, 153, 38, 0.2));
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
  line-height: 1.75;
  color: var(--ink-700);
}

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

.resource-card {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  scroll-margin-top: 120px;
}

.resource-card h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.15;
}

.site-footer {
  margin-top: 22px;
  background: #f7f7f9;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1fr);
  gap: 40px;
  align-items: stretch;
  padding: 54px 0 30px;
}

.footer-brand {
  display: grid;
  gap: 26px;
  justify-items: start;
}

.footer-brand__logo img {
  width: 252px;
  height: auto;
}

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

.footer-badges img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.contact-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86)),
    radial-gradient(circle at top right, rgba(247, 216, 97, 0.18), transparent 12rem);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-card);
}

.contact-card h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.04;
  text-wrap: balance;
}

.contact-card__row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-card__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(247, 216, 97, 0.26), rgba(212, 94, 12, 0.14));
  font-size: 1.2rem;
}

.contact-card__label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-700);
}

.contact-card__text {
  margin: 6px 0 0;
  line-height: 1.75;
  color: var(--ink-700);
}

.contact-card__button {
  justify-self: start;
}

.footer-legal-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 34px;
  padding: 0 20px 20px;
  font-size: 1rem;
  line-height: 1.4;
}

.footer-legal-links a {
  color: var(--ink-900);
}

.footer-legal-links a:hover,
.footer-legal-links a:focus-visible {
  color: var(--navy-700);
}

.footer-age {
  width: min(88px, calc(100% - 40px));
  margin: 0 auto 22px;
  padding: 10px 0;
  border-radius: 999px;
  text-align: center;
  font-family: "Exo 2", "Segoe UI", sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--navy-950);
  background: linear-gradient(135deg, #ffe98a, #efaa2b);
  box-shadow: 0 12px 26px rgba(239, 170, 43, 0.22);
}

.footer-payments {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 20px 26px;
}

.footer-payments img {
  width: 110px;
  height: 36px;
  padding: 8px 14px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
  object-fit: contain;
}

.footer-bottom {
  padding: 18px 16px 34px;
  text-align: center;
  font-size: 0.98rem;
  color: var(--ink-700);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p + p {
  margin-top: 8px;
}

.footer-bottom a {
  color: var(--navy-700);
}

.page-main {
  padding: 54px 0 60px;
}

.breadcrumb {
  margin-bottom: 22px;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink-500);
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.breadcrumb li + li::before {
  content: "/";
  color: rgba(100, 116, 139, 0.7);
}

.breadcrumb a {
  color: var(--navy-700);
}

.page-hero {
  margin-bottom: 22px;
}

.page-hero h1 {
  margin: 0;
  font-family: "Exo 2", "Segoe UI", sans-serif;
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.page-hero p:last-child {
  max-width: 760px;
  margin: 16px 0 0;
  line-height: 1.75;
  color: var(--ink-700);
}

.page-card {
  padding: 32px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-card);
}

.prose > *:first-child {
  margin-top: 0;
}

.prose h2,
.prose h3 {
  font-family: "Exo 2", "Segoe UI", sans-serif;
  line-height: 1.08;
  text-wrap: balance;
}

.prose h2 {
  margin: 30px 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.prose h3 {
  margin: 24px 0 10px;
  font-size: clamp(1.28rem, 2vw, 1.7rem);
}

.prose p,
.prose li {
  line-height: 1.82;
  color: var(--ink-700);
}

.prose ul,
.prose ol {
  padding-left: 22px;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
}

.prose th,
.prose td {
  padding: 12px 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  text-align: left;
  vertical-align: top;
}

.prose th {
  color: var(--navy-950);
  background: rgba(247, 216, 97, 0.18);
}

[dir="rtl"] body,
[dir="rtl"] .hero__copy,
[dir="rtl"] .hero__panel,
[dir="rtl"] .content-section,
[dir="rtl"] .page-hero,
[dir="rtl"] .page-card,
[dir="rtl"] .contact-card,
[dir="rtl"] .footer-bottom,
[dir="rtl"] .toc-panel__summary,
[dir="rtl"] .toc-panel__link,
[dir="rtl"] .faq-list summary,
[dir="rtl"] .fact-list,
[dir="rtl"] .facts-table th,
[dir="rtl"] .facts-table td,
[dir="rtl"] .symbols-table th,
[dir="rtl"] .symbols-table td,
[dir="rtl"] .prose th,
[dir="rtl"] .prose td {
  text-align: right;
}

[dir="rtl"] .contact-card__row {
  flex-direction: row-reverse;
}

[dir="rtl"] .hero__stats,
[dir="rtl"] .footer-badges,
[dir="rtl"] .footer-payments,
[dir="rtl"] .casino-row__tags {
  justify-content: flex-end;
}

[dir="rtl"] .faq-list summary {
  padding-right: 0;
  padding-left: 42px;
}

[dir="rtl"] .faq-list summary::after {
  right: auto;
  left: 0;
}

[dir="rtl"] .lang-switcher__menu {
  right: auto;
  left: 0;
}

[dir="rtl"] .toc-panel__link--h3 {
  padding-left: 0;
  padding-right: 28px;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 25;
  min-width: 58px;
  height: 58px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffe98a, #eb9b24);
  color: var(--navy-950);
  font-family: "Exo 2", "Segoe UI", sans-serif;
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(235, 155, 36, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  cursor: pointer;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

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

  .hero__inner,
  .section-grid,
  .strategy-layout,
  .resource-grid,
  .feature-strip__grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    padding-top: 12px;
  }

  .hero__panel {
    max-width: 620px;
  }

  .contact-card__button {
    width: 100%;
    justify-self: stretch;
  }
}

@media (max-width: 720px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(4, 20, 47, 0.96) 10%, rgba(4, 20, 47, 0.7) 56%, rgba(4, 20, 47, 0.28) 100%),
      radial-gradient(circle at 24% 10%, rgba(247, 216, 97, 0.16), transparent 13rem),
      url("images/hero-bg-768.webp");
    background:
      linear-gradient(180deg, rgba(4, 20, 47, 0.96) 10%, rgba(4, 20, 47, 0.7) 56%, rgba(4, 20, 47, 0.28) 100%),
      radial-gradient(circle at 24% 10%, rgba(247, 216, 97, 0.16), transparent 13rem),
      image-set(
        url("images/hero-bg-768.avif") type("image/avif"),
        url("images/hero-bg-768.webp") type("image/webp")
      );
    background-position: 68% top;
    background-size: cover;
  }

  .hero::before {
    width: 88%;
    inset: auto auto -40px 42%;
  }

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

  .content-card,
  .glass-card,
  .callout-card,
  .hero__panel,
  .feature-card {
    padding: 24px;
  }

  .faq-list summary {
    padding-right: 58px;
  }

  .footer-brand {
    justify-items: center;
  }

  .footer-badges {
    justify-content: center;
  }

  .header-shell,
  .header-actions,
  .contact-card__row {
    flex-wrap: wrap;
  }

  .header-actions {
    width: 100%;
    margin-left: 0;
  }

  .header-actions .button,
  .lang-switcher {
    flex: 1 1 180px;
  }

  .lang-switcher__summary {
    width: 100%;
  }

  .lang-switcher__menu {
    left: 0;
    right: auto;
    width: 100%;
  }

  .page-card,
  .contact-card {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

.review-stack {
  display: grid;
  gap: 24px;
}

.content-section {
  padding: 32px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9)),
    radial-gradient(circle at top right, rgba(247, 216, 97, 0.1), transparent 14rem);
  box-shadow: var(--shadow-card);
  scroll-margin-top: 118px;
}

.content-section h2,
.mini-card h3 {
  font-family: "Exo 2", "Segoe UI", sans-serif;
}

.content-section h2 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.02;
  text-wrap: balance;
}

.content-section h3 {
  margin: 28px 0 12px;
  font-family: "Exo 2", "Segoe UI", sans-serif;
  font-size: 1.24rem;
  line-height: 1.2;
  scroll-margin-top: 118px;
}

.content-section p {
  margin: 16px 0 0;
  line-height: 1.8;
  color: var(--ink-700);
}

.content-section code {
  padding: 0.12rem 0.42rem;
  border-radius: 8px;
  background: rgba(5, 32, 73, 0.08);
  color: var(--navy-900);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.92em;
}

.facts-table {
  width: 100%;
  margin-top: 18px;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 22px;
  border-style: hidden;
  box-shadow: 0 0 0 1px rgba(5, 32, 73, 0.08);
}

.facts-table th,
.facts-table td {
  padding: 15px 18px;
  text-align: left;
  vertical-align: top;
  border: 1px solid rgba(5, 32, 73, 0.08);
}

.facts-table thead th {
  background: linear-gradient(135deg, rgba(5, 32, 73, 0.94), rgba(17, 79, 137, 0.88));
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.facts-table tbody th {
  width: 26%;
  background: rgba(5, 32, 73, 0.04);
  color: var(--navy-900);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.facts-table tbody td {
  line-height: 1.65;
  color: var(--ink-700);
}

.symbols-table-wrap {
  overflow: hidden;
  margin: 22px 0 8px;
  border: 1px solid rgba(5, 32, 73, 0.1);
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(247, 216, 97, 0.12), transparent 14rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.92));
}

.symbols-table {
  width: 100%;
  border-collapse: collapse;
}

.symbols-table th,
.symbols-table td {
  padding: 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(5, 32, 73, 0.08);
}

.symbols-table thead th {
  background: rgba(5, 32, 73, 0.94);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.symbol-cell {
  display: grid;
  gap: 12px;
  min-width: 160px;
}

.symbol-cell strong {
  color: var(--navy-900);
  font-size: 1rem;
}

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

.symbol-icons img {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  background: radial-gradient(circle at top left, rgba(247, 216, 97, 0.18), rgba(255, 255, 255, 0.92));
  object-fit: contain;
}

.casino-rankings {
  display: grid;
  gap: 14px;
  margin: 22px 0 12px;
}

.casino-row {
  position: relative;
  display: grid;
  grid-template-columns: 48px 98px minmax(0, 1.25fr) minmax(168px, 0.76fr) 142px;
  align-items: center;
  gap: 14px;
  padding: 16px 16px 16px 14px;
  border: 1px solid rgba(5, 32, 73, 0.1);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 16%, rgba(247, 216, 97, 0.16), transparent 12rem),
    radial-gradient(circle at 12% 52%, rgba(43, 107, 204, 0.12), transparent 12rem),
    linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: 0 18px 42px rgba(8, 37, 82, 0.1);
}

.casino-row__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  max-width: calc(100% - 24px);
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffea7e 0%, #f5c749 48%, #e1911a 100%);
  color: #2f1200;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(245, 199, 73, 0.24);
}

.casino-row__badge--secondary {
  background: linear-gradient(135deg, #9bddff, #42b5ff);
  color: #052049;
}

.casino-row__rank {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(225, 153, 38, 0.34);
  border-radius: 50%;
  background: rgba(247, 216, 97, 0.08);
  color: var(--gold-700);
  font-size: 1.05rem;
  font-weight: 900;
}

.casino-row__logo {
  display: grid;
  min-height: 74px;
  place-items: center;
  padding: 12px;
  border: 1px solid rgba(5, 32, 73, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
}

.casino-row__logo img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 46px;
  object-fit: contain;
}

.casino-row__meta {
  min-width: 0;
}

.casino-row__title {
  margin: 0;
  color: var(--navy-900);
  font-family: "Exo 2", "Segoe UI", sans-serif;
  font-size: clamp(1.18rem, 1.7vw, 1.48rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
}

.casino-row__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.casino-row__stars {
  color: var(--gold-600);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
}

.casino-row__score {
  color: var(--ink-500);
  font-size: 0.84rem;
  font-weight: 800;
}

.casino-row__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.casino-row__tags span {
  padding: 6px 10px;
  border: 1px solid rgba(5, 32, 73, 0.08);
  border-radius: 999px;
  background: rgba(5, 32, 73, 0.04);
  color: var(--ink-700);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.15;
}

.casino-row__offer {
  align-self: center;
  text-align: right;
}

.casino-row__amount,
.casino-row__spins,
.casino-rankings__note {
  margin: 0;
}

.casino-row__amount {
  color: var(--gold-700);
  font-family: "Exo 2", "Segoe UI", sans-serif;
  font-size: clamp(1.28rem, 2.25vw, 1.82rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  text-wrap: balance;
}

.casino-row__spins {
  margin-top: 4px;
  color: var(--ink-500);
  font-size: 0.78rem;
  font-weight: 800;
}

.casino-row__action {
  display: flex;
  justify-content: flex-end;
}

.casino-row__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 132px);
  min-height: 48px;
  padding: 10px 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffea7e 0%, #f5c749 48%, #e1911a 100%);
  color: #2f1200;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(245, 199, 73, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.casino-row__button:hover,
.casino-row__button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(245, 199, 73, 0.34);
}

.casino-rankings__note {
  color: var(--ink-500);
  font-size: 0.78rem;
  font-weight: 800;
}

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

.mini-card {
  padding: 22px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.9)),
    radial-gradient(circle at top left, rgba(247, 216, 97, 0.1), transparent 12rem);
  border: 1px solid rgba(5, 32, 73, 0.08);
}

.mini-card h3 {
  margin: 0;
}

.content-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.content-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.7;
  color: var(--ink-700);
}

.content-list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--red-500));
}

.faq-section {
  scroll-margin-top: 118px;
}

.toc-panel {
  position: relative;
  z-index: 3;
  margin-top: 10px;
  padding: 0 0 28px;
}

.toc-panel__details {
  overflow: hidden;
  border: 1px solid rgba(5, 32, 73, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 251, 255, 0.92)),
    radial-gradient(circle at top left, rgba(247, 216, 97, 0.12), transparent 14rem);
  box-shadow: var(--shadow-card);
}

.toc-panel__summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
}

.toc-panel__summary::-webkit-details-marker {
  display: none;
}

.toc-panel__summary::after {
  content: "+";
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(5, 32, 73, 0.08);
  color: var(--navy-900);
  font-family: "Exo 2", "Segoe UI", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
}

.toc-panel__details[open] .toc-panel__summary::after {
  content: "−";
}

.toc-panel__title {
  display: inline-flex;
  align-items: center;
  font-family: "Exo 2", "Segoe UI", sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-700);
}

.toc-panel__hint {
  margin-left: auto;
  color: var(--ink-500);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
}

.toc-panel__body {
  padding: 0 20px 20px;
}

.toc-panel__list {
  display: grid;
  gap: 10px;
}

.toc-panel__link {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(5, 32, 73, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--navy-900);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.toc-panel__link:hover,
.toc-panel__link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(225, 153, 38, 0.24);
  background: rgba(255, 255, 255, 0.96);
}

.toc-panel__link--h3 {
  min-height: 40px;
  margin-left: 18px;
  padding-inline: 14px;
  color: var(--ink-700);
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(5, 32, 73, 0.04);
}

.media-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.9fr);
  gap: 20px;
  align-items: stretch;
}

.media-showcase__video,
.media-card,
.inline-media {
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 251, 255, 0.9)),
    radial-gradient(circle at top left, rgba(247, 216, 97, 0.1), transparent 14rem);
  box-shadow: var(--shadow-card);
}

.media-showcase__video {
  position: relative;
  align-self: stretch;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
}

.media-showcase__video iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.media-showcase__stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  height: 100%;
  align-content: start;
}

.media-card {
  margin: 0;
}

.media-card img,
.inline-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inline-media {
  margin: 22px 0 0;
}

.inline-media img {
  aspect-ratio: 16 / 9;
}

.demo-slot {
  overflow: hidden;
  margin-top: 22px;
  border: 1px solid rgba(5, 32, 73, 0.12);
  border-radius: 26px;
  background: rgba(4, 20, 47, 0.96);
  box-shadow: var(--shadow-card);
}

.demo-slot__preview {
  position: relative;
  min-height: clamp(15rem, 48vw, 22rem);
}

.demo-slot.is-demo-active .demo-slot__preview {
  display: none;
}

.demo-slot__preview img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: 0.8;
}

.demo-slot__preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(43, 107, 204, 0.14), transparent 16rem),
    linear-gradient(180deg, rgba(4, 20, 47, 0.18), rgba(4, 20, 47, 0.8));
}

.demo-slot__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 24px;
  text-align: center;
}

.demo-slot__overlay span {
  color: var(--white);
  font-family: "Exo 2", "Segoe UI", sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.55);
}

.demo-slot__button {
  border: 0;
  cursor: pointer;
}

.demo-slot__link {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-slot__link:hover,
.demo-slot__link:focus-visible {
  color: var(--gold-500);
}

.demo-slot__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 24rem;
  background: #020714;
}

.demo-slot__frame[hidden] {
  display: none;
}

.demo-slot__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 980px) {
  .media-showcase {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .media-showcase__video {
    align-self: start;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .media-showcase__stack {
    height: auto;
  }

  .casino-row {
    grid-template-columns: 48px 96px minmax(0, 1fr) 132px;
  }

  .casino-row__offer {
    grid-column: 3 / 4;
    text-align: left;
  }

  .casino-row__action {
    grid-column: 4 / 5;
    grid-row: 1 / span 2;
    align-self: center;
  }
}

@media (max-width: 860px) {
  .toc-panel {
    margin-top: 12px;
    padding-bottom: 24px;
  }

  .toc-panel__summary,
  .toc-panel__body {
    padding-inline: 16px;
  }

  .toc-panel__summary {
    padding-block: 16px;
  }

  .toc-panel__body {
    padding-bottom: 16px;
  }

  .media-showcase__stack {
    grid-template-columns: 1fr 1fr;
  }

  .facts-table tbody th {
    width: 34%;
  }

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

  .casino-row {
    grid-template-columns: 46px 88px minmax(0, 1fr);
    padding-top: 52px;
  }

  .casino-row__offer,
  .casino-row__action {
    grid-column: 1 / -1;
  }

  .casino-row__action {
    grid-row: auto;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .toc-panel__summary {
    align-items: flex-start;
    padding-right: 14px;
  }

  .toc-panel__hint {
    max-width: 9rem;
    margin-left: 0;
    font-size: 0.74rem;
  }

  .toc-panel__link {
    min-height: 40px;
    padding-inline: 14px;
  }

  .toc-panel__link--h3 {
    min-height: 36px;
    margin-left: 12px;
    padding-inline: 12px;
  }

  .content-section {
    padding: 24px 18px;
  }

  .content-section h3 {
    font-size: 1.12rem;
  }

  .facts-table thead,
  .symbols-table thead {
    display: none;
  }

  .facts-table,
  .facts-table tbody,
  .facts-table tr,
  .facts-table th,
  .facts-table td,
  .symbols-table,
  .symbols-table tbody,
  .symbols-table tr,
  .symbols-table td {
    display: block;
    width: 100%;
  }

  .facts-table {
    box-shadow: none;
    border-radius: 0;
  }

  .facts-table tr,
  .symbols-table tr {
    padding: 14px 0;
    border-bottom: 1px solid rgba(5, 32, 73, 0.08);
  }

  .facts-table tr:last-child,
  .symbols-table tbody tr:last-child {
    border-bottom: 0;
  }

  .facts-table th,
  .facts-table td,
  .symbols-table td {
    padding: 8px 0;
    border: 0;
  }

  .symbols-table-wrap {
    padding: 0 16px;
  }

  .symbol-cell {
    min-width: 0;
  }

  .media-showcase__stack {
    grid-template-columns: 1fr;
  }

  .casino-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 64px 14px 14px;
  }

  .casino-row__rank {
    position: absolute;
    top: 14px;
    left: 14px;
  }

  .casino-row__badge {
    top: 14px;
    right: 14px;
    max-width: calc(100% - 86px);
  }

  .casino-row__offer,
  .casino-row__action {
    justify-content: stretch;
    text-align: left;
  }

  .casino-row__button {
    width: 100%;
  }

  .demo-slot__frame {
    min-height: 18rem;
  }
}
