:root {
  --brand-primary:     #D4941A;
  --brand-secondary:   #1A1A1A;
  --brand-accent:      #F5A623;
  --brand-bg:          #111111;
  --brand-text:        #FFFFFF;
  --brand-header-bg:   #0D0D0D;
  --brand-btn-bg:      #F5A623;
  --brand-btn-text:    #1A1A1A;
  --brand-btn-radius:  24px;
  --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 {
  font-family: var(--brand-body-font);
  font-size: var(--brand-body-size);
  background: var(--brand-bg);
  color: var(--brand-text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--brand-accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--brand-primary); }

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

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

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

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--brand-header-bg);
  border-bottom: 1px solid #2a2a2a;
  box-shadow: 0 2px 20px rgba(0,0,0,.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}

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

.logo-text {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: 1.6rem;
  color: var(--brand-primary);
  letter-spacing: 1px;
}

/* ── NAV ── */
.main-nav { position: relative; }

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 8px;
  align-items: center;
}

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

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

/* ── HEADER CTA ── */
.header-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  color: var(--brand-btn-text);
  border-radius: var(--brand-btn-radius);
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 4px 15px rgba(213,148,26,.35);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(213,148,26,.5);
  color: var(--brand-btn-text);
}

/* ── MOBILE BURGER ── */
.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--brand-primary);
  color: var(--brand-primary);
  font-size: 1.4rem;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background .2s;
}

.mobile-menu-btn:hover { background: var(--brand-primary); color: #fff; }
.mobile-menu-btn:focus { outline: 2px solid var(--brand-accent); 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-primary), var(--brand-accent));
  color: #1A1A1A;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,.35);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
  font-family: var(--brand-head-font);
  border: 2px solid rgba(255,255,255,.15);
}

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

/* ── HERO ── */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0D0D0D 0%, #1a0f00 40%, #2d1a00 70%, #111111 100%);
  padding: 120px 20px 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(213,148,26,.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(245,166,35,.12) 0%, transparent 55%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--brand-primary), var(--brand-accent), var(--brand-primary), transparent);
}

.hero-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  color: #1A1A1A;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 16px;
  color: #fff;
}

.hero h1 span { color: var(--brand-accent); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.75);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-bonus-box {
  background: linear-gradient(135deg, rgba(213,148,26,.15), rgba(245,166,35,.1));
  border: 1px solid rgba(213,148,26,.4);
  border-radius: 16px;
  padding: 24px 32px;
  margin-bottom: 32px;
  display: inline-block;
}

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

.hero-bonus-box .bonus-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,.7);
  margin-top: 4px;
}

.hero-bonus-box .bonus-detail {
  font-size: 0.75rem;
  color: rgba(255,255,255,.45);
  margin-top: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--brand-btn-radius);
  font-weight: 700;
  font-size: 1rem;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

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

.btn-hero {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  color: var(--brand-btn-text);
  font-size: 1.15rem;
  padding: 18px 48px;
  box-shadow: 0 6px 30px rgba(213,148,26,.45);
  font-family: var(--brand-head-font);
  border: 2px solid rgba(255,255,255,.2);
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(213,148,26,.6);
  color: var(--brand-btn-text);
}

.btn-cta {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  color: var(--brand-btn-text);
  box-shadow: 0 4px 20px rgba(213,148,26,.35);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(213,148,26,.5);
  color: var(--brand-btn-text);
}

.btn-outline {
  background: transparent;
  color: var(--brand-accent);
  border: 2px solid var(--brand-accent);
}

.btn-outline:hover {
  background: var(--brand-accent);
  color: #1A1A1A;
  transform: translateY(-2px);
}

.hero-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,.4);
  margin-top: 16px;
}

/* ── SECTIONS GENERAL ── */
section { padding: 70px 0; }

.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;
}

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

.section-subtitle {
  font-size: 0.95rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 40px;
  max-width: 600px;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
  border-radius: 2px;
  margin: 12px 0 36px;
}

/* ── WELCOME SECTION ── */
.welcome-section {
  background: linear-gradient(180deg, #0D0D0D 0%, #111111 100%);
  border-bottom: 1px solid #1e1e1e;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.welcome-text p {
  color: rgba(255,255,255,.75);
  margin-bottom: 16px;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.welcome-visual {
  background: linear-gradient(135deg, #1a1a1a, #2a1a00);
  border: 1px solid #2e2e2e;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.stat-item {
  background: rgba(213,148,26,.08);
  border: 1px solid rgba(213,148,26,.2);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.stat-number {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--brand-accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── BONUS SECTION ── */
.bonus-section {
  background: #0D0D0D;
  border-top: 1px solid #1e1e1e;
  border-bottom: 1px solid #1e1e1e;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bonus-card {
  background: linear-gradient(135deg, #1a1a1a, #1f1200);
  border: 1px solid #2e2e2e;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
}

.bonus-card:hover { transform: translateY(-4px); border-color: rgba(213,148,26,.4); }

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

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

.bonus-amount-label {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-accent);
  font-family: var(--brand-head-font);
  margin-bottom: 8px;
}

.bonus-card p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}

.bonus-card .bonus-terms {
  font-size: 0.7rem;
  color: rgba(255,255,255,.3);
  margin-top: 12px;
}

/* ── GAMES SECTION ── */
.games-section {
  background: #111111;
}

.games-asymmetric {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.games-main { }

.game-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.game-tab {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid #2e2e2e;
  background: transparent;
  color: rgba(255,255,255,.6);
  font-size: 0.8125rem;
  cursor: pointer;
  transition: all .2s;
  font-family: var(--brand-body-font);
}

.game-tab.active,
.game-tab:hover {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  color: #1A1A1A;
  border-color: transparent;
  font-weight: 700;
}

.game-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.game-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
  transition: transform .2s, border-color .2s;
}

.game-card:hover { transform: translateY(-3px); border-color: rgba(213,148,26,.3); }

.game-card-img {
  width: 100%;
  height: 120px;
  background: linear-gradient(135deg, #2a1a00, #1a0f00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.game-card-body { padding: 12px; }

.game-card-body h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  font-family: var(--brand-head-font);
}

.game-card-body span {
  font-size: 0.7rem;
  color: rgba(255,255,255,.4);
}

.games-sidebar { }

.sidebar-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
}

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

.provider-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.provider-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,.7);
  padding: 8px 12px;
  background: rgba(255,255,255,.04);
  border-radius: 8px;
  border: 1px solid #2a2a2a;
}

.provider-dot {
  width: 8px;
  height: 8px;
  background: var(--brand-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── PAYMENTS SECTION ── */
.payments-section {
  background: #0D0D0D;
  border-top: 1px solid #1e1e1e;
  border-bottom: 1px solid #1e1e1e;
}

.payments-full {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.payments-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.payment-method-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 20px 12px;
  text-align: center;
  transition: border-color .2s;
}

.payment-method-card:hover { border-color: rgba(213,148,26,.3); }

.payment-method-card .pm-icon { font-size: 1.75rem; margin-bottom: 8px; }
.payment-method-card .pm-name { font-size: 0.75rem; color: rgba(255,255,255,.6); font-weight: 700; }
.payment-method-card .pm-speed { font-size: 0.7rem; color: rgba(255,255,255,.35); margin-top: 4px; }

.payment-info-block p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin-bottom: 14px;
}

.payment-highlight {
  background: linear-gradient(135deg, rgba(213,148,26,.1), rgba(245,166,35,.06));
  border: 1px solid rgba(213,148,26,.25);
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 16px;
}

.payment-highlight p {
  margin-bottom: 0;
  font-size: 0.875rem;
  color: rgba(255,255,255,.8);
}

/* ── BETTING SECTION ── */
.betting-section {
  background: #111111;
}

.betting-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

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

.betting-content h2 span { color: var(--brand-accent); }

.betting-content p {
  color: rgba(255,255,255,.7);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.betting-sports-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0;
}

.betting-sports-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,.75);
}

.betting-sports-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--brand-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.betting-visual {
  background: linear-gradient(135deg, #1a1a1a, #1f1200);
  border: 1px solid #2e2e2e;
  border-radius: 16px;
  padding: 32px;
}

.odds-display {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.odds-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid #2a2a2a;
  border-radius: 10px;
}

.odds-match { font-size: 0.8125rem; color: rgba(255,255,255,.7); }
.odds-value {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 1rem;
  color: var(--brand-accent);
}

/* ── SECURITY SECTION ── */
.security-section {
  background: #0D0D0D;
  border-top: 1px solid #1e1e1e;
  border-bottom: 1px solid #1e1e1e;
}

.security-three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.security-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  padding: 28px 24px;
  transition: border-color .2s, transform .2s;
}

.security-card:hover { border-color: rgba(213,148,26,.3); transform: translateY(-2px); }

.security-card-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

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

.security-card p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}

/* ── SUPPORT SECTION ── */
.support-section {
  background: #111111;
}

.support-asymmetric {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: center;
}

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

.support-info h2 span { color: var(--brand-accent); }

.support-info p {
  color: rgba(255,255,255,.65);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.support-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.support-channel {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  transition: border-color .2s;
}

.support-channel:hover { border-color: rgba(213,148,26,.3); }
.support-channel-icon { font-size: 1.75rem; margin-bottom: 10px; }
.support-channel h4 { font-size: 0.875rem; font-weight: 700; color: #fff; margin-bottom: 6px; font-family: var(--brand-head-font); }
.support-channel p { font-size: 0.75rem; color: rgba(255,255,255,.5); }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, #1a0f00 0%, #2d1a00 50%, #1a0f00 100%);
  border-top: 1px solid rgba(213,148,26,.2);
  border-bottom: 1px solid rgba(213,148,26,.2);
  text-align: center;
  padding: 80px 20px;
}

.cta-banner h2 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  color: #fff;
  margin-bottom: 16px;
}

.cta-banner h2 span { color: var(--brand-accent); }

.cta-banner p {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  margin-bottom: 32px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,.3);
  margin-top: 20px;
}

/* ── FAQ SECTION ── */
.faq-section {
  background: #0D0D0D;
  border-top: 1px solid #1e1e1e;
}

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

.faq-item {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
}

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

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

.faq-icon { font-size: 1.1rem; color: var(--brand-accent); flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
}

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

/* ── FOOTER ── */
.site-footer {
  background: #0D0D0D;
  border-top: 2px solid rgba(213,148,26,.25);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid #1e1e1e;
}

.footer-brand p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  margin-top: 12px;
  max-width: 320px;
}

.footer-heading {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--brand-accent);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.footer-links li a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}

.footer-links li a:hover { color: var(--brand-accent); }

/* ── RESPONSIBLE GAMBLING ROW ── */
.footer-responsible {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-bottom: 1px solid #1e1e1e;
}

.resp-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.8125rem;
  border: 1px solid;
}

.badge-18 {
  background: #c0392b;
  color: #fff;
  border-color: #c0392b;
  font-size: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  padding: 0;
}

.badge-ga {
  background: #1a6b1a;
  color: #fff;
  border-color: #1a6b1a;
}

.badge-rg {
  background: #1a3a6b;
  color: #fff;
  border-color: #1a3a6b;
}

/* ── PAYMENT LOGOS ROW ── */
.footer-payments {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-bottom: 1px solid #1e1e1e;
}

.footer-payments-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 4px;
}

.payment-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  white-space: nowrap;
}

.payment-logo.visa { color: #1a1f6f; background: #fff; }
.payment-logo.mc { color: #eb001b; background: #fff; }
.payment-logo.amex { color: #006fcf; background: #fff; }
.payment-logo.btc { color: #F7931A; background: rgba(247,147,26,.1); border-color: rgba(247,147,26,.3); }
.payment-logo.eth { color: #627EEA; background: rgba(98,126,234,.1); border-color: rgba(98,126,234,.3); }
.payment-logo.ltc { color: #BFBBBB; background: rgba(191,187,187,.1); border-color: rgba(191,187,187,.3); }

/* ── FOOTER BOTTOM ── */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  flex-wrap: wrap;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  list-style: none;
}

.footer-legal-links li a {
  font-size: 0.75rem;
  color: rgba(255,255,255,.4);
  transition: color .2s;
}

.footer-legal-links li a:hover { color: var(--brand-accent); }

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(255,255,255,.3);
  text-align: right;
}

.footer-disclaimer {
  font-size: 0.7rem;
  color: rgba(255,255,255,.25);
  line-height: 1.5;
  padding-top: 20px;
  border-top: 1px solid #1e1e1e;
  margin-top: 20px;
  text-align: center;
}

/* ── LEGAL PAGE STYLES ── */
.legal-page-main {
  padding-top: 100px;
  min-height: 80vh;
}

.legal-hero {
  background: linear-gradient(135deg, #0D0D0D, #1a1200);
  border-bottom: 1px solid #2e2e2e;
  padding: 60px 0 40px;
  margin-bottom: 0;
}

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

.legal-hero p {
  color: rgba(255,255,255,.5);
  font-size: 0.875rem;
}

.legal-content {
  background: #111111;
  padding: 60px 0;
}

.legal-body {
  max-width: 860px;
}

.legal-body h2 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--brand-accent);
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #2a2a2a;
}

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

.legal-body p {
  color: rgba(255,255,255,.65);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-body ul {
  margin: 12px 0 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-body ul li {
  color: rgba(255,255,255,.6);
  font-size: 0.9rem;
  line-height: 1.6;
}

.legal-last-updated {
  display: inline-block;
  background: rgba(213,148,26,.1);
  border: 1px solid rgba(213,148,26,.2);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.8rem;
  color: var(--brand-accent);
  margin-bottom: 32px;
}

/* ── UTILITIES ── */
.text-gold { color: var(--brand-accent); }
.text-muted { color: rgba(255,255,255,.5); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.d-flex { display: flex; }
.gap-12 { gap: 12px; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }

/* ── MOBILE NAV RULES ── */
.mobile-menu-btn { display: none; }

@media (max-width: 992px) {
  .main-nav ul { display: none; }
  .mobile-menu-btn { display: block; }
  .main-nav.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,.1);
    z-index: 999;
    border-top: 1px solid #2a2a2a;
  }
  .main-nav.mobile-nav-active ul li a {
    padding: 12px 16px;
    display: block;
    border-radius: 8px;
  }
}

/* ── RESPONSIVE BREAKPOINTS ── */
@media (max-width: 1200px) {
  .bonus-grid { grid-template-columns: 1fr 1fr; }
  .security-three-col { grid-template-columns: 1fr 1fr; }
  .game-cards-grid { grid-template-columns: 1fr 1fr; }
  .payment-methods-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .games-asymmetric { grid-template-columns: 1fr; }
  .games-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
}

@media (max-width: 768px) {
  section { padding: 50px 0; }
  .hero { min-height: 80vh; padding: 110px 20px 60px; }
  .welcome-grid { grid-template-columns: 1fr; gap: 32px; }
  .bonus-grid { grid-template-columns: 1fr; }
  .games-asymmetric { grid-template-columns: 1fr; }
  .games-sidebar { grid-template-columns: 1fr; }
  .game-cards-grid { grid-template-columns: 1fr 1fr; }
  .payments-intro { grid-template-columns: 1fr; gap: 24px; }
  .payment-methods-grid { grid-template-columns: repeat(2, 1fr); }
  .betting-two-col { grid-template-columns: 1fr; gap: 32px; }
  .security-three-col { grid-template-columns: 1fr; }
  .support-asymmetric { grid-template-columns: 1fr; gap: 32px; }
  .support-channels { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; text-align: left; }
  .footer-copyright { text-align: left; }
  .hero-bonus-box { padding: 20px 24px; }
  .floating-cta { bottom: 20px; right: 16px; padding: 12px 22px; font-size: 14px; }
  .betting-sports-list { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .footer-responsible { gap: 10px; }
  .footer-payments { gap: 8px; }
}

@media (max-width: 480px) {
  .header-inner { height: 60px; }
  .hero h1 { font-size: 1.7rem; }
  .game-cards-grid { grid-template-columns: 1fr; }
  .payment-methods-grid { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  .hero-bonus-box { width: 100%; }
  .logo-text { font-size: 1.2rem; }
  .footer-legal-links { gap: 12px; }
}

@media (max-width: 320px) {
  .container { padding: 0 12px; }
  .btn-hero { padding: 14px 28px; font-size: 1rem; }
  .floating-cta { right: 10px; bottom: 12px; font-size: 13px; padding: 10px 18px; }
}