:root {
  color-scheme: dark;
  --bg: #07091d;
  --bg-2: #0d1131;
  --panel: rgba(18, 23, 58, 0.78);
  --panel-strong: rgba(21, 20, 58, 0.94);
  --line: rgba(255, 222, 128, 0.22);
  --line-cool: rgba(118, 167, 255, 0.2);
  --text: #f8fbff;
  --muted: #c6d0e8;
  --soft: #8997bd;
  --gold: #f6c84f;
  --gold-2: #ffea92;
  --purple: #7b4dff;
  --violet: #b04cff;
  --cyan: #55d6ff;
  --green: #21c46b;
  --danger: #ff6f91;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 80% 8%, rgba(85, 214, 255, 0.14), transparent 30rem),
    linear-gradient(135deg, #07091d 0%, #101247 48%, #170b2f 100%);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 72%);
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 999;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.75rem 1rem;
  overflow: visible;
  clip: auto;
  color: #071018;
  background: var(--gold);
}

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

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 24px, 1240px);
  min-height: 74px;
  margin-inline: auto;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  letter-spacing: 0;
}

.brand-wings {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid rgba(255, 234, 146, 0.7);
  border-radius: 50%;
  background:
    linear-gradient(145deg, #fff1a6, #d18b16 48%, #6b3905);
  box-shadow: 0 0 22px rgba(246, 200, 79, 0.34);
}

.brand-wings::before {
  width: 18px;
  height: 18px;
  content: "";
  clip-path: polygon(50% 0, 64% 37%, 100% 38%, 70% 58%, 82% 100%, 50% 72%, 18% 100%, 30% 58%, 0 38%, 36% 37%);
  background: #17102e;
}

.brand-text {
  display: grid;
  line-height: 0.95;
  text-transform: uppercase;
}

.brand-text strong {
  color: var(--gold-2);
  font-size: 0.75rem;
}

.brand-text span {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 900;
  text-shadow: 0 2px 0 #7d3a0c;
}

.primary-nav {
  display: none;
  position: absolute;
  inset: 74px 12px auto;
  padding: 0.75rem;
  border: 1px solid var(--line-cool);
  border-radius: var(--radius);
  background: rgba(9, 12, 39, 0.98);
  box-shadow: var(--shadow);
}

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

.primary-nav a {
  padding: 0.85rem 0.95rem;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: #07091d;
  background: var(--gold);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 0.7rem;
}

.language-switch,
.nav-toggle {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.language-switch {
  padding: 0 0.9rem;
  font-weight: 800;
}

.nav-toggle-line,
.nav-toggle-line::before,
.nav-toggle-line::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  content: "";
}

.nav-toggle-line {
  position: relative;
}

.nav-toggle-line::before,
.nav-toggle-line::after {
  position: absolute;
  left: 0;
}

.nav-toggle-line::before {
  top: -6px;
}

.nav-toggle-line::after {
  top: 6px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-gold {
  color: #16100a;
  background:
    linear-gradient(180deg, #fff0a4 0%, var(--gold) 52%, #d68c10 100%);
  box-shadow: 0 14px 34px rgba(246, 200, 79, 0.25);
}

.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.button-small {
  min-height: 42px;
  padding: 0.65rem 0.95rem;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  width: 100%;
  min-height: calc(100svh - 74px);
  padding-block: 3.5rem 2rem;
}

.hero-bg {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 9, 29, 0.98) 0%, rgba(12, 15, 52, 0.88) 46%, rgba(12, 15, 52, 0.24) 100%),
    linear-gradient(180deg, rgba(123, 77, 255, 0.14), rgba(7, 9, 29, 0.98));
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 2rem;
}

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

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.45rem, 8vw, 5.8rem);
  font-weight: 950;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 3.1rem);
  font-weight: 920;
}

h3 {
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 880;
}

.hero-lead {
  max-width: 720px;
  margin: 1rem 0 1.4rem;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-actions,
.demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-block: 1.25rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.trust-row li {
  padding: 0.6rem 0.78rem;
  border: 1px solid rgba(246, 200, 79, 0.28);
  border-radius: 999px;
  color: #f7f1dc;
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-art {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 234, 146, 0.18);
  border-radius: var(--radius);
  background: #101331;
  box-shadow: var(--shadow);
}

.hero-art picture,
.hero-art img {
  width: 100%;
  height: 100%;
  min-height: 280px;
}

.hero-art picture {
  display: block;
}

.hero-art img {
  object-fit: cover;
  object-position: 62% center;
}

.hero-art figcaption {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  max-width: calc(100% - 1.7rem);
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #eef3ff;
  background: rgba(7, 9, 29, 0.74);
  font-size: 0.78rem;
  backdrop-filter: blur(12px);
}

.quick-facts,
.demo,
.content,
.casino,
.reviews,
.faq {
  padding-block: 4rem;
}

.section-heading {
  display: grid;
  gap: 0.65rem;
  max-width: 780px;
  margin-bottom: 1.4rem;
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.section-heading.compact {
  margin-bottom: 1rem;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.fact-card,
.review-card {
  min-height: 150px;
  padding: 1rem;
  border: 1px solid var(--line-cool);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    var(--panel);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.fact-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(255, 234, 146, 0.38);
  border-radius: 50%;
  color: #1b1308;
  background: var(--gold);
  font-size: 0.85rem;
  font-weight: 950;
  box-shadow: 0 0 24px rgba(246, 200, 79, 0.22);
}

.fact-card h3 {
  color: var(--muted);
  font-size: 0.88rem;
}

.fact-card p {
  margin: 0.25rem 0 0;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 950;
}

.demo-grid {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

.demo-copy,
.demo-frame-shell,
.article-body,
.toc,
.table-wrap,
.faq-list,
.footer-grid {
  border: 1px solid var(--line-cool);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.demo-copy {
  padding: 1.1rem;
}

.demo-copy p {
  color: var(--muted);
}

.text-link {
  align-self: center;
  color: var(--gold-2);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.fine-print,
.disclosure {
  color: var(--soft);
  font-size: 0.9rem;
}

.demo-frame-shell {
  overflow: hidden;
}

.demo-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 46px;
  padding: 0 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.04);
}

.demo-frame-shell iframe {
  display: block;
  width: 100%;
  height: clamp(360px, 62vw, 650px);
  border: 0;
  background: #080b24;
}

.content-layout {
  display: grid;
  gap: 1rem;
}

.toc {
  display: grid;
  gap: 0.35rem;
  align-self: start;
  padding: 1rem;
}

.toc p {
  margin: 0 0 0.35rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.toc a {
  padding: 0.55rem 0.65rem;
  border-radius: 6px;
  color: var(--muted);
  text-decoration: none;
}

.toc a:hover {
  color: #07091d;
  background: var(--gold);
}

.article-body {
  padding: clamp(1.1rem, 3vw, 2rem);
}

.article-body section + section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.article-body h3 {
  margin-bottom: 0.8rem;
}

.article-body p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1rem;
}

.article-body strong {
  color: #fff7d8;
}

.info-panel {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border: 1px solid rgba(246, 200, 79, 0.24);
  border-radius: var(--radius);
  background: rgba(246, 200, 79, 0.08);
}

.info-panel span {
  color: var(--muted);
}

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

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

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

thead th {
  color: var(--gold-2);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.04);
}

tbody th {
  color: #fff;
  font-size: 1.05rem;
}

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

tbody tr:hover {
  background: rgba(255, 255, 255, 0.035);
}

.rating {
  display: inline-flex;
  min-width: 72px;
  justify-content: center;
  padding: 0.35rem 0.5rem;
  border: 1px solid rgba(33, 196, 107, 0.42);
  border-radius: 999px;
  color: #d7ffe9;
  background: rgba(33, 196, 107, 0.12);
  font-weight: 900;
}

.table-button {
  min-height: 40px;
  padding: 0.55rem 0.8rem;
  color: #07120c;
  background: var(--green);
}

.reviews-grid {
  display: grid;
  gap: 1rem;
}

.review-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0.15rem 0.8rem;
  min-height: 0;
}

.avatar {
  grid-row: span 3;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #151014;
  background:
    linear-gradient(145deg, #fff0a4, #d68c10);
  font-weight: 950;
}

.review-card h3 {
  align-self: end;
  font-size: 1rem;
}

.review-card p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
}

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

.faq-list {
  display: grid;
  overflow: hidden;
}

details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

details:last-child {
  border-bottom: 0;
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

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

summary::after {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  color: #111;
  background: var(--gold);
  content: "+";
  font-weight: 950;
}

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

details p {
  max-width: 880px;
  margin: 0;
  padding: 0 1rem 1rem;
  color: var(--muted);
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(8, 11, 36, 0.72), rgba(5, 7, 20, 0.96)),
    #050714;
}

.footer-grid {
  display: grid;
  gap: 1.25rem;
  padding: 1.25rem;
}

.footer-grid h2 {
  font-size: 1rem;
}

.footer-grid p,
.footer-bottom p {
  color: var(--muted);
}

.footer-grid ul {
  display: grid;
  gap: 0.45rem;
  padding: 0;
  margin: 0.75rem 0 0;
  list-style: none;
}

.footer-grid a {
  color: var(--gold-2);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-block: 1.2rem 1.6rem;
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

.legal-page {
  max-width: 860px;
  padding-block: 4rem;
}

.legal-page h1 {
  font-size: clamp(2.3rem, 6vw, 4.2rem);
}

.legal-page h2 {
  margin-top: 2rem;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.legal-page p {
  color: var(--muted);
}

@media (min-width: 720px) {
  .section-wrap {
    width: min(100% - 48px, var(--container));
  }

  .header-actions {
    display: inline-flex;
  }

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

  .demo-copy {
    padding: 1.5rem;
  }

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

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 0.8fr;
    padding: 1.5rem;
  }
}

@media (min-width: 980px) {
  .nav-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .primary-nav a {
    padding: 0.65rem 0.75rem;
  }

  .hero {
    display: grid;
    align-items: center;
    min-height: calc(100svh - 74px);
    padding-block: 4.2rem 2.4rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1fr);
  }

  .hero-art {
    min-height: 560px;
    transform: translateX(2vw);
  }

  .hero-art img {
    min-height: 560px;
  }

  .demo-grid {
    grid-template-columns: minmax(320px, 0.7fr) minmax(520px, 1.3fr);
  }

  .content-layout {
    grid-template-columns: 280px minmax(0, 1fr);
    align-items: start;
  }

  .toc {
    position: sticky;
    top: 94px;
  }
}

@media (min-width: 1180px) {
  .header-inner {
    gap: 1.5rem;
  }

  .primary-nav a {
    padding-inline: 0.85rem;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-top: 2.2rem;
  }

  .brand-text span {
    font-size: 1.05rem;
  }

  .hero-actions .button,
  .demo-actions .button,
  .demo-actions .text-link {
    width: 100%;
  }

  .trust-row li {
    width: 100%;
    border-radius: var(--radius);
  }

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

  .hero-art figcaption {
    position: static;
    border-width: 1px 0 0;
    border-radius: 0;
  }

  .demo-topbar {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 0.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
