:root {
  --gx8h-bg-start: #0a1f17;
  --gx8h-bg-end: #102a1e;
  --gx8h-surface: #142a20;
  --gx8h-surface-soft: rgba(20, 42, 32, 0.88);
  --gx8h-primary: #b8864b;
  --gx8h-secondary: #1ca572;
  --gx8h-accent: #7c3f6b;
  --gx8h-text: #e8ede6;
  --gx8h-muted: #8aab97;
  --gx8h-border: rgba(184, 134, 75, 0.25);
  --gx8h-border-strong: rgba(184, 134, 75, 0.42);
  --gx8h-glow: 0 0 16px rgba(184, 134, 75, 0.35);
  --gx8h-radius: 12px;
  --gx8h-radius-lg: 22px;
  --gx8h-max: 1180px;
  --gx8h-cookie-offset: 0px;
  --gx8h-header-height: 86px;
}

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

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: "Nunito Sans", sans-serif;
  color: var(--gx8h-text);
  background:
    radial-gradient(circle at top, rgba(124, 63, 107, 0.12), transparent 28%),
    linear-gradient(180deg, var(--gx8h-bg-start), var(--gx8h-bg-end));
  line-height: 1.65;
  min-width: 320px;
  padding-bottom: var(--gx8h-cookie-offset);
}

body[data-cookie-offset="shown"] {
  --gx8h-cookie-offset: 86px;
}

body[data-cookie-offset="hidden"] {
  --gx8h-cookie-offset: 0px;
}

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

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

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

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

::selection {
  background: rgba(184, 134, 75, 0.3);
  color: #fff;
}

.gx8h-page {
  position: relative;
  z-index: 1;
}

.gx8h-botanical-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.gx8h-botanical-bg::before,
.gx8h-botanical-bg::after {
  content: "";
  position: absolute;
  width: 38vw;
  min-width: 240px;
  max-width: 520px;
  aspect-ratio: 1;
  opacity: 0.08;
  background-repeat: no-repeat;
  background-size: contain;
}

.gx8h-botanical-bg::before {
  left: -5vw;
  bottom: -8vh;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300'%3E%3Cpath fill='%23b8864b' d='M74 258c11-34 28-66 47-97 18-29 44-58 78-74 19-10 39-14 57-13-5 17-15 31-28 43-18 18-41 31-62 47-39 29-73 63-92 107-7 0-14-4-18-13 2 0 11 0 18 0Zm27-53c17-1 31-7 42-17-17-1-31 4-42 17Zm39-54c22 1 40-6 54-21-22-2-40 4-54 21Zm48-50c19 0 37-5 49-17-18-3-34 2-49 17Z'/%3E%3C/svg%3E");
}

.gx8h-botanical-bg::after {
  right: -4vw;
  top: -6vh;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300'%3E%3Cpath fill='%231ca572' d='M221 43c-7 24-17 48-31 69-12 17-29 34-51 41 5-19 14-35 27-49 16-17 36-32 55-46ZM150 111c-3 18-3 37 2 56 6 23 17 45 21 69-16-12-28-29-36-47-8-19-11-40-9-61 7-6 14-12 22-17ZM121 133c-13 8-24 19-32 33-12 21-17 45-28 67-8-17-11-36-8-54 3-18 12-35 25-49 16-1 30 0 43 3ZM113 150c-17 0-33 5-46 16-17 14-29 34-45 48 1-19 7-37 18-53 10-15 25-27 42-34 9 6 19 13 31 23Z'/%3E%3C/svg%3E");
}

html:not(.gx8h-need-age) .gx8h-age-overlay {
  display: none !important;
}

html:not(.gx8h-need-cookie) .gx8h-cookie-banner {
  display: none !important;
}

html.gx8h-need-cookie .gx8h-cookie-banner {
  display: block !important;
}

html.gx8h-need-age {
  overflow: hidden !important;
}

.gx8h-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #b8864b;
  z-index: 2147483645;
}

.gx8h-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2147483644;
  display: none;
  background: rgba(10, 31, 23, 0.96);
  border-top: 1px solid rgba(184, 134, 75, 0.3);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.18);
}

.gx8h-cookie-banner.is-visible {
  display: block;
}

.gx8h-cookie-inner {
  max-width: var(--gx8h-max);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.gx8h-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gx8h-age-overlay {
  position: fixed !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100dvh !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 2147483646 !important;
  background: rgba(10, 31, 23, 0.97) !important;
}

.gx8h-age-overlay[hidden] {
  display: none !important;
}

.gx8h-age-box {
  margin-block: auto;
  max-width: 440px;
  width: 90%;
  padding: 2.5rem 2rem;
  background: #142a20;
  border: 1px solid rgba(184, 134, 75, 0.4);
  box-shadow: 0 0 24px rgba(184, 134, 75, 0.2);
  border-radius: 16px;
  text-align: center;
  color: #e8ede6;
}

.gx8h-header {
  background: rgba(10, 31, 23, 0.95);
  border-bottom: 1px solid rgba(184, 134, 75, 0.2);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  transition:
    padding 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
  padding: 0 24px;
}

.gx8h-header.is-shrunk {
  background: rgba(10, 31, 23, 0.98);
  border-color: rgba(184, 134, 75, 0.38);
}

.gx8h-header-inner,
.gx8h-section-inner,
.gx8h-footer-grid,
.gx8h-footer-bottom,
.gx8h-legal-shell,
.gx8h-cookie-inner {
  max-width: var(--gx8h-max);
}

.gx8h-header-inner {
  min-height: var(--gx8h-header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: min-height 0.2s ease;
  position: relative;
}

.gx8h-header.is-shrunk .gx8h-header-inner {
  min-height: 68px;
}

.gx8h-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.gx8h-brand img {
  width: 54px;
  height: auto;
  flex-shrink: 0;
}

.gx8h-brand-mark {
  display: flex;
  flex-direction: column;
}

.gx8h-brand-name {
  font-family: "Cormorant Garamond", serif;

  font-style: italic;
  font-weight: 700;
  line-height: 1;
}

.gx8h-brand-tag {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gx8h-muted);
}

.gx8h-burger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(184, 134, 75, 0.35);
  background: transparent;
  color: var(--gx8h-text);
  cursor: pointer;
}

.gx8h-burger-lines,
.gx8h-burger-lines::before,
.gx8h-burger-lines::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  margin: 0 auto;
  position: relative;
  transition: transform 0.2s ease;
}

.gx8h-burger-lines::before {
  top: -6px;
}

.gx8h-burger-lines::after {
  top: 4px;
}

.gx8h-nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.gx8h-nav-menu a {
  color: var(--gx8h-muted);
  font-weight: 700;
  transition: color 0.2s ease;
}

.gx8h-nav-menu a:hover,
.gx8h-nav-menu a:focus-visible {
  color: var(--gx8h-text);
}

.gx8h-section {
  position: relative;
  padding: 84px 24px;
}

.gx8h-section--compact {
  padding-top: 40px;
  padding-bottom: 40px;
}

.gx8h-section-inner,
.gx8h-footer-grid,
.gx8h-footer-bottom,
.gx8h-legal-shell {
  width: min(100%, var(--gx8h-max));
  margin: 0 auto;
}

.gx8h-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(184, 134, 75, 0.28);
  background: rgba(184, 134, 75, 0.08);
  color: var(--gx8h-primary);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 800;
}

.gx8h-hero {
  padding-top: 62px;
}

.gx8h-hero-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gx8h-border);
  border-radius: 28px;
  background:
    radial-gradient(
      circle at top left,
      rgba(124, 63, 107, 0.16),
      transparent 30%
    ),
    linear-gradient(160deg, rgba(20, 42, 32, 0.94), rgba(16, 42, 30, 0.9));
  padding: 56px;
  isolation: isolate;
}

.gx8h-perspective-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  perspective: 800px;
}

.gx8h-grid-plane {
  position: absolute;
  inset: -50%;
  background-image:
    linear-gradient(rgba(28, 165, 114, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 165, 114, 0.15) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: rotateX(60deg) translateY(-20%);
}

.gx8h-floating-card,
.gx8h-floating-chip {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(184, 134, 75, 0.2);
  background: rgba(20, 42, 32, 0.75);
}

.gx8h-floating-card {
  width: 170px;
  height: 110px;
  border-radius: 18px;
  box-shadow: var(--gx8h-glow);
}

.gx8h-floating-chip {
  width: 72px;
  height: 72px;
  border-radius: 50%;
}

.gx8h-floating-card--a {
  top: 8%;
  right: 10%;
  transform: translateZ(120px) rotate(16deg);
}

.gx8h-floating-card--b {
  bottom: 16%;
  right: 24%;
  transform: translateZ(40px) rotate(-12deg);
}

.gx8h-floating-chip--a {
  top: 26%;
  right: 34%;
  transform: translateZ(160px);
}

.gx8h-floating-chip--b {
  bottom: 12%;
  right: 8%;
  transform: translateZ(90px);
}

.gx8h-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 40px;
  align-items: center;
}

.gx8h-hero-copy h1,
.gx8h-legal-hero h1 {
  margin: 18px 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 0.94;
  color: #e8ede6;
  max-width: 12ch;
}

.gx8h-hero-subline,
.gx8h-lead,
.gx8h-panel p,
.gx8h-legal-hero p {
  color: var(--gx8h-muted);
  font-size: 1.05rem;
}

.gx8h-trustbar,
.gx8h-pill-row,
.gx8h-inline-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gx8h-trust-chip,
.gx8h-pill,
.gx8h-filter-chip,
.gx8h-badge,
.gx8h-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.84rem;
  line-height: 1;
}

.gx8h-trust-chip,
.gx8h-pill,
.gx8h-filter-chip,
.gx8h-stat-pill {
  background: rgba(28, 165, 114, 0.12);
  border: 1px solid rgba(28, 165, 114, 0.22);
  color: var(--gx8h-text);
}

.gx8h-badge {
  background: rgba(184, 134, 75, 0.12);
  border: 1px solid rgba(184, 134, 75, 0.3);
  color: #f5dfbf;
}

.gx8h-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.gx8h-cta-btn,
.gx8h-ghost-btn,
.gx8h-cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.gx8h-cta-btn,
.gx8h-cookie-btn {
  background: linear-gradient(135deg, #b8864b, #1ca572);
  color: #ffffff;
}

.gx8h-cta-btn:hover,
.gx8h-cookie-btn:hover,
.gx8h-cta-btn:focus-visible,
.gx8h-cookie-btn:focus-visible {
  opacity: 0.92;
  box-shadow: 0 4px 16px rgba(184, 134, 75, 0.4);
}

.gx8h-ghost-btn {
  color: var(--gx8h-text);
  border: 1px solid var(--gx8h-border-strong);
  background: transparent;
}

.gx8h-ghost-btn:hover,
.gx8h-ghost-btn:focus-visible {
  border-color: var(--gx8h-primary);
}

.gx8h-panel,
.gx8h-card,
.gx8h-note-box,
.gx8h-newsletter-box,
.gx8h-timeline-step,
.gx8h-rg-card,
.gx8h-legal-card {
  background: #142a20;
  border: 1px solid rgba(184, 134, 75, 0.25);
  border-radius: 12px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.gx8h-panel:hover,
.gx8h-card:hover,
.gx8h-note-box:hover,
.gx8h-newsletter-box:hover,
.gx8h-timeline-step:hover,
.gx8h-rg-card:hover,
.gx8h-legal-card:hover {
  border-color: #b8864b;
  box-shadow: 0 4px 20px rgba(184, 134, 75, 0.2);
}

.gx8h-panel {
  padding: 28px;
}

.gx8h-panel h2,
.gx8h-section-head h2,
.gx8h-newsletter-box h2,
.gx8h-legal-shell h2 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 2rem;
  color: #b8864b;
}

.gx8h-section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.gx8h-divider {
  width: 200px;
  height: 24px;
  margin: 24px auto 0;
  opacity: 0.5;
  background: center / contain no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 24'%3E%3Cpath d='M4 12h82c10 0 18-8 24-8s14 8 24 8h82' stroke='%23b8864b' stroke-width='1.6' fill='none'/%3E%3Cpath d='M92 10c4-4 7-6 11-6-1 4-4 7-8 9M128 14c3 4 7 6 11 6-1-4-4-7-8-9' stroke='%23b8864b' stroke-width='1.4' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
}

.gx8h-note-grid,
.gx8h-rg-grid,
.gx8h-stats-grid,
.gx8h-footer-grid {
  display: grid;
  gap: 18px;
}

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

.gx8h-note-box {
  padding: 24px;
}

.gx8h-note-box strong {
  color: #f5dfbf;
}

.gx8h-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 22px;
}

.gx8h-filter-bar label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 180px;
}

.gx8h-filter-label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gx8h-primary);
}

.gx8h-select {
  width: 100%;
  background: rgba(10, 31, 23, 0.65);
  color: var(--gx8h-text);
  border: 1px solid var(--gx8h-border);
  border-radius: 999px;
  padding: 11px 16px;
}

.gx8h-casino-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gx8h-casino-row {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #142a20;
  border: 1px solid rgba(184, 134, 75, 0.25);
  border-radius: 12px;
  padding: 20px 24px;
  transition:
    border-color 0.2s,
    opacity 0.2s ease;
}

.gx8h-casino-row:hover {
  border-color: #b8864b;
}

.gx8h-casino-row[hidden] {
  display: none !important;
}

.gx8h-row-logo {
  flex-shrink: 0;
}

.gx8h-logo-container {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 8px;
  width: 90px;
  height: 54px;
  overflow: hidden;
  flex-shrink: 0;
}

.gx8h-logo-container img {
  max-width: 100%;
  max-height: 38px;
  object-fit: contain;
}

.gx8h-row-info {
  flex: 1;
  min-width: 0;
  word-break: break-word;
}

.gx8h-row-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.gx8h-row-title {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.gx8h-row-title h3 {
  margin: 0;
  font-size: 1.34rem;
}

.gx8h-rating {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(124, 63, 107, 0.16);
  border: 1px solid rgba(124, 63, 107, 0.32);
}

.gx8h-rating strong {
  font-size: 1.2rem;
  color: #f5dfbf;
}

.gx8h-offer {
  margin: 10px 0 8px;
  font-weight: 800;
  color: #f3e4c8;
}

.gx8h-keyline,
.gx8h-row-copy,
.gx8h-filter-result {
  color: var(--gx8h-muted);
}

.gx8h-row-copy {
  margin: 10px 0 12px;
}

.gx8h-row-cta {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 178px;
}

.gx8h-small-note {
  font-size: 0.84rem;
  color: var(--gx8h-muted);
}

.gx8h-timeline {
  display: grid;
  gap: 18px;
}

.gx8h-timeline-step {
  position: relative;
  padding: 24px 24px 24px 78px;
}

.gx8h-timeline-step::before {
  content: attr(data-step);
  position: absolute;
  left: 22px;
  top: 22px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #fff;
}

.gx8h-timeline-step:nth-child(odd)::before {
  background: var(--gx8h-primary);
}

.gx8h-timeline-step:nth-child(even)::before {
  background: var(--gx8h-secondary);
}

.gx8h-timeline-step h3,
.gx8h-rg-card h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
}

.gx8h-compare-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--gx8h-border);
  background: rgba(20, 42, 32, 0.78);
}

.gx8h-compare-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
}

.gx8h-compare-table th,
.gx8h-compare-table td {
  padding: 18px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(184, 134, 75, 0.16);
}

.gx8h-compare-table th {
  color: #f5dfbf;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

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

.gx8h-rg-card {
  padding: 22px;
}

.gx8h-rg-resource {
  margin-top: 22px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(28, 165, 114, 0.24);
  background: rgba(28, 165, 114, 0.08);
}

.rg-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.rg-links a,
.rg-links span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(184, 134, 75, 0.25);
  background: rgba(10, 31, 23, 0.45);
}

.gx8h-about-grid,
.gx8h-newsletter-box,
.gx8h-legal-hero {
  display: grid;
  gap: 24px;
}

.gx8h-about-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.gx8h-card {
  padding: 26px;
}

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

.gx8h-newsletter-box {
  padding: 32px;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
}

.gx8h-newsletter-form {
  display: flex;
  gap: 12px;
}

.gx8h-newsletter-form input {
  flex: 1;
  min-width: 0;
  background: rgba(10, 31, 23, 0.72);
  color: var(--gx8h-text);
  border: 1px solid rgba(184, 134, 75, 0.32);
  border-radius: 999px;
  padding: 14px 18px;
}

.gx8h-newsletter-msg {
  min-height: 22px;
  margin-top: 10px;
  color: #f5dfbf;
  font-size: 0.92rem;
}

.gx8h-footer {
  padding: 52px 24px 32px;
  border-top: 1px solid rgba(184, 134, 75, 0.3);
  background: rgba(8, 24, 18, 0.95);
}

.gx8h-footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
}

.gx8h-footer-col h3 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: #f5dfbf;
}

.gx8h-footer-links {
  display: grid;
  gap: 10px;
}

.gx8h-footer-links a {
  color: var(--gx8h-muted);
}

.gx8h-footer-links a:hover,
.gx8h-footer-links a:focus-visible {
  color: var(--gx8h-text);
}

.gx8h-footer-bottom {
  margin: 24px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(184, 134, 75, 0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  justify-content: space-between;
  color: var(--gx8h-muted);
}

.gx8h-legal-main {
  padding-top: 56px;
}

.gx8h-legal-shell {
  display: grid;
  gap: 22px;
}

.gx8h-legal-card {
  padding: 28px;
}

.gx8h-legal-card h2 {
  margin-top: 0;
}

.gx8h-legal-card h3 {
  margin: 22px 0 10px;
  color: #f5dfbf;
}

.gx8h-legal-card p,
.gx8h-legal-card li {
  color: var(--gx8h-muted);
}

.gx8h-legal-card ul {
  padding-left: 18px;
}

.gx8h-hero-mini {
  border: 1px solid var(--gx8h-border);
  border-radius: 24px;
  padding: 38px;
  background:
    radial-gradient(
      circle at top right,
      rgba(124, 63, 107, 0.16),
      transparent 34%
    ),
    rgba(20, 42, 32, 0.88);
}

.gx8h-disclaimer-block {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.gx8h-disclaimer-block p {
  margin: 0;
}

.gx8h-hidden {
  display: none !important;
}

:focus-visible {
  outline: 2px solid #b8864b;
  outline-offset: 2px;
}

@media (max-width: 980px) {
  .gx8h-hero-grid,
  .gx8h-about-grid,
  .gx8h-newsletter-box,
  .gx8h-footer-grid,
  .gx8h-rg-grid,
  .gx8h-note-grid {
    grid-template-columns: 1fr;
  }

  .gx8h-header {
    padding-inline: 16px;
  }

  .gx8h-burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .gx8h-nav-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 280px;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(184, 134, 75, 0.28);
    background: rgba(10, 31, 23, 0.98);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  }

  .gx8h-nav-menu.is-open {
    display: flex;
  }

  .gx8h-hero-shell,
  .gx8h-hero-mini,
  .gx8h-newsletter-box,
  .gx8h-panel,
  .gx8h-note-box,
  .gx8h-card,
  .gx8h-rg-card,
  .gx8h-legal-card {
    padding: 24px;
  }
}

@media (max-width: 700px) {
  .gx8h-cookie-inner,
  .gx8h-footer-bottom,
  .gx8h-newsletter-form,
  .gx8h-casino-row,
  .gx8h-row-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .gx8h-row-cta {
    width: 100%;
    min-width: 0;
  }

  .gx8h-casino-row {
    align-items: flex-start;
  }

  .gx8h-newsletter-form .gx8h-cta-btn {
    width: 100%;
  }
}

@media (max-width: 550px) {
  .gx8h-casino-row {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .gx8h-row-cta {
    width: 100% !important;
  }
  .gx8h-casino-row {
    min-width: 0 !important;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .gx8h-hero h1 {
    font-size: clamp(2rem, 7vw, 3rem) !important;
  }
  .gx8h-section {
    padding: 48px 16px !important;
  }
  .gx8h-nav-menu {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .gx8h-header-inner {
    position: relative !important;
  }
  .gx8h-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}

@media (max-width: 380px) {
  .gx8h-casino-row {
    padding: 14px !important;
  }
  .gx8h-cta-btn {
    width: 100% !important;
    text-align: center !important;
  }
  .gx8h-hero h1 {
    font-size: clamp(1.6rem, 8vw, 2.2rem) !important;
  }
}
