/* ============================================================
   BOHO CASINO — Complete Stylesheet
   Brand: Boho Casino | bohocasino.info
   ============================================================ */

/* --- CSS Variables --- */
:root {
  --brand-primary:     #F5A623;
  --brand-secondary:   #7B2FBE;
  --brand-accent:      #FF8C00;
  --brand-bg:          #F5F0FF;
  --brand-text:        #333333;
  --brand-header-bg:   #FFFFFF;
  --brand-btn-bg:      #F5A623;
  --brand-btn-text:    #FFFFFF;
  --brand-btn-radius:  25px;
  --brand-head-font:   'Montserrat', sans-serif;
  --brand-body-font:   'Open Sans', sans-serif;
  --brand-head-weight: 800;
  --brand-body-size:   14px;
  --shadow-sm:         0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:         0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:         0 8px 40px rgba(0,0,0,0.18);
  --radius-card:       16px;
  --radius-pill:       50px;
  --transition:        all 0.25s 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-color: var(--brand-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

ul {
  list-style: none;
}

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

/* --- Skip to Content --- */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--brand-secondary);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--brand-btn-radius);
  z-index: 99999;
  font-weight: 700;
  transition: top 0.2s;
}

.skip-to-content:focus {
  top: 10px;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header {
  background: var(--brand-header-bg);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  border-bottom: 2px solid rgba(245, 166, 35, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

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

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

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

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

.main-nav ul li a {
  display: block;
  padding: 8px 16px;
  font-family: var(--brand-head-font);
  font-weight: 600;
  font-size: 13px;
  color: var(--brand-text);
  border-radius: var(--brand-btn-radius);
  transition: var(--transition);
  white-space: nowrap;
}

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

/* Header CTA */
.header-cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Age Badge */
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--brand-secondary);
  color: #fff;
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: 2px solid var(--brand-secondary);
  color: var(--brand-secondary);
  font-size: 20px;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 8px;
  transition: var(--transition);
  line-height: 1;
}

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

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--brand-btn-radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
}

.btn:focus {
  outline: 3px solid rgba(245, 166, 35, 0.5);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--brand-btn-bg);
  color: var(--brand-btn-text);
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
}

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

.btn-secondary {
  background: var(--brand-secondary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(123, 47, 190, 0.35);
}

.btn-secondary:hover {
  background: #6a1fa8;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 47, 190, 0.5);
}

.btn-hero {
  background: var(--brand-btn-bg);
  color: #fff;
  padding: 16px 40px;
  font-size: 16px;
  border-radius: var(--brand-btn-radius);
  box-shadow: 0 6px 25px rgba(245, 166, 35, 0.5);
  font-family: var(--brand-head-font);
  font-weight: 800;
  display: inline-block;
  text-decoration: none;
  transition: var(--transition);
}

.btn-hero:hover {
  background: var(--brand-accent);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(255, 140, 0, 0.55);
}

.btn-cta {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  color: #fff;
  padding: 14px 36px;
  font-size: 15px;
  border-radius: var(--brand-btn-radius);
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.45);
  font-family: var(--brand-head-font);
  font-weight: 700;
  display: inline-block;
  text-decoration: none;
  transition: var(--transition);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 166, 35, 0.55);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
  padding: 12px 28px;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
  text-decoration: none;
  transition: var(--transition);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}

/* ============================================================
   FLOATING CTA
   ============================================================ */
.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: 15px;
  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;
  font-family: var(--brand-head-font);
  display: flex;
  align-items: center;
  gap: 8px;
}

.floating-cta::before {
  content: '🎰';
  font-size: 16px;
}

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

.floating-cta:focus {
  outline: 3px solid rgba(245, 166, 35, 0.6);
  outline-offset: 3px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: linear-gradient(135deg, #4a1080 0%, #7B2FBE 40%, #b05fd4 70%, #e8a0f0 100%);
  padding: 80px 20px 90px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero-content {
  color: #fff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--brand-head-font);
  color: #fff;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-badge::before {
  content: '⭐';
}

.hero h1 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

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

.hero-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  margin-bottom: 32px;
  max-width: 480px;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  display: block;
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--brand-primary);
  line-height: 1;
}

.hero-stat-label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Hero Visual Side */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}

.hero-bonus-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-card);
  padding: 28px;
  backdrop-filter: blur(12px);
  text-align: center;
  color: #fff;
}

.hero-bonus-card .bonus-amount {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  color: var(--brand-primary);
  line-height: 1;
  display: block;
}

.hero-bonus-card .bonus-label {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-top: 6px;
  font-weight: 600;
}

.hero-bonus-card .bonus-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 10px;
}

.hero-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-feature-item {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  color: #fff;
  backdrop-filter: blur(8px);
}

.hero-feature-icon {
  font-size: 24px;
  display: block;
  margin-bottom: 6px;
}

.hero-feature-label {
  font-size: 11px;
  font-weight: 700;
  font-family: var(--brand-head-font);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.85);
}

/* ============================================================
   SECTION BASICS
   ============================================================ */
section {
  padding: 60px 0;
}

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

.section-tag {
  display: inline-block;
  background: rgba(123, 47, 190, 0.1);
  color: var(--brand-secondary);
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  border: 1px solid rgba(123, 47, 190, 0.15);
}

.section-header h2 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--brand-text);
  line-height: 1.2;
  margin-bottom: 14px;
}

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

.section-header p {
  font-size: 15px;
  color: #666;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   WELCOME BONUS SECTION
   ============================================================ */
.welcome-section {
  background: #fff;
  padding: 70px 0;
}

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

.welcome-content h2 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--brand-text);
  margin-bottom: 20px;
  line-height: 1.25;
}

.welcome-content h2 span {
  color: var(--brand-secondary);
}

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

.welcome-content .cta-note {
  font-size: 12px;
  color: #999;
  margin-top: 10px;
}

.bonus-breakdown {
  background: var(--brand-bg);
  border-radius: var(--radius-card);
  padding: 32px;
  border: 1px solid rgba(123, 47, 190, 0.1);
}

.bonus-breakdown h3 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 16px;
  color: var(--brand-secondary);
  margin-bottom: 24px;
  text-align: center;
}

.bonus-tier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.bonus-tier:last-child {
  border-bottom: none;
}

.tier-label {
  font-weight: 600;
  font-size: 13px;
  color: var(--brand-text);
}

.tier-value {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 15px;
  color: var(--brand-primary);
}

.bonus-terms {
  margin-top: 20px;
  padding: 14px;
  background: rgba(123, 47, 190, 0.06);
  border-radius: 10px;
  font-size: 12px;
  color: #777;
  line-height: 1.6;
}

.bonus-terms strong {
  color: var(--brand-secondary);
}

/* ============================================================
   GAMES SECTION
   ============================================================ */
.games-section {
  background: var(--brand-bg);
  padding: 70px 0;
}

/* Category Tabs */
.category-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.tab-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  background: #fff;
  color: #777;
  box-shadow: var(--shadow-sm);
}

.tab-pill:hover,
.tab-pill.active {
  background: var(--brand-secondary);
  color: #fff;
  border-color: var(--brand-secondary);
  box-shadow: 0 4px 15px rgba(123, 47, 190, 0.3);
}

/* Games Grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.game-card {
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.game-card-thumb {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #7B2FBE, #b05fd4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}

.game-card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.3) 100%);
}

.game-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--brand-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--brand-head-font);
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 1;
  letter-spacing: 0.05em;
}

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

.game-card-title {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 13px;
  color: var(--brand-text);
  margin-bottom: 4px;
}

.game-card-provider {
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.game-card-rtp {
  font-size: 11px;
  color: #777;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rtp-badge {
  background: rgba(123, 47, 190, 0.08);
  color: var(--brand-secondary);
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
}

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

/* ============================================================
   PAYMENTS SECTION
   ============================================================ */
.payments-section {
  background: #fff;
  padding: 70px 0;
}

.payments-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.payments-intro h2 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  color: var(--brand-text);
  margin-bottom: 16px;
  line-height: 1.25;
}

.payments-intro h2 span {
  color: var(--brand-secondary);
}

.payments-intro p {
  font-size: 14px;
  line-height: 1.75;
  color: #666;
  margin-bottom: 24px;
}

.payment-highlight {
  background: var(--brand-bg);
  border-radius: 12px;
  padding: 20px;
  border-left: 4px solid var(--brand-primary);
}

.payment-highlight p {
  font-size: 13px;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

.payment-highlight strong {
  color: var(--brand-text);
}

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

.payment-method-card {
  background: var(--brand-bg);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  border: 1px solid rgba(123, 47, 190, 0.08);
  transition: var(--transition);
}

.payment-method-card:hover {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.payment-method-icon {
  font-size: 32px;
  margin-bottom: 10px;
  display: block;
}

.payment-method-name {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 13px;
  color: var(--brand-text);
  margin-bottom: 6px;
}

.payment-method-speed {
  font-size: 11px;
  color: #888;
}

.payment-method-speed strong {
  color: #2ea44f;
  display: block;
  font-size: 13px;
  font-weight: 700;
}

/* ============================================================
   LIVE CASINO & BETTING
   ============================================================ */
.live-section {
  background: linear-gradient(135deg, #2d0a6e 0%, #4a1080 50%, #7B2FBE 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.live-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.live-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.live-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-card);
  padding: 36px;
  backdrop-filter: blur(10px);
  color: #fff;
  transition: var(--transition);
}

.live-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.live-card-icon {
  font-size: 42px;
  margin-bottom: 18px;
  display: block;
}

.live-card h2 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: 1.6rem;
  margin-bottom: 14px;
  color: #fff;
  line-height: 1.2;
}

.live-card h2 span {
  color: var(--brand-primary);
}

.live-card p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
}

.live-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.live-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}

.live-feature::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: var(--brand-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   WHY CHOOSE SECTION — 3-COLUMN
   ============================================================ */
.why-section {
  background: var(--brand-bg);
  padding: 70px 0;
}

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

.why-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 4px solid transparent;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--brand-primary);
}

.why-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(245,166,35,0.12), rgba(123,47,190,0.12));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}

.why-card h3 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 16px;
  color: var(--brand-text);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 13px;
  line-height: 1.7;
  color: #777;
}

/* ============================================================
   CONTENT SECTIONS (Homepage SEO Text)
   ============================================================ */
.content-section {
  background: #fff;
  padding: 70px 0;
}

.content-section:nth-child(even) {
  background: var(--brand-bg);
}

.content-two-col {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.content-text h2 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  color: var(--brand-text);
  margin-bottom: 18px;
  line-height: 1.3;
}

.content-text h2 span {
  color: var(--brand-secondary);
}

.content-text h3 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 16px;
  color: var(--brand-text);
  margin: 28px 0 12px;
}

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

.content-text ul {
  padding-left: 0;
  margin-bottom: 20px;
}

.content-text ul li {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  padding: 5px 0 5px 24px;
  position: relative;
}

.content-text ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--brand-primary);
  font-weight: 700;
}

/* Info Sidebar Card */
.info-card {
  background: var(--brand-bg);
  border-radius: var(--radius-card);
  padding: 28px;
  border: 1px solid rgba(123, 47, 190, 0.1);
  position: sticky;
  top: 100px;
}

.info-card h3 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 15px;
  color: var(--brand-secondary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(123, 47, 190, 0.15);
}

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

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

.info-label {
  color: #888;
  font-weight: 500;
}

.info-value {
  font-weight: 700;
  color: var(--brand-text);
  font-family: var(--brand-head-font);
  font-size: 13px;
}

.info-value.green {
  color: #2ea44f;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  background: #fff;
  padding: 70px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: var(--brand-bg);
  border-radius: 14px;
  padding: 24px;
  border: 1px solid rgba(123, 47, 190, 0.08);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(245, 166, 35, 0.3);
  box-shadow: var(--shadow-sm);
}

.faq-item h3 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 14px;
  color: var(--brand-secondary);
  margin-bottom: 10px;
  line-height: 1.35;
}

.faq-item p {
  font-size: 13px;
  line-height: 1.7;
  color: #666;
}

/* ============================================================
   MID-PAGE CTA SECTION
   ============================================================ */
.mid-cta-section {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
  padding: 60px 20px;
  text-align: center;
}

.mid-cta-section h2 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #fff;
  margin-bottom: 14px;
}

.mid-cta-section p {
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 30px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.mid-cta-section .btn {
  background: #fff;
  color: var(--brand-accent);
  font-size: 16px;
  padding: 16px 44px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.2);
}

.mid-cta-section .btn:hover {
  background: var(--brand-secondary);
  color: #fff;
  transform: translateY(-2px);
}

.mid-cta-note {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-top: 14px;
}

/* ============================================================
   SECURITY & LICENSING ROW
   ============================================================ */
.trust-bar {
  background: var(--brand-bg);
  padding: 32px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #666;
  font-weight: 600;
}

.trust-item-icon {
  font-size: 22px;
  opacity: 0.8;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #1a0a3e;
  color: rgba(255,255,255,0.75);
  padding-top: 60px;
}

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

.footer-brand p {
  font-size: 13px;
  line-height: 1.75;
  margin-top: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 280px;
}

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

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

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

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

.footer-help-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
}

.footer-help-line strong {
  color: #fff;
}

/* Responsible Gambling */
.footer-rg {
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.rg-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  font-family: var(--brand-head-font);
  transition: var(--transition);
}

.rg-badge:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
}

.rg-badge-icon {
  font-size: 16px;
}

.rg-age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #c0392b;
  color: #fff;
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

.rg-text {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

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

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

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

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

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

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

.legal-header {
  background: linear-gradient(135deg, #4a1080, #7B2FBE);
  padding: 50px 20px;
  text-align: center;
  color: #fff;
  margin-bottom: 0;
}

.legal-header h1 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
  margin-bottom: 10px;
}

.legal-header p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 20px;
}

.legal-content h2 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--brand-secondary);
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(123, 47, 190, 0.12);
}

.legal-content h3 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brand-text);
  margin: 22px 0 10px;
}

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

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-content ul li {
  font-size: 14px;
  line-height: 1.75;
  color: #555;
  list-style: disc;
  margin-bottom: 6px;
}

.legal-content .last-updated {
  display: inline-block;
  background: rgba(123, 47, 190, 0.08);
  color: var(--brand-secondary);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 30px;
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 1100px) {
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

  .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 20px rgba(0,0,0,0.1);
    z-index: 999;
    gap: 4px;
  }

  .mobile-nav-active ul li a {
    padding: 12px 16px;
    border-radius: 10px;
    display: block;
    font-size: 15px;
  }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Layouts */
  .welcome-grid,
  .payments-layout,
  .content-two-col {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .info-card {
    position: static;
  }

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

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

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

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

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

@media (max-width: 768px) {
  section {
    padding: 48px 0;
  }

  .hero {
    padding: 56px 20px 64px;
  }

  .hero-visual {
    display: none;
  }

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

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

  .trust-bar-inner {
    gap: 20px;
  }

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

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

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

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

  .payment-methods-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-bonus-card .bonus-amount {
    font-size: 2.2rem;
  }

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

  .category-tabs {
    gap: 8px;
  }

  .tab-pill {
    padding: 7px 14px;
    font-size: 12px;
  }
}

@media (max-width: 320px) {
  .container {
    padding: 0 14px;
  }

  .btn-hero {
    padding: 14px 28px;
    font-size: 14px;
  }
}