/* ============================================================
   TonyBet CA — Complete Site Stylesheet
   ============================================================ */

/* --- CSS Variables --- */
:root {
  --brand-primary:     #FF6600;
  --brand-secondary:   #7B2D8E;
  --brand-accent:      #FF3D00;
  --brand-bg:          #F5F5F5;
  --brand-text:        #333333;
  --brand-header-bg:   #1A1A2E;
  --brand-btn-bg:      #FF4500;
  --brand-btn-text:    #FFFFFF;
  --brand-btn-radius:  24px;
  --brand-head-font:   'Impact', sans-serif;
  --brand-body-font:   'Arial', sans-serif;
  --brand-head-weight: 800;
  --brand-body-size:   14px;

  --nav-height: 64px;
  --section-pad: 60px 0;
  --card-radius: 12px;
  --transition: .2s ease;
}

/* --- Reset & Base --- */
*, *::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);
  color: var(--brand-text);
  background: var(--brand-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--brand-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--brand-accent);
}

ul {
  list-style: none;
}

/* --- Skip to Content --- */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--brand-primary);
  color: #fff;
  padding: 8px 16px;
  z-index: 10000;
  font-weight: 700;
  transition: top .2s;
}
.skip-to-content:focus {
  top: 0;
}

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

/* ============================================================
   HEADER & NAV
   ============================================================ */
.site-header {
  background: var(--brand-header-bg);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--nav-height);
  box-shadow: 0 2px 12px rgba(0,0,0,.45);
}

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

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

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Nav */
.main-nav {
  flex: 1;
}

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

.main-nav ul li a {
  color: #fff;
  font-family: var(--brand-body-font);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  letter-spacing: .3px;
  transition: background var(--transition), color var(--transition);
  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-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-header-cta {
  background: var(--brand-btn-bg);
  color: var(--brand-btn-text);
  border-radius: var(--brand-btn-radius);
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
  display: inline-block;
}

.btn-header-cta:hover {
  background: var(--brand-accent);
  color: #fff;
  transform: translateY(-1px);
}

/* Mobile Burger */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  padding: 6px 10px;
  line-height: 1;
  border-radius: 6px;
  transition: background var(--transition);
}

.mobile-menu-btn:hover {
  background: rgba(255,255,255,.1);
}

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

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  background: linear-gradient(135deg, #2D1B6B 0%, #7B2D8E 45%, #1A1A2E 100%);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255,102,0,.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(123,45,142,.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  color: #fff;
}

.hero-badge {
  display: inline-block;
  background: var(--brand-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.hero-content h1 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.1;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.hero-content p {
  font-size: 16px;
  color: rgba(255,255,255,.85);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 460px;
}

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

.btn-hero {
  display: inline-block;
  background: var(--brand-btn-bg);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: var(--brand-btn-radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 18px rgba(255,69,0,.4);
  letter-spacing: .4px;
}

.btn-hero:hover {
  background: var(--brand-accent);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(255,69,0,.55);
}

.btn-hero:focus {
  outline: 3px solid rgba(255,255,255,.6);
  outline-offset: 3px;
}

.hero-note {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  margin-top: 0;
}

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

.stat-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--card-radius);
  padding: 20px 16px;
  text-align: center;
  backdrop-filter: blur(4px);
}

.stat-card .stat-number {
  font-family: var(--brand-head-font);
  font-size: clamp(22px, 3vw, 32px);
  color: var(--brand-primary);
  font-weight: 800;
  display: block;
  line-height: 1.1;
}

.stat-card .stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.65);
  margin-top: 6px;
  display: block;
}

/* ============================================================
   FLOATING CTA BUTTON
   ============================================================ */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  padding: 14px 28px;
  background: var(--brand-primary);
  color: #fff;
  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-body-font);
  letter-spacing: .4px;
}

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

.floating-cta:focus {
  outline: 3px solid rgba(255,255,255,.7);
  outline-offset: 3px;
}

/* ============================================================
   SECTION TYPOGRAPHY
   ============================================================ */
.section-title {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(24px, 3.5vw, 38px);
  color: var(--brand-header-bg);
  text-transform: uppercase;
  letter-spacing: .8px;
  line-height: 1.15;
}

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

.section-subtitle {
  font-size: 15px;
  color: #666;
  margin-top: 10px;
  line-height: 1.6;
  max-width: 600px;
}

.section-intro {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
}

/* ============================================================
   BUTTONS (GENERAL)
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--brand-body-font);
  font-weight: 700;
  font-size: 14px;
  padding: 11px 26px;
  border-radius: var(--brand-btn-radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  border: none;
  letter-spacing: .3px;
  text-align: center;
}

.btn-primary {
  background: var(--brand-btn-bg);
  color: #fff;
  box-shadow: 0 3px 12px rgba(255,69,0,.3);
}

.btn-primary:hover {
  background: var(--brand-accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,69,0,.45);
}

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

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

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

.btn-secondary {
  background: var(--brand-secondary);
  color: #fff;
}

.btn-secondary:hover {
  background: #612278;
  color: #fff;
  transform: translateY(-2px);
}

.btn-cta {
  background: var(--brand-btn-bg);
  color: #fff;
  font-size: 16px;
  padding: 14px 36px;
  border-radius: var(--brand-btn-radius);
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(255,69,0,.35);
  display: inline-block;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-cta:hover {
  background: var(--brand-accent);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(255,69,0,.5);
}

/* ============================================================
   WELCOME BONUS BAND
   ============================================================ */
.bonus-band {
  background: linear-gradient(90deg, #7B2D8E 0%, #1A1A2E 100%);
  padding: 40px 0;
}

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

.bonus-band-text h2 {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 34px);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.bonus-band-text p {
  color: rgba(255,255,255,.75);
  font-size: 14px;
  margin-top: 8px;
}

.bonus-amount {
  font-family: var(--brand-head-font);
  font-size: clamp(36px, 5vw, 58px);
  color: var(--brand-primary);
  font-weight: 800;
  text-align: center;
  line-height: 1;
}

.bonus-amount small {
  display: block;
  font-family: var(--brand-body-font);
  font-size: 13px;
  color: rgba(255,255,255,.6);
  font-weight: 400;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ============================================================
   SECTION: HOW IT WORKS (3-column)
   ============================================================ */
.how-it-works {
  padding: var(--section-pad);
  background: #fff;
}

.how-it-works .section-header {
  text-align: center;
  margin-bottom: 48px;
}

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

.step-card {
  background: var(--brand-bg);
  border-radius: var(--card-radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
}

.step-number {
  width: 52px;
  height: 52px;
  background: var(--brand-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--brand-head-font);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 20px;
}

.step-card h3 {
  font-family: var(--brand-head-font);
  font-size: 18px;
  font-weight: 800;
  color: var(--brand-header-bg);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.65;
}

/* ============================================================
   SECTION: GAMES (full-width + card grid)
   ============================================================ */
.games-section {
  padding: var(--section-pad);
  background: var(--brand-bg);
}

.games-section .section-header {
  margin-bottom: 36px;
}

.games-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.games-tab {
  background: #e8e8e8;
  border: none;
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  font-family: var(--brand-body-font);
}

.games-tab:hover,
.games-tab.active {
  background: var(--brand-secondary);
  color: #fff;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.game-card {
  background: #fff;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.07);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,.14);
}

.game-card-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #2D1B6B, #7B2D8E);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.game-card-thumb .game-icon {
  font-size: 42px;
  opacity: .8;
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.game-card-overlay a {
  background: var(--brand-primary);
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
}

.game-card-overlay a:hover {
  background: var(--brand-accent);
  color: #fff;
}

.game-card-info {
  padding: 14px 16px;
}

.game-card-info h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-header-bg);
  margin-bottom: 4px;
}

.game-card-info span {
  font-size: 11px;
  color: #999;
}

/* ============================================================
   SECTION: FEATURES (asymmetric 2/3 + 1/3)
   ============================================================ */
.features-section {
  padding: var(--section-pad);
  background: #fff;
}

.features-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.features-main .section-title {
  margin-bottom: 20px;
}

.features-main p {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 18px;
}

.feature-list {
  margin-top: 24px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--brand-secondary), var(--brand-primary));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-header-bg);
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 13px;
  color: #666;
  line-height: 1.55;
  margin-bottom: 0;
}

/* Sidebar panel */
.features-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 20px);
}

.quick-info-panel {
  background: linear-gradient(160deg, #2D1B6B, #1A1A2E);
  border-radius: var(--card-radius);
  padding: 28px 24px;
  color: #fff;
}

.quick-info-panel h3 {
  font-family: var(--brand-head-font);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--brand-primary);
}

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

.info-row:last-of-type {
  border-bottom: none;
}

.info-row .info-label {
  color: rgba(255,255,255,.65);
}

.info-row .info-value {
  font-weight: 700;
  color: #fff;
  text-align: right;
}

.info-row .info-value.highlight {
  color: var(--brand-primary);
}

.quick-info-cta {
  margin-top: 24px;
  display: block;
  text-align: center;
  background: var(--brand-btn-bg);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--brand-btn-radius);
  font-weight: 700;
  font-size: 14px;
  transition: background var(--transition), transform var(--transition);
}

.quick-info-cta:hover {
  background: var(--brand-accent);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   SECTION: PAYMENTS (full-width, centered)
   ============================================================ */
.payments-section {
  padding: var(--section-pad);
  background: var(--brand-bg);
}

.payments-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.payments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.payment-block {
  background: #fff;
  border-radius: var(--card-radius);
  padding: 28px 24px;
}

.payment-block h3 {
  font-family: var(--brand-head-font);
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--brand-header-bg);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.payment-block h3 .pay-icon {
  font-size: 20px;
}

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

.payment-table tr {
  border-bottom: 1px solid #f0f0f0;
}

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

.payment-table td {
  padding: 10px 0;
  color: #555;
}

.payment-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--brand-header-bg);
}

.payment-methods-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
}

.method-pill {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #444;
  transition: border-color var(--transition), color var(--transition);
}

.method-pill:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

/* ============================================================
   SECTION: LIVE CASINO (two-column side-by-side)
   ============================================================ */
.live-casino-section {
  padding: var(--section-pad);
  background: #fff;
}

.live-casino-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.live-casino-visual {
  background: linear-gradient(135deg, #7B2D8E 0%, #1A1A2E 100%);
  border-radius: 16px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.live-casino-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(255,102,0,.2) 0%, transparent 65%);
}

.live-badge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 28px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.live-badge {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  padding: 18px 14px;
  text-align: center;
  color: #fff;
}

.live-badge .badge-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 8px;
}

.live-badge .badge-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: rgba(255,255,255,.8);
}

.live-casino-content .section-title {
  margin-bottom: 16px;
}

.live-casino-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 18px;
}

.provider-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  margin-bottom: 28px;
}

.provider-chip {
  background: #f0e8f8;
  color: var(--brand-secondary);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 16px;
}

/* ============================================================
   SECTION: SPORTS BETTING (full-width dark)
   ============================================================ */
.sports-section {
  padding: var(--section-pad);
  background: var(--brand-header-bg);
  position: relative;
  overflow: hidden;
}

.sports-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at right, rgba(123,45,142,.25) 0%, transparent 70%);
  pointer-events: none;
}

.sports-inner {
  position: relative;
  z-index: 2;
}

.sports-inner .section-title {
  color: #fff;
  margin-bottom: 14px;
}

.sports-inner .section-subtitle {
  color: rgba(255,255,255,.65);
  margin-bottom: 40px;
}

.sports-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.sport-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--card-radius);
  padding: 24px 18px;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
}

.sport-card:hover {
  background: rgba(255,102,0,.15);
  transform: translateY(-3px);
  border-color: var(--brand-primary);
}

.sport-card .sport-emoji {
  font-size: 36px;
  display: block;
  margin-bottom: 12px;
}

.sport-card h4 {
  font-family: var(--brand-head-font);
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.sport-card p {
  font-size: 12px;
  color: rgba(255,255,255,.55);
}

.sports-cta {
  text-align: center;
  margin-top: 40px;
}

/* ============================================================
   SECTION: RESPONSIBLE GAMING (single-column)
   ============================================================ */
.responsible-section {
  padding: var(--section-pad);
  background: var(--brand-bg);
}

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

.responsible-inner .section-title {
  margin-bottom: 16px;
}

.responsible-inner p {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 16px;
}

.rg-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.rg-link {
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  color: #444;
  transition: border-color var(--transition), color var(--transition);
}

.rg-link:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

/* ============================================================
   SECTION: FAQ (single-column)
   ============================================================ */
.faq-section {
  padding: var(--section-pad);
  background: #fff;
}

.faq-section .section-header {
  text-align: center;
  margin-bottom: 44px;
}

.faq-grid {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e8e8e8;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 40px 18px 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-header-bg);
  cursor: pointer;
  position: relative;
  font-family: var(--brand-body-font);
  line-height: 1.4;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--brand-primary);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--brand-primary);
  transition: transform var(--transition);
}

.faq-item.open .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 0 18px;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

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

/* ============================================================
   SECTION: MID-PAGE CTA BAND
   ============================================================ */
.mid-cta-section {
  padding: 56px 0;
  background: linear-gradient(90deg, var(--brand-secondary) 0%, #4a1070 100%);
  text-align: center;
}

.mid-cta-section h2 {
  font-family: var(--brand-head-font);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.mid-cta-section p {
  color: rgba(255,255,255,.75);
  font-size: 15px;
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #111122;
  color: rgba(255,255,255,.7);
  padding: 56px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,.55);
  margin-top: 16px;
}

.footer-col h4 {
  font-family: var(--brand-body-font);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,.55);
  font-size: 13px;
  transition: color var(--transition);
}

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

/* Security Logos Row */
.footer-security {
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.security-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

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

.security-badge .badge-emoji {
  font-size: 16px;
}

/* Age Restriction */
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--brand-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Footer Bottom */
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal-links a {
  color: rgba(255,255,255,.45);
  font-size: 12px;
  transition: color var(--transition);
}

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

.footer-copyright {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  text-align: right;
}

/* Gambling help */
.gambling-help {
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
  text-align: center;
}

.gambling-help p {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  line-height: 1.6;
}

.gambling-help a {
  color: rgba(255,255,255,.6);
  text-decoration: underline;
}

.gambling-help a:hover {
  color: var(--brand-primary);
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page-wrapper {
  padding: 60px 0;
  min-height: 60vh;
}

.legal-page-header {
  background: var(--brand-header-bg);
  padding: 40px 0;
  margin-bottom: 48px;
}

.legal-page-header h1 {
  font-family: var(--brand-head-font);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
}

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

.legal-content h2 {
  font-family: var(--brand-head-font);
  font-size: 20px;
  font-weight: 800;
  color: var(--brand-header-bg);
  text-transform: uppercase;
  margin: 36px 0 14px;
}

.legal-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-header-bg);
  margin: 24px 0 10px;
}

.legal-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 16px;
}

.legal-content ul li {
  font-size: 14px;
  color: #555;
  line-height: 1.65;
  margin-bottom: 8px;
}

.legal-date {
  font-size: 13px;
  color: #888;
  margin-bottom: 32px;
  font-style: italic;
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */

/* Burger Menu */
.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;
  }

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

@media (max-width: 1100px) {
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-stats {
    max-width: 400px;
  }

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

  .features-sidebar {
    position: static;
  }

  .live-casino-inner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  :root {
    --section-pad: 44px 0;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .sports-cards {
    grid-template-columns: 1fr 1fr;
  }

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

  .bonus-band-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-copyright {
    text-align: center;
  }

  .footer-legal-links {
    justify-content: center;
  }

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

  .header-cta-group .btn-header-cta {
    display: none;
  }
}

@media (max-width: 480px) {
  .games-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    max-width: 260px;
  }

  .sports-cards {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .rg-links {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================================================
   FOCUS STATES (Accessibility)
   ============================================================ */
:focus-visible {
  outline: 3px solid var(--brand-primary);
  outline-offset: 3px;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--brand-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}