/* ============================================================
   BigPirate Casino — Main Stylesheet
   Brand: Dark Teal / Emerald / Gold Pirate Theme
   ============================================================ */

/* --- 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);
  background-color: var(--brand-bg);
  color: var(--brand-text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--brand-accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: #ffd460; }
a:focus { outline: 2px solid var(--brand-accent); outline-offset: 2px; }

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

ul { list-style: none; }

/* --- CSS Variables --- */
:root {
  --brand-primary:     #0a4a3a;
  --brand-secondary:   #1a8a6a;
  --brand-accent:      #f5b820;
  --brand-bg:          #0c3a32;
  --brand-text:        #ffffff;
  --brand-header-bg:   #0a3a2e;
  --brand-btn-bg:      #f5b820;
  --brand-btn-text:    #5a3a00;
  --brand-btn-radius:  8px;
  --brand-head-font:   'Impact', sans-serif;
  --brand-body-font:   'Arial', sans-serif;
  --brand-head-weight: 800;
  --brand-body-size:   14px;
  --brand-card-bg:     #0d4a3c;
  --brand-card-border: #1a6a52;
  --brand-shadow:      0 4px 20px rgba(0,0,0,0.4);
  --brand-gold-grad:   linear-gradient(135deg, #f5b820 0%, #e8920a 100%);
  --brand-green-grad:  linear-gradient(135deg, #1a8a6a 0%, #0a4a3a 100%);
}

/* --- Skip to Content --- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--brand-accent);
  color: var(--brand-btn-text);
  padding: 8px 16px;
  font-weight: 700;
  z-index: 10000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { top: 0; }

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

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header {
  background: var(--brand-header-bg);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.5);
  border-bottom: 2px solid rgba(245,184,32,0.25);
}

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

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

.main-nav { display: flex; align-items: center; }

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

.main-nav ul li a {
  display: block;
  padding: 8px 14px;
  color: var(--brand-text);
  font-family: var(--brand-body-font);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--brand-btn-radius);
  transition: background 0.2s, color 0.2s;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  background: rgba(245,184,32,0.15);
  color: var(--brand-accent);
}

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

/* Mobile Burger */
.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid rgba(245,184,32,0.4);
  color: var(--brand-accent);
  font-size: 22px;
  padding: 6px 12px;
  border-radius: var(--brand-btn-radius);
  cursor: pointer;
  line-height: 1;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 11px 24px;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-body-font);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
  border: none;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.35); }

.btn-primary {
  background: var(--brand-gold-grad);
  color: var(--brand-btn-text);
  box-shadow: 0 3px 12px rgba(245,184,32,0.35);
}

.btn-primary:hover { background: linear-gradient(135deg, #ffd460 0%, #f5a500 100%); color: var(--brand-btn-text); }

.btn-secondary {
  background: transparent;
  color: var(--brand-text);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover { border-color: var(--brand-accent); color: var(--brand-accent); }

.btn-hero {
  padding: 16px 40px;
  font-size: 18px;
  border-radius: 50px;
  background: var(--brand-gold-grad);
  color: var(--brand-btn-text);
  font-family: var(--brand-head-font);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 6px 24px rgba(245,184,32,0.5);
}

.btn-hero:hover {
  background: linear-gradient(135deg, #ffd460 0%, #f5a500 100%);
  color: var(--brand-btn-text);
  box-shadow: 0 10px 36px rgba(245,184,32,0.6);
}

.btn-cta {
  padding: 14px 32px;
  border-radius: 50px;
  background: var(--brand-gold-grad);
  color: var(--brand-btn-text);
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 4px 16px rgba(245,184,32,0.4);
}

.btn-cta:hover {
  background: linear-gradient(135deg, #ffd460 0%, #f5a500 100%);
  color: var(--brand-btn-text);
}

/* --- Floating CTA (always visible) --- */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  padding: 14px 28px;
  background: var(--brand-gold-grad);
  color: var(--brand-btn-text);
  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-body-font);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid rgba(255,255,255,0.2);
}

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

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  background: linear-gradient(135deg, #062e22 0%, #0a4a3a 45%, #0d5a46 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid rgba(245,184,32,0.3);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(26,138,106,0.18) 0%, transparent 65%),
    radial-gradient(ellipse at 20% 80%, rgba(245,184,32,0.08) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-block;
  background: rgba(245,184,32,0.15);
  border: 1px solid rgba(245,184,32,0.4);
  color: var(--brand-accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.1;
  color: var(--brand-text);
  margin-bottom: 8px;
}

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

.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  line-height: 1.5;
  max-width: 480px;
}

.hero-offer-box {
  background: rgba(245,184,32,0.1);
  border: 2px solid rgba(245,184,32,0.35);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 28px;
  display: inline-block;
}

.hero-offer-amount {
  font-family: var(--brand-head-font);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--brand-accent);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-offer-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.hero-trust {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 14px;
}

/* Hero Visual Side */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-card-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  max-width: 420px;
}

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

.hero-stat-card .stat-number {
  font-family: var(--brand-head-font);
  font-size: 28px;
  font-weight: 800;
  color: var(--brand-accent);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-card .stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

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

.section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-accent);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(24px, 3.5vw, 38px);
  line-height: 1.15;
  color: var(--brand-text);
  margin-bottom: 16px;
}

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

.section-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.section-alt { background: #0a3a2e; }
.section-dark { background: #062e22; }
.section-mid  { background: #0d4a3c; }

/* ============================================================
   BONUS / WELCOME SECTION — 2-column asymmetric
   ============================================================ */
.bonus-section {
  background: linear-gradient(135deg, #062e22 0%, #0a4a3a 100%);
  border-top: 1px solid rgba(245,184,32,0.15);
  border-bottom: 1px solid rgba(245,184,32,0.15);
}

.bonus-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 56px;
  align-items: start;
}

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

.bonus-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.bonus-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(245,184,32,0.12);
  border: 1px solid rgba(245,184,32,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

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

.bonus-feature-text p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* Bonus Panel (right side) */
.bonus-panel {
  background: rgba(245,184,32,0.07);
  border: 2px solid rgba(245,184,32,0.3);
  border-radius: 16px;
  padding: 28px 24px;
  position: sticky;
  top: 80px;
}

.bonus-panel-title {
  font-family: var(--brand-head-font);
  font-size: 22px;
  font-weight: 800;
  color: var(--brand-accent);
  margin-bottom: 4px;
}

.bonus-panel-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.bonus-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.bonus-step-num {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--brand-gold-grad);
  color: var(--brand-btn-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 1px;
}

.bonus-step-text {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.bonus-step-text strong { color: var(--brand-text); }

.bonus-terms {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 16px;
  line-height: 1.5;
}

/* ============================================================
   GAMES SECTION — 4-column card grid
   ============================================================ */
.games-section { background: var(--brand-bg); }

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

.game-card {
  background: var(--brand-card-bg);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
  position: relative;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}

.game-card-thumb {
  width: 100%;
  padding-top: 62%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0d5a46 0%, #0a3a2e 100%);
}

.game-card-thumb-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: rgba(255,255,255,0.15);
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.75) 100%);
}

.game-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--brand-accent);
  color: var(--brand-btn-text);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 4px;
}

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

.game-card-title {
  font-family: var(--brand-body-font);
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-text);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-card-meta {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  display: flex;
  justify-content: space-between;
}

.game-card-rtp { color: var(--brand-secondary); }

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

/* ============================================================
   LIVE CASINO — full-width with side panel
   ============================================================ */
.live-section {
  background: linear-gradient(135deg, #0a3a2e 0%, #0c3a32 100%);
}

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

.live-info .section-subtitle { max-width: 100%; }

.live-table-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.live-table-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  padding: 20px 18px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s;
}

.live-table-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brand-gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.live-table-card:hover { border-color: rgba(245,184,32,0.3); }
.live-table-card:hover::before { transform: scaleX(1); }

.live-table-icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.live-table-name {
  font-family: var(--brand-body-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-text);
  margin-bottom: 4px;
}

.live-table-info {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

.live-badge-online {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #4dff9e;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 8px;
}

.live-dot {
  width: 7px;
  height: 7px;
  background: #4dff9e;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ============================================================
   SPORTS BETTING — 3-column cards
   ============================================================ */
.sports-section { background: #062e22; }

.sports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.sport-card {
  background: var(--brand-card-bg);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}

.sport-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brand-gold-grad);
  opacity: 0;
  transition: opacity 0.3s;
}

.sport-card:hover { transform: translateY(-4px); border-color: rgba(245,184,32,0.25); }
.sport-card:hover::after { opacity: 1; }

.sport-card-icon { font-size: 44px; margin-bottom: 14px; }

.sport-card-title {
  font-family: var(--brand-head-font);
  font-size: 18px;
  font-weight: 800;
  color: var(--brand-text);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.sport-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.sport-card-count {
  display: inline-block;
  margin-top: 12px;
  background: rgba(245,184,32,0.12);
  border: 1px solid rgba(245,184,32,0.25);
  color: var(--brand-accent);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}

/* ============================================================
   PAYMENTS — full-width alternating
   ============================================================ */
.payments-section { background: var(--brand-bg); }

.payments-layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 56px;
  align-items: center;
}

.payments-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.payment-method-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 16px 14px;
  text-align: center;
  transition: border-color 0.2s;
}

.payment-method-card:hover { border-color: rgba(245,184,32,0.3); }

.payment-method-icon { font-size: 28px; margin-bottom: 6px; }

.payment-method-name {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.payment-method-speed {
  font-size: 11px;
  color: var(--brand-secondary);
  font-weight: 700;
}

.payments-info-list { margin-top: 20px; }

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

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

.payments-info-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

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

/* ============================================================
   TRUST / SECURITY — full-width 4-column
   ============================================================ */
.trust-section { background: #0a3a2e; }

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

.trust-card {
  text-align: center;
  padding: 28px 20px;
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.07);
}

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

.trust-card-title {
  font-family: var(--brand-body-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-text);
  margin-bottom: 8px;
}

.trust-card-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* ============================================================
   PROMOTIONS STRIP — single-column full-width
   ============================================================ */
.promos-section { background: var(--brand-primary); padding: 48px 0; }

.promos-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
}

.promo-item {
  background: rgba(0,0,0,0.2);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: background 0.2s;
}

.promo-item:hover { background: rgba(0,0,0,0.35); }

.promo-icon {
  font-size: 36px;
  flex-shrink: 0;
}

.promo-content h4 {
  font-family: var(--brand-head-font);
  font-size: 16px;
  font-weight: 800;
  color: var(--brand-accent);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.promo-content p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { background: #062e22; }

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

.faq-list { margin-top: 0; }

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

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

.faq-icon {
  flex-shrink: 0;
  font-size: 18px;
  color: var(--brand-accent);
  transition: transform 0.2s;
  font-style: normal;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

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

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

/* ============================================================
   ABOUT / CLOSING CTA — single full-width
   ============================================================ */
.closing-section {
  background: linear-gradient(135deg, #0a4a3a 0%, #062e22 100%);
  text-align: center;
  padding: 80px 0;
  border-top: 2px solid rgba(245,184,32,0.2);
}

.closing-section .section-title { margin: 0 auto 16px; }
.closing-section .section-subtitle { margin: 0 auto 36px; text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #041e18;
  border-top: 2px solid rgba(245,184,32,0.2);
  padding: 48px 0 0;
}

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

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

.footer-col h5 {
  font-family: var(--brand-body-font);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brand-accent);
  margin-bottom: 16px;
}

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

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

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

/* Responsible Gambling Logos Row */
.footer-responsible {
  background: rgba(0,0,0,0.2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  margin-bottom: 0;
}

.responsible-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.responsible-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  gap: 8px;
  white-space: nowrap;
}

.age-badge {
  background: rgba(220,53,69,0.15);
  border-color: rgba(220,53,69,0.3);
  color: #ff6b7a;
  font-size: 16px;
  font-weight: 900;
  padding: 8px 20px;
}

.footer-legal-text {
  background: rgba(0,0,0,0.25);
  padding: 24px 0;
}

.footer-legal-text p {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 8px;
}

.footer-bottom {
  background: #020e0b;
  padding: 16px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

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

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

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

/* ============================================================
   GENERAL TEXT BLOCKS
   ============================================================ */
.text-block p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 16px;
}

.text-block p:last-child { margin-bottom: 0; }

.highlight-text {
  color: var(--brand-accent);
  font-weight: 700;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-accent { color: var(--brand-accent); }
.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; }
.mb-32 { margin-bottom: 32px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-12 { gap: 12px; }

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

.legal-page-wrap h1 {
  font-family: var(--brand-head-font);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--brand-text);
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 36px;
  display: block;
}

.legal-content h2 {
  font-family: var(--brand-body-font);
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-accent);
  margin: 32px 0 12px;
}

.legal-content h3 {
  font-family: var(--brand-body-font);
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-text);
  margin: 20px 0 8px;
}

.legal-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 14px;
}

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

.legal-content ul li {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 6px;
}

.legal-content a { color: var(--brand-accent); }
.legal-content a:hover { color: #ffd460; }

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu-btn { display: none; }

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

@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 8px 24px rgba(0,0,0,0.4);
    z-index: 999;
    gap: 4px;
  }

  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { order: -1; }
  .hero-card-stack { grid-template-columns: repeat(4, 1fr); max-width: 100%; }

  .bonus-layout { grid-template-columns: 1fr; gap: 32px; }
  .bonus-panel { position: static; }

  .live-layout { grid-template-columns: 1fr; gap: 32px; }

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

  .payments-layout { grid-template-columns: 1fr; gap: 32px; }

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

  .faq-layout { grid-template-columns: 1fr; gap: 32px; }

  .promos-strip { grid-template-columns: 1fr; }

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

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

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

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

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

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

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

  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 10px; }

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

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

  .responsible-inner { gap: 12px; }
}

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

  .hero-title { font-size: 28px; }

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

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

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

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

  .promos-strip { gap: 0; }

  .floating-cta { right: 12px; bottom: 16px; }

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

@media (max-width: 320px) {
  .container { padding: 0 14px; }
  .btn-hero { font-size: 15px; padding: 13px 24px; }
  .games-grid { grid-template-columns: 1fr; }
}