:root {
  --bg-deep: #120508;
  --bg-main: #2a0c14;
  --bg-mid: #4a1522;
  --bg-card: #321018;
  --accent-red: #9b1b3a;
  --accent-red-bright: #c92a4a;
  --accent-purple: #5c2478;
  --accent-gold: #d4af37;
  --accent-gold-light: #f0d78c;
  --accent-gold-dark: #a8862a;
  --text: #faf5f0;
  --text-muted: #c9a8ae;
  --surface: #3a121c;
  --surface-card: #2f1018;
  --border: rgba(212, 175, 55, 0.28);
  --border-red: rgba(201, 42, 74, 0.35);
  --radius: 10px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 8px 28px rgba(212, 175, 55, 0.12);
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* legacy aliases */
  --bow-teal: var(--bg-main);
  --bow-teal-deep: var(--bg-deep);
  --bow-teal-mid: var(--bg-mid);
  --accent-magenta: var(--accent-red-bright);
  --accent-cyan: var(--accent-gold-light);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  color: var(--text);
  background: var(--bg-deep);
  line-height: 1.55;
  overflow-x: clip;
}

img,
video,
svg {
  max-width: 100%;
  height: auto;
}

.game-card-visual img,
.live-game-visual img {
  height: 100%;
}

a {
  color: var(--accent-gold-light);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100000;
  padding: 0.75rem 1rem;
  background: var(--accent-gold);
  color: #1a1508;
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-deep) 100%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.header-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.65rem max(1rem, env(safe-area-inset-right, 0px)) 0.65rem max(1rem, env(safe-area-inset-left, 0px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 0.75rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  min-width: 0;
}

.logo-link img {
  height: 36px;
  width: auto;
  max-height: 36px;
  object-fit: contain;
}

.nav-main {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 0.5rem;
}

.nav-main a {
  color: var(--text);
  padding: 0.45rem 0.65rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.nav-main a:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--accent-gold-light);
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(180deg, var(--accent-gold-light) 0%, var(--accent-gold) 55%, var(--accent-gold-dark) 100%);
  color: #1a1508;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(212, 175, 55, 0.55);
  text-decoration: none;
  color: #1a1508;
}

.btn-outline {
  background: rgba(42, 12, 20, 0.6);
  color: var(--accent-gold-light);
  border: 2px solid var(--accent-gold);
  box-shadow: 0 0 0 1px rgba(201, 42, 74, 0.2), 0 8px 28px rgba(0, 0, 0, 0.25);
}

.btn-outline:hover {
  transform: translateY(-1px);
  background: rgba(212, 175, 55, 0.12);
  text-decoration: none;
  color: #fff8e0;
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.25), 0 8px 28px rgba(0, 0, 0, 0.3);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.5rem 0.6rem;
  border-radius: 8px;
  cursor: pointer;
  line-height: 0;
}

.menu-toggle-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
  height: 18px;
}

.menu-toggle-bars span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent-gold-light), var(--accent-gold));
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

@media (max-width: 960px) {
  .menu-toggle {
    display: block;
    flex-shrink: 0;
    order: 2;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .logo-link {
    order: 0;
    flex: 1 1 auto;
    min-width: 0;
  }

  .header-actions {
    order: 3;
    flex-shrink: 0;
  }

  .header-actions .btn {
    padding: 0.5rem 0.7rem;
    font-size: 0.8rem;
    white-space: nowrap;
  }

  .nav-main {
    display: none;
    order: 4;
    flex-basis: 100%;
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    flex-direction: column;
    background: var(--bg-mid);
    padding: 0.75rem 0 0;
    margin: 0;
    border-bottom: none;
    align-items: stretch;
    width: 100%;
    box-sizing: border-box;
  }

  .nav-main.is-open {
    display: flex;
  }

  .nav-main a {
    padding: 0.75rem 1rem;
    white-space: normal;
    text-align: center;
  }
}

.hero {
  background:
    radial-gradient(ellipse 90% 70% at 50% -30%, rgba(201, 42, 74, 0.22), transparent),
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(92, 36, 120, 0.18), transparent),
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(212, 175, 55, 0.1), transparent),
    linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-deep) 60%);
  padding: 3rem max(1rem, env(safe-area-inset-right, 0px)) 3.5rem max(1rem, env(safe-area-inset-left, 0px));
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
}

.hero-block {
  background: var(--bg-deep);
  overflow: hidden;
  max-width: 100%;
}

.hero-banner--lead {
  margin: 0;
  max-width: 100%;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--border);
  box-shadow: none;
  overflow: hidden;
}

.hero-banner--lead img {
  aspect-ratio: 1024 / 420;
  max-height: min(52vh, 420px);
  object-fit: cover;
  object-position: center;
}

.hero--compact {
  padding: 2rem max(1rem, env(safe-area-inset-right, 0px)) 2.5rem max(1rem, env(safe-area-inset-left, 0px));
  background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-deep) 100%);
}

.hero-inner {
  max-width: 920px;
  margin: 0 auto;
  width: 100%;
  min-width: 0;
  text-align: center;
}

.hero h1 {
  font-size: clamp(1.45rem, 4.5vw, 2.65rem);
  font-weight: 800;
  line-height: 1.18;
  margin: 0 auto 1.25rem;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  max-width: min(36rem, 100%);
  text-align: center;
  background: linear-gradient(135deg, #fff 0%, var(--accent-gold-light) 50%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.2);
}

.hero-badge {
  display: inline-block;
  max-width: 100%;
  margin: 0 auto 1.1rem;
  padding: 0.45rem 1.1rem;
  box-sizing: border-box;
  overflow-wrap: break-word;
  background: linear-gradient(135deg, rgba(201, 42, 74, 0.35), rgba(92, 36, 120, 0.25));
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 999px;
  font-size: 0.92rem;
  color: var(--accent-gold-light);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), var(--shadow-gold);
}

.hero-lead {
  margin: 0 auto 1.25rem;
  max-width: min(62ch, 100%);
  color: var(--text-muted);
  font-size: clamp(1rem, 2.5vw, 1.08rem);
  line-height: 1.65;
  text-align: center;
}

.hero-banner {
  margin: 1.5rem auto 0;
  max-width: 920px;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow), 0 0 0 1px rgba(201, 42, 74, 0.15);
}

.hero-banner img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1024 / 420;
  object-fit: cover;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  justify-content: center;
  align-items: stretch;
  margin: 1.5rem auto 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.hero .btn-primary,
.hero .btn-outline {
  padding: 0.85rem 1.25rem;
  font-size: clamp(0.9rem, 2.8vw, 1.02rem);
  text-align: center;
  line-height: 1.25;
  white-space: normal;
  max-width: 100%;
  box-sizing: border-box;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 max(1.25rem, env(safe-area-inset-right, 0px)) 3rem max(1.25rem, env(safe-area-inset-left, 0px));
  box-sizing: border-box;
  min-width: 0;
  width: 100%;
}

.section {
  padding: 2.85rem 0;
  text-align: center;
  min-width: 0;
  max-width: 100%;
}

.section-alt {
  background: linear-gradient(180deg, rgba(58, 18, 28, 0.95) 0%, var(--surface) 50%, rgba(47, 16, 24, 0.98) 100%);
  margin-left: calc(-1 * max(1.25rem, env(safe-area-inset-left, 0px)));
  margin-right: calc(-1 * max(1.25rem, env(safe-area-inset-right, 0px)));
  padding: 2.85rem max(1.25rem, env(safe-area-inset-left, 0px)) 2.85rem max(1.25rem, env(safe-area-inset-right, 0px));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(212, 175, 55, 0.08);
}

.section h2,
.cta-banner h2 {
  font-size: clamp(1.35rem, 3.4vw, 2.05rem);
  margin: 0 auto 1.15rem;
  max-width: min(36rem, 100%);
  color: var(--accent-gold-light);
  font-weight: 800;
  line-height: 1.2;
  position: relative;
  padding-bottom: 0.65rem;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  text-align: center;
}

.section h2::after,
.cta-banner h2::after {
  content: "";
  display: block;
  width: 4rem;
  height: 4px;
  margin: 0.75rem auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent-red-bright), var(--accent-gold), var(--accent-gold-light));
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.4);
}

.section h3 {
  font-size: clamp(1.12rem, 2.2vw, 1.35rem);
  margin: 1.65rem auto 0.75rem;
  max-width: min(36rem, 100%);
  color: var(--accent-gold-light);
  font-weight: 700;
  text-align: center;
}

.section p {
  margin: 0 auto 1.1rem;
  color: var(--text-muted);
  max-width: min(68ch, 100%);
  font-size: clamp(1rem, 2.5vw, 1.05rem);
  line-height: 1.65;
  overflow-wrap: break-word;
  text-align: center;
}

.section-cta {
  margin-top: 1.5rem;
  text-align: center;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
  gap: 1.25rem;
  margin: 1.5rem auto 0;
  width: 100%;
  min-width: 0;
  max-width: 1100px;
}

.game-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-width: 0;
  transition: transform 0.2s, box-shadow 0.2s;
}

@media (hover: hover) and (pointer: fine) {
  .game-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(212, 175, 55, 0.15);
  }
}

.game-card-visual {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--bg-mid), var(--bg-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.game-card-body {
  padding: 1rem;
  text-align: center;
}

.game-card-body h3 {
  margin: 0 auto 0.5rem;
  font-size: 1.08rem;
  color: var(--text);
  text-align: center;
}

.game-card-body p {
  font-size: 0.9rem;
  margin: 0 auto 0.75rem;
  text-align: center;
}

.live-game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1.35rem;
  margin: 1.75rem auto 0;
  max-width: 1100px;
  width: 100%;
  min-width: 0;
}

.live-game-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  min-width: 0;
  text-align: center;
}

@media (hover: hover) and (pointer: fine) {
  .live-game-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(212, 175, 55, 0.15);
  }
}

.live-game-visual {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-deep);
}

.live-game-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.live-game-body {
  padding: 1.1rem 1.15rem 1.25rem;
  text-align: center;
}

.live-game-body h4 {
  margin: 0 auto 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-gold-light);
  text-align: center;
}

.live-game-body p {
  margin: 0 auto;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: none;
  overflow-wrap: break-word;
  text-align: center;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 140px), 1fr));
  gap: 1rem;
  margin: 2.25rem auto 0;
  max-width: 900px;
  width: 100%;
  min-width: 0;
}

.stat {
  text-align: center;
  padding: 1.35rem min(1rem, 4vw);
  min-width: 0;
  background: linear-gradient(165deg, var(--surface-card), rgba(42, 12, 20, 0.8));
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.stat strong {
  display: block;
  font-size: 1.5rem;
  background: linear-gradient(90deg, var(--accent-gold-light), var(--accent-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.35rem;
}

.stat span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  text-align: center;
}

.two-col > div {
  padding: 1.25rem;
  border-radius: var(--radius);
  background: rgba(47, 16, 24, 0.65);
  border: 1px solid var(--border);
  min-width: 0;
  max-width: 100%;
}

.two-col h2,
.two-col h3,
.two-col p {
  text-align: center;
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

.cta-banner {
  margin: 2.25rem auto;
  padding: 2.35rem max(1rem, env(safe-area-inset-right, 0px)) 2.35rem max(1rem, env(safe-area-inset-left, 0px));
  max-width: 100%;
  box-sizing: border-box;
  overflow-wrap: break-word;
  background: linear-gradient(135deg, rgba(201, 42, 74, 0.28) 0%, var(--bg-mid) 45%, var(--bg-main) 100%);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.cta-banner h2 {
  margin-top: 0;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
}

.cta-banner p {
  font-size: 1.08rem;
  max-width: min(42ch, 100%);
  margin-left: auto;
  margin-right: auto;
  overflow-wrap: break-word;
  text-align: center;
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0 auto 1.25rem;
  max-width: min(52rem, 100%);
  text-align: center;
  box-sizing: border-box;
}

.list-check li {
  position: relative;
  padding: 0 0 0 1.35rem;
  margin: 0 auto 0.55rem;
  max-width: min(52ch, 100%);
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.55;
  text-align: left;
  display: inline-block;
  width: 100%;
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-gold);
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.5);
}

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 1.25rem auto 0;
  max-width: min(32rem, 100%);
  text-align: center;
  box-sizing: border-box;
}

.steps + p {
  margin-top: 1.5rem;
  text-align: center;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding: 0.85rem 0 0.85rem 2.5rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 1.05rem;
  text-align: left;
  max-width: min(28rem, 100%);
  margin-left: auto;
  margin-right: auto;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 1.65rem;
  height: 1.65rem;
  line-height: 1.65rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 800;
  background: linear-gradient(180deg, var(--accent-gold-light), var(--accent-gold));
  color: #1a1508;
  border-radius: 50%;
}

.site-footer {
  background: #0a0305;
  border-top: 1px solid var(--border);
  padding: 2.5rem max(1.25rem, env(safe-area-inset-right, 0px)) max(2.5rem, env(safe-area-inset-bottom, 0px)) max(1.25rem, env(safe-area-inset-left, 0px));
  margin-top: 2rem;
  box-sizing: border-box;
  max-width: 100%;
  overflow-x: clip;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent-gold-light);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: min(65ch, 100%);
  overflow-wrap: break-word;
  margin: 0 auto;
  text-align: center;
}

.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 2rem;
  padding-bottom: 3rem;
  text-align: left;
}

@media (max-width: 768px) {
  main.legal-page {
    padding-left: max(1.5rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.5rem, env(safe-area-inset-right, 0px));
  }
}

.legal-page h1 {
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  color: var(--accent-gold-light);
  margin-bottom: 1rem;
  overflow-wrap: break-word;
}

.legal-page h2 {
  font-size: 1.2rem;
  margin-top: 2rem;
  color: var(--text);
}

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

.legal-page ul {
  padding-left: 1.25rem;
}

.form-card {
  max-width: 440px;
  width: 100%;
  margin: 2rem auto;
  padding: 2rem;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  box-sizing: border-box;
}

.form-card label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.form-card input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-deep);
  color: var(--text);
  font-size: 1rem;
}

.form-card input:focus {
  outline: none;
  border-color: var(--accent-gold);
}

.form-card .btn-primary {
  width: 100%;
  margin-top: 0.5rem;
}

.table-wrap {
  overflow-x: auto;
  margin: 1.5rem auto;
  max-width: min(900px, 100%);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  text-align: center;
  background: var(--surface-card);
}

.data-table th,
.data-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  vertical-align: top;
}

.data-table th {
  background: rgba(212, 175, 55, 0.12);
  color: var(--accent-gold-light);
  font-weight: 700;
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tbody tr:hover td {
  background: rgba(201, 42, 74, 0.08);
}

.promo-list li strong {
  color: var(--accent-gold-light);
}

.faq-list {
  max-width: min(760px, 100%);
  margin: 1.5rem auto 0;
  text-align: center;
}

.faq-item {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  text-align: left;
}

.faq-item summary {
  padding: 1rem 1.15rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
  list-style: none;
  text-align: left;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--accent-gold);
  font-size: 1.2rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 1.15rem 1.1rem;
  max-width: none;
  text-align: left;
  color: var(--text-muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.25rem;
  margin: 1.5rem auto 0;
  max-width: 1100px;
  text-align: center;
}

.review-card {
  margin: 0;
  padding: 1.25rem;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.review-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-red-bright));
  color: #1a1508;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.review-meta cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  color: var(--text);
  text-align: left;
}

.review-stars {
  display: block;
  color: var(--accent-gold);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-align: left;
}

.review-card p {
  margin: 0 auto;
  max-width: none;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  text-align: center;
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero .btn-primary,
  .hero .btn-outline {
    width: 100%;
  }

  .form-card {
    padding: 1.35rem max(1rem, env(safe-area-inset-right, 0px)) 1.35rem max(1rem, env(safe-area-inset-left, 0px));
  }

  .two-col > div {
    padding: 1rem;
  }

  .cta-banner {
    padding: 1.75rem max(1rem, env(safe-area-inset-right, 0px)) 1.75rem max(1rem, env(safe-area-inset-left, 0px));
  }
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

/* —— Layout variants (caposino-ar.com) —— */

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
  max-width: 920px;
  box-sizing: border-box;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(90deg, var(--bg-mid), var(--surface), var(--bg-mid));
  border: 1px solid var(--border);
}

.stats-band .stat {
  border-radius: 0;
  border: none;
  border-right: 1px solid var(--border);
  box-shadow: none;
  background: transparent;
  padding: 1.25rem 0.75rem;
}

.stats-band .stat:last-child {
  border-right: none;
}

@media (max-width: 640px) {
  .stats-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-band .stat:nth-child(2) {
    border-right: none;
  }

  .stats-band .stat:nth-child(1),
  .stats-band .stat:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.65rem;
  margin: 1.25rem auto 0;
  max-width: 720px;
}

.category-pills span {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-gold-light);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 1.15rem;
  margin: 1.75rem auto 0;
  max-width: 960px;
  width: 100%;
}

.feature-card {
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius);
  background: var(--surface-card);
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: var(--shadow);
}

.feature-card-icon {
  display: block;
  font-size: 1.75rem;
  margin-bottom: 0.65rem;
  line-height: 1;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--accent-gold-light);
}

.feature-card p {
  margin: 0;
  font-size: 0.92rem;
  max-width: none;
}

.split-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.75rem;
  text-align: left;
  max-width: 100%;
  width: 100%;
}

.split-panel > div {
  padding: 1.35rem;
  border-radius: var(--radius);
  background: rgba(47, 16, 24, 0.55);
  border: 1px solid var(--border);
  min-width: 0;
  overflow: hidden;
  max-width: 100%;
  box-sizing: border-box;
}

.split-panel h3 {
  margin-top: 0;
  text-align: left;
}

.split-panel p,
.split-panel ul {
  text-align: left;
}

.split-panel .list-check {
  margin-left: 0;
  margin-right: 0;
}

.split-panel .list-check li {
  max-width: none;
}

@media (max-width: 768px) {
  .split-panel {
    grid-template-columns: 1fr;
  }
}

.split-panel .live-game-grid,
.live-game-grid--stacked {
  grid-template-columns: 1fr;
  max-width: 100%;
  margin-top: 1rem;
}

.split-panel .game-grid,
.game-grid--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 100%;
  margin-top: 1rem;
  gap: 0.75rem;
}

@media (max-width: 480px) {
  .split-panel .game-grid,
  .game-grid--compact {
    grid-template-columns: 1fr;
  }
}

.split-panel .game-card-body h3 {
  font-size: 0.92rem;
}

.split-panel .game-card-body p {
  font-size: 0.82rem;
}

.panel-note,
.section-note {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: min(68ch, 100%);
}

.section-note {
  margin-top: 1.25rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.split-panel .panel-note {
  text-align: left;
  max-width: none;
}

.split-panel .payment-grid {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
}

.rtp-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.25rem auto 0;
  max-width: 720px;
}

.rtp-chips span {
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: rgba(201, 42, 74, 0.12);
  border: 1px solid var(--border-red);
}

.rtp-chips strong {
  color: var(--accent-gold-light);
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 130px), 1fr));
  gap: 0.65rem;
  margin: 1.25rem auto;
  max-width: 640px;
}

.payment-grid span {
  padding: 0.65rem 0.5rem;
  text-align: center;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  background: var(--surface-card);
  border: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.trust-item {
  padding: 1.15rem;
  border-radius: var(--radius);
  background: var(--surface-card);
  border: 1px solid var(--border);
  text-align: center;
}

.trust-item h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
}

.trust-item p {
  margin: 0;
  font-size: 0.88rem;
  max-width: none;
}

.faq-reviews {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: start;
  text-align: left;
  max-width: 100%;
  width: 100%;
}

.faq-reviews > div {
  min-width: 0;
  max-width: 100%;
}

.faq-reviews > div h2 {
  text-align: left;
}

.faq-reviews > div h2::after {
  margin-left: 0;
  margin-right: auto;
}

.faq-reviews .faq-list {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

.faq-reviews .reviews-grid {
  grid-template-columns: 1fr;
  max-width: none;
  margin-top: 0;
}

@media (max-width: 900px) {
  .faq-reviews {
    grid-template-columns: 1fr;
  }

  .faq-reviews > div h2 {
    text-align: center;
  }

  .faq-reviews > div h2::after {
    margin-left: auto;
    margin-right: auto;
  }
}

.loyalty-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  margin: 1.25rem auto 0;
  max-width: 520px;
}

.loyalty-track span {
  padding: 0.35rem 0.7rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  background: rgba(47, 16, 24, 0.8);
  border: 1px solid var(--border);
}

.loyalty-track span.is-active {
  color: #1a1508;
  background: linear-gradient(180deg, var(--accent-gold-light), var(--accent-gold));
  border-color: var(--accent-gold);
}

.section-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.section-intro h2 {
  text-align: center;
}

.section-intro h2::after {
  margin-left: auto;
  margin-right: auto;
}

.section-intro p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.locale-switch {
  margin: 1.5rem auto 0;
  font-size: 0.92rem;
}

.locale-switch a {
  color: var(--accent-gold-light);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.locale-switch a:hover {
  color: var(--accent-gold);
}

.slots-featured-extra {
  max-width: min(62ch, 100%);
  margin: 0 auto 1.5rem;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.65;
}

.section-intro-left {
  text-align: left;
  max-width: 720px;
  margin: 0 auto;
}

.section-intro-left h2 {
  text-align: left;
}

.section-intro-left h2::after {
  margin-left: 0;
  margin-right: auto;
}

.section-intro-left p {
  text-align: left;
  margin-left: 0;
}
