:root {
  --brand-primary:     #0D3B2E;
  --brand-secondary:   #C8962E;
  --brand-accent:      #2EAE1B;
  --brand-bg:          #0A2A1F;
  --brand-text:        #D4C9A8;
  --brand-header-bg:   #0B2E22;
  --brand-btn-bg:      #2EAE1B;
  --brand-btn-text:    #FFFFFF;
  --brand-btn-radius:  6px;
  --brand-head-font:   'Georgia', sans-serif;
  --brand-body-font:   'Arial', sans-serif;
  --brand-head-weight: 700;
  --brand-body-size:   14px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--brand-bg);
  color: var(--brand-text);
  font-family: var(--brand-body-font);
  font-size: var(--brand-body-size);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--brand-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #e8ad45;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -50px;
  left: 0;
  background: var(--brand-accent);
  color: #fff;
  padding: 8px 16px;
  z-index: 99999;
  font-weight: 700;
  border-radius: 0 0 6px 0;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--brand-header-bg);
  border-bottom: 2px solid var(--brand-secondary);
  box-shadow: 0 2px 16px rgba(0,0,0,0.45);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.site-logo-img {
  height: 44px;
  width: auto;
  display: block;
  max-width: 200px;
}

.main-nav ul {
  display: flex;
  gap: 6px;
  align-items: center;
}

.main-nav ul li a {
  color: var(--brand-text);
  font-family: var(--brand-body-font);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--brand-btn-radius);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  background: var(--brand-primary);
  color: var(--brand-secondary);
}

.header-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand-accent) 0%, #1d8c13 100%);
  color: var(--brand-btn-text);
  font-family: var(--brand-body-font);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: var(--brand-btn-radius);
  box-shadow: 0 3px 12px rgba(46,174,27,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.header-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46,174,27,0.5);
  color: #fff;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: 2px solid var(--brand-secondary);
  color: var(--brand-secondary);
  font-size: 22px;
  width: 44px;
  height: 44px;
  border-radius: var(--brand-btn-radius);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.mobile-menu-btn:hover {
  background: var(--brand-primary);
}

.mobile-menu-btn:focus {
  outline: 2px solid var(--brand-secondary);
  outline-offset: 2px;
}

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--brand-accent) 0%, #1d8c13 100%);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  border: 2px solid rgba(255,255,255,0.15);
}

.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.45);
  color: #fff;
}

.floating-cta:focus {
  outline: 3px solid var(--brand-secondary);
  outline-offset: 3px;
}

/* ===== HERO SECTION ===== */
.hero-section {
  margin-top: 70px;
  min-height: 80vh;
  background: linear-gradient(135deg, #051a10 0%, #0D3B2E 40%, #0a2d1f 70%, #051a10 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 3px solid var(--brand-secondary);
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(200,150,46,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(46,174,27,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(200,150,46,0.03) 40px,
      rgba(200,150,46,0.03) 41px
    );
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-badge {
  display: inline-block;
  background: rgba(200,150,46,0.15);
  border: 1px solid var(--brand-secondary);
  color: var(--brand-secondary);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: fit-content;
}

.hero-title {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  line-height: 1.2;
}

.hero-title span {
  color: var(--brand-secondary);
}

.hero-subtitle {
  font-size: 16px;
  color: var(--brand-text);
  line-height: 1.7;
  max-width: 480px;
}

.hero-bonus-box {
  background: rgba(200,150,46,0.1);
  border: 1px solid rgba(200,150,46,0.3);
  border-radius: 10px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-bonus-box .bonus-amount {
  font-family: var(--brand-head-font);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--brand-secondary);
  line-height: 1;
}

.hero-bonus-box .bonus-label {
  font-size: 13px;
  color: var(--brand-text);
  opacity: 0.85;
}

.hero-bonus-box .bonus-terms {
  font-size: 11px;
  color: var(--brand-text);
  opacity: 0.55;
  margin-top: 4px;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--brand-btn-radius);
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn:focus {
  outline: 3px solid var(--brand-secondary);
  outline-offset: 2px;
}

.btn-hero {
  background: linear-gradient(135deg, var(--brand-accent) 0%, #1d8c13 100%);
  color: #fff;
  padding: 16px 40px;
  font-size: 17px;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(46,174,27,0.4);
  letter-spacing: 0.3px;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(46,174,27,0.55);
  color: #fff;
}

.btn-cta {
  background: linear-gradient(135deg, var(--brand-secondary) 0%, #a07420 100%);
  color: #fff;
  box-shadow: 0 3px 12px rgba(200,150,46,0.35);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,150,46,0.5);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--brand-secondary);
  border: 2px solid var(--brand-secondary);
  padding: 14px 32px;
  font-size: 15px;
}

.btn-outline:hover {
  background: rgba(200,150,46,0.1);
  transform: translateY(-2px);
  color: var(--brand-secondary);
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-card-mockup {
  background: linear-gradient(145deg, #0D3B2E, #0a2d1f);
  border: 1px solid rgba(200,150,46,0.3);
  border-radius: 16px;
  padding: 32px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(200,150,46,0.1);
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,150,46,0.15);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
}

.hero-stat .stat-num {
  font-family: var(--brand-head-font);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brand-secondary);
  display: block;
}

.hero-stat .stat-label {
  font-size: 11px;
  color: var(--brand-text);
  opacity: 0.7;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 70px 0;
}

.section-alt {
  background: rgba(13,59,46,0.3);
}

.section-dark {
  background: rgba(5,20,12,0.5);
}

.section-title {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.25;
}

.section-title span {
  color: var(--brand-secondary);
}

.section-subtitle {
  font-size: 15px;
  color: var(--brand-text);
  opacity: 0.8;
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 40px;
}

.section-header-center {
  text-align: center;
}

.section-header-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ===== DIVIDER ===== */
.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-secondary), transparent);
  border-radius: 2px;
  margin: 12px 0 24px;
}

.gold-divider.center {
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(90deg, transparent, var(--brand-secondary), transparent);
}

/* ===== BONUS SECTION — full width single column ===== */
.bonus-strip {
  background: linear-gradient(90deg, #0D3B2E 0%, #0a2d1f 50%, #0D3B2E 100%);
  border-top: 1px solid rgba(200,150,46,0.25);
  border-bottom: 1px solid rgba(200,150,46,0.25);
  padding: 50px 0;
}

.bonus-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.bonus-text-block h2 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #fff;
  margin-bottom: 8px;
}

.bonus-text-block p {
  font-size: 15px;
  color: var(--brand-text);
  max-width: 520px;
  line-height: 1.7;
}

.bonus-highlight {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.bonus-pill {
  background: rgba(200,150,46,0.12);
  border: 1px solid rgba(200,150,46,0.35);
  border-radius: 10px;
  padding: 18px 24px;
  text-align: center;
  min-width: 130px;
}

.bonus-pill .pill-value {
  font-family: var(--brand-head-font);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--brand-secondary);
  display: block;
  line-height: 1;
}

.bonus-pill .pill-label {
  font-size: 11px;
  color: var(--brand-text);
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-top: 6px;
}

/* ===== GAMES SECTION — 3-column cards ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.game-card {
  background: linear-gradient(145deg, #0D3B2E, #081e14);
  border: 1px solid rgba(200,150,46,0.2);
  border-radius: 12px;
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-accent), var(--brand-secondary));
  opacity: 0;
  transition: opacity 0.2s;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  border-color: rgba(200,150,46,0.4);
}

.game-card:hover::before {
  opacity: 1;
}

.game-card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.game-card h3 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 10px;
}

.game-card p {
  font-size: 13px;
  color: var(--brand-text);
  opacity: 0.8;
  line-height: 1.65;
}

.game-card .card-tag {
  display: inline-block;
  background: rgba(46,174,27,0.15);
  color: var(--brand-accent);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 14px;
  border: 1px solid rgba(46,174,27,0.3);
}

/* ===== PAYMENTS SECTION — asymmetric 2/3 + 1/3 ===== */
.payments-section-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.payments-main h2 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: #fff;
  margin-bottom: 12px;
}

.payments-main p {
  font-size: 14px;
  color: var(--brand-text);
  line-height: 1.7;
  margin-bottom: 18px;
}

.payment-methods-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.payment-method-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,150,46,0.2);
  border-radius: 8px;
  padding: 14px 12px;
  text-align: center;
  font-size: 12px;
  color: var(--brand-text);
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s;
}

.payment-method-item:hover {
  border-color: var(--brand-secondary);
  background: rgba(200,150,46,0.07);
}

.payment-method-item .pm-icon {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 6px;
}

.payments-sidebar-box {
  background: linear-gradient(145deg, #0D3B2E, #081e14);
  border: 1px solid rgba(200,150,46,0.25);
  border-radius: 12px;
  padding: 28px 24px;
}

.payments-sidebar-box h3 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brand-secondary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(200,150,46,0.2);
}

.limit-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 13px;
}

.limit-row:last-child {
  border-bottom: none;
}

.limit-row .limit-label {
  color: var(--brand-text);
  opacity: 0.75;
}

.limit-row .limit-value {
  color: #fff;
  font-weight: 600;
}

/* ===== FEATURES SECTION — 2-column ===== */
.features-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.features-text h2 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #fff;
  margin-bottom: 12px;
}

.features-text p {
  font-size: 14px;
  color: var(--brand-text);
  line-height: 1.75;
  margin-bottom: 16px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(46,174,27,0.15);
  border: 1px solid rgba(46,174,27,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.feature-item-text h4 {
  font-family: var(--brand-head-font);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.feature-item-text p {
  font-size: 13px;
  margin-bottom: 0;
}

.features-visual-panel {
  background: linear-gradient(145deg, #0D3B2E, #081e14);
  border: 1px solid rgba(200,150,46,0.2);
  border-radius: 16px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fv-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.fv-row:last-child {
  border-bottom: none;
}

.fv-icon {
  font-size: 1.8rem;
  width: 50px;
  flex-shrink: 0;
  text-align: center;
}

.fv-row-text strong {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
}

.fv-row-text span {
  font-size: 12px;
  color: var(--brand-text);
  opacity: 0.7;
}

/* ===== BONUS TABLE SECTION — single column ===== */
.bonus-table-wrap {
  overflow-x: auto;
  border-radius: 10px;
  border: 1px solid rgba(200,150,46,0.2);
}

.bonus-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.bonus-table thead {
  background: var(--brand-primary);
}

.bonus-table thead th {
  padding: 14px 18px;
  text-align: left;
  color: var(--brand-secondary);
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 13px;
  border-bottom: 2px solid rgba(200,150,46,0.3);
  white-space: nowrap;
}

.bonus-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.15s;
}

.bonus-table tbody tr:hover {
  background: rgba(200,150,46,0.05);
}

.bonus-table tbody td {
  padding: 14px 18px;
  color: var(--brand-text);
  vertical-align: middle;
}

.bonus-table tbody td:first-child {
  color: #fff;
  font-weight: 600;
}

.table-badge {
  display: inline-block;
  background: rgba(46,174,27,0.15);
  color: var(--brand-accent);
  border: 1px solid rgba(46,174,27,0.3);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
}

/* ===== FAQ SECTION — single column ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(13,59,46,0.5);
  border: 1px solid rgba(200,150,46,0.18);
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 22px;
  color: #fff;
  font-family: var(--brand-body-font);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
}

.faq-question:hover {
  background: rgba(200,150,46,0.06);
}

.faq-question:focus {
  outline: 2px solid var(--brand-secondary);
  outline-offset: -2px;
}

.faq-arrow {
  font-size: 18px;
  color: var(--brand-secondary);
  transition: transform 0.25s;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: 13px;
  color: var(--brand-text);
  line-height: 1.7;
  border-top: 1px solid rgba(200,150,46,0.1);
  padding-top: 16px;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ===== PROVIDERS SECTION — single full-width ===== */
.providers-marquee-wrap {
  overflow: hidden;
  position: relative;
  padding: 10px 0;
}

.providers-marquee-wrap::before,
.providers-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.providers-marquee-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--brand-bg), transparent);
}

.providers-marquee-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--brand-bg), transparent);
}

.providers-track {
  display: flex;
  gap: 24px;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.providers-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.provider-badge {
  background: rgba(13,59,46,0.6);
  border: 1px solid rgba(200,150,46,0.2);
  border-radius: 8px;
  padding: 14px 24px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-text);
  flex-shrink: 0;
  transition: border-color 0.2s;
}

.provider-badge:hover {
  border-color: var(--brand-secondary);
  color: var(--brand-secondary);
}

/* ===== TRUST SECTION — 3-col then CTA ===== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.trust-card {
  background: rgba(13,59,46,0.5);
  border: 1px solid rgba(200,150,46,0.18);
  border-radius: 12px;
  padding: 28px 22px;
  text-align: center;
}

.trust-card .trust-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 14px;
}

.trust-card h3 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 1rem;
  color: var(--brand-secondary);
  margin-bottom: 10px;
}

.trust-card p {
  font-size: 13px;
  color: var(--brand-text);
  opacity: 0.8;
  line-height: 1.65;
}

.cta-banner {
  background: linear-gradient(135deg, #0D3B2E 0%, #0a2d1f 100%);
  border: 1px solid rgba(200,150,46,0.3);
  border-radius: 16px;
  padding: 50px 40px;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #fff;
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 15px;
  color: var(--brand-text);
  max-width: 540px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.cta-small-text {
  font-size: 11px;
  color: var(--brand-text);
  opacity: 0.45;
  margin-top: 14px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #050e08;
  border-top: 2px solid rgba(200,150,46,0.25);
  padding: 60px 0 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--brand-text);
  opacity: 0.7;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 14px;
  color: var(--brand-secondary);
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(200,150,46,0.2);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: var(--brand-text);
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}

.footer-col ul li a:hover {
  opacity: 1;
  color: var(--brand-secondary);
}

.footer-compliance {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 30px 0;
}

.compliance-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.compliance-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-text);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.compliance-badge.age-badge {
  background: rgba(200,0,0,0.12);
  border-color: rgba(200,0,0,0.3);
  color: #ff6b6b;
  font-size: 16px;
  font-weight: 900;
}

.compliance-badge.green-badge {
  background: rgba(46,174,27,0.1);
  border-color: rgba(46,174,27,0.3);
  color: var(--brand-accent);
}

.footer-disclaimer {
  font-size: 11px;
  color: var(--brand-text);
  opacity: 0.4;
  line-height: 1.7;
  text-align: center;
  max-width: 860px;
  margin: 0 auto 24px;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 20px;
}

.footer-legal-links a {
  font-size: 12px;
  color: var(--brand-text);
  opacity: 0.55;
  transition: opacity 0.2s;
}

.footer-legal-links a:hover {
  opacity: 1;
  color: var(--brand-secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--brand-text);
  opacity: 0.35;
}

/* ===== LEGAL PAGES ===== */
.legal-page-wrap {
  margin-top: 70px;
  padding: 70px 0;
  min-height: 70vh;
}

.legal-page-wrap h1 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
  margin-bottom: 8px;
}

.legal-page-wrap .legal-updated {
  font-size: 12px;
  color: var(--brand-text);
  opacity: 0.5;
  margin-bottom: 40px;
}

.legal-page-wrap h2 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--brand-secondary);
  margin: 36px 0 12px;
}

.legal-page-wrap h3 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin: 24px 0 10px;
}

.legal-page-wrap p {
  font-size: 14px;
  color: var(--brand-text);
  opacity: 0.85;
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-page-wrap ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}

.legal-page-wrap ul li {
  font-size: 14px;
  color: var(--brand-text);
  opacity: 0.8;
  line-height: 1.7;
  margin-bottom: 6px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .payments-section-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .main-nav ul {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-nav-active ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--brand-header-bg);
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    gap: 4px;
    border-top: 1px solid rgba(200,150,46,0.2);
  }

  .mobile-nav-active ul li a {
    display: block;
    padding: 12px 16px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px;
  }

  .hero-visual {
    display: none;
  }

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

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

  .features-two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 60vh;
  }

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

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

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

  .bonus-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .cta-banner {
    padding: 36px 24px;
  }
}

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

  .btn-hero,
  .btn-outline {
    width: 100%;
    text-align: center;
  }

  .bonus-highlight {
    gap: 16px;
  }

  .floating-cta {
    bottom: 16px;
    right: 16px;
    padding: 12px 20px;
    font-size: 14px;
  }

  .compliance-logos {
    gap: 8px;
  }
}

@media (max-width: 320px) {
  .header-inner {
    padding: 0 12px;
  }

  .container {
    padding: 0 12px;
  }
}