/* ============================================================
   BigPirate Casino & Betting — style.css
   Brand: Dark teal pirate-adventure theme, gold accents
   ============================================================ */

:root {
  --brand-primary:     #0a4a3a;
  --brand-secondary:   #1a8a6a;
  --brand-accent:      #f5b731;
  --brand-bg:          #0c3830;
  --brand-text:        #ffffff;
  --brand-header-bg:   #0a3a2e;
  --brand-btn-bg:      #f5b731;
  --brand-btn-text:    #5a3400;
  --brand-btn-radius:  24px;
  --brand-head-font:   'Bangers', sans-serif;
  --brand-body-font:   'Arial', sans-serif;
  --brand-head-weight: 700;
  --brand-body-size:   14px;
  --brand-card-bg:     #0e4535;
  --brand-border:      rgba(245, 183, 49, 0.2);
  --brand-shadow:      0 4px 24px rgba(0,0,0,0.4);
}

/* ============================================================
   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;
  min-height: 100vh;
}

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

a:hover {
  color: #ffd060;
}

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

ul {
  list-style: none;
}

/* ============================================================
   SKIP TO CONTENT (ACCESSIBILITY)
   ============================================================ */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--brand-accent);
  color: var(--brand-btn-text);
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 700;
  z-index: 99999;
  transition: top 0.2s;
}

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

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  line-height: 1.2;
  letter-spacing: 0.03em;
  color: var(--brand-text);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
}

h4 {
  font-size: 1.2rem;
}

p {
  font-size: var(--brand-body-size);
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   STICKY HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9000;
  background: var(--brand-header-bg);
  border-bottom: 2px solid var(--brand-accent);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

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

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

.main-nav {
  position: relative;
}

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

.main-nav ul li a {
  color: var(--brand-text);
  font-family: var(--brand-head-font);
  font-size: 1rem;
  letter-spacing: 0.05em;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  display: block;
}

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

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: 2px solid var(--brand-accent);
  color: var(--brand-accent);
  font-size: 1.4rem;
  cursor: pointer;
  border-radius: 6px;
  padding: 4px 10px;
  line-height: 1;
  transition: background 0.2s;
}

.mobile-menu-btn:hover {
  background: rgba(245, 183, 49, 0.15);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 11px 26px;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-head-font);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
  white-space: nowrap;
}

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

.btn-primary {
  background: linear-gradient(135deg, #f5b731 0%, #e09820 60%, #f5b731 100%);
  color: var(--brand-btn-text);
  box-shadow: 0 4px 18px rgba(245, 183, 49, 0.45);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 183, 49, 0.6);
  color: var(--brand-btn-text);
}

.btn-hero {
  background: linear-gradient(135deg, #f5b731 0%, #e09820 60%, #f5b731 100%);
  color: var(--brand-btn-text);
  font-size: 1.3rem;
  padding: 16px 44px;
  border-radius: var(--brand-btn-radius);
  box-shadow: 0 6px 30px rgba(245, 183, 49, 0.5);
  display: inline-block;
  font-family: var(--brand-head-font);
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(245, 183, 49, 0.65);
  color: var(--brand-btn-text);
}

.btn-cta {
  background: linear-gradient(135deg, #1a8a6a 0%, #0a4a3a 100%);
  color: var(--brand-text);
  border: 2px solid var(--brand-accent);
  box-shadow: 0 4px 18px rgba(0,0,0,0.3);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.4);
  color: var(--brand-accent);
}

.btn-outline {
  background: transparent;
  color: var(--brand-accent);
  border: 2px solid var(--brand-accent);
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-head-font);
  font-size: 0.95rem;
  padding: 9px 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  display: inline-block;
}

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

/* ============================================================
   FLOATING CTA (FIXED — ALWAYS VISIBLE)
   ============================================================ */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  padding: 14px 28px;
  background: linear-gradient(135deg, #f5b731 0%, #e09820 100%);
  color: var(--brand-btn-text);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--brand-head-font);
  letter-spacing: 0.08em;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35), 0 0 0 3px rgba(245,183,49,0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

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

.floating-cta:focus {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #062820 0%, #0a4a3a 40%, #0c5540 70%, #063020 100%);
  overflow: hidden;
  padding-top: 64px;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(245,183,49,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(26,138,106,0.12) 0%, transparent 55%);
  pointer-events: none;
}

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

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

.hero-content {
  padding: 40px 0;
}

.hero-badge {
  display: inline-block;
  background: rgba(245, 183, 49, 0.18);
  border: 1px solid rgba(245, 183, 49, 0.5);
  color: var(--brand-accent);
  font-family: var(--brand-head-font);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.hero-title {
  color: var(--brand-text);
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

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

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 28px;
  max-width: 480px;
  line-height: 1.65;
}

.hero-bonus-card {
  background: rgba(10, 74, 58, 0.7);
  border: 2px solid var(--brand-accent);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-bonus-card .bonus-amount {
  font-family: var(--brand-head-font);
  font-size: 2.4rem;
  color: var(--brand-accent);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-bonus-card .bonus-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
}

.hero-features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
}

.hero-feature-item .feat-icon {
  color: var(--brand-accent);
  font-size: 1rem;
}

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

.hero-illustration {
  width: 100%;
  max-width: 480px;
  background: radial-gradient(ellipse at center, rgba(26,138,106,0.25) 0%, transparent 70%);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(245,183,49,0.15);
}

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

.hero-stat-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(245,183,49,0.25);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
}

.hero-stat-box .stat-num {
  font-family: var(--brand-head-font);
  font-size: 2rem;
  color: var(--brand-accent);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-box .stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
}

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  margin-bottom: 12px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255,255,255,0.75);
}

.section-label {
  display: inline-block;
  font-family: var(--brand-head-font);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--brand-accent);
  text-transform: uppercase;
  margin-bottom: 10px;
  border-bottom: 2px solid var(--brand-accent);
  padding-bottom: 2px;
}

.accent-text {
  color: var(--brand-accent);
}

/* ============================================================
   WELCOME / INTRO SECTION (FULL WIDTH)
   ============================================================ */
.welcome-section {
  padding: 80px 0;
  background: var(--brand-bg);
  border-bottom: 1px solid rgba(245,183,49,0.1);
}

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

.welcome-inner h2 {
  margin-bottom: 20px;
}

.welcome-inner p {
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ============================================================
   BONUS SECTION (2-COLUMN ASYMMETRIC: 2/3 + 1/3)
   ============================================================ */
.bonus-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #0b3e30 0%, #0a4a3a 100%);
  border-bottom: 1px solid rgba(245,183,49,0.1);
}

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

.bonus-main-content h2 {
  margin-bottom: 16px;
}

.bonus-main-content p {
  margin-bottom: 16px;
}

.bonus-terms-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
}

.bonus-sidebar-card {
  background: rgba(245,183,49,0.08);
  border: 2px solid var(--brand-accent);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  position: sticky;
  top: 84px;
}

.bonus-sidebar-card .offer-label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.bonus-sidebar-card .offer-amount {
  font-family: var(--brand-head-font);
  font-size: 3rem;
  color: var(--brand-accent);
  line-height: 1;
  margin-bottom: 6px;
}

.bonus-sidebar-card .offer-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.bonus-sidebar-card .offer-detail {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
}

/* ============================================================
   GAMES SECTION (3-COLUMN CARD GRID)
   ============================================================ */
.games-section {
  padding: 80px 0;
  background: var(--brand-bg);
  border-bottom: 1px solid rgba(245,183,49,0.1);
}

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

.game-card {
  background: var(--brand-card-bg);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(245,183,49,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
  border-color: rgba(245,183,49,0.35);
}

.game-card-thumb {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}

.game-card-thumb.slots-thumb   { background: linear-gradient(135deg, #1a3a5c, #0a1a2e); }
.game-card-thumb.live-thumb    { background: linear-gradient(135deg, #3a1a1a, #1a0a0a); }
.game-card-thumb.table-thumb   { background: linear-gradient(135deg, #1a3a1a, #0a1a0a); }
.game-card-thumb.sports-thumb  { background: linear-gradient(135deg, #2a1a4a, #0a0a1e); }
.game-card-thumb.jackpot-thumb { background: linear-gradient(135deg, #3a2a00, #1a1000); }
.game-card-thumb.crypto-thumb  { background: linear-gradient(135deg, #1a2a3a, #0a0f1a); }

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

.game-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.game-card-body p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.68);
  margin-bottom: 0;
}

.game-tag {
  display: inline-block;
  background: rgba(245,183,49,0.15);
  color: var(--brand-accent);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  font-family: var(--brand-head-font);
}

/* ============================================================
   PAYMENTS SECTION (FULL WIDTH — HORIZONTAL LIST)
   ============================================================ */
.payments-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #0a4a3a 0%, #0c3830 100%);
  border-bottom: 1px solid rgba(245,183,49,0.1);
}

.payments-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

.payment-chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 14px 22px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s, background 0.2s;
}

.payment-chip:hover {
  border-color: var(--brand-accent);
  background: rgba(245,183,49,0.08);
  color: var(--brand-text);
}

.payment-chip .pay-icon {
  font-size: 1.2rem;
}

.payments-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.pay-info-box {
  text-align: center;
  padding: 24px 16px;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  border: 1px solid rgba(245,183,49,0.15);
}

.pay-info-box .pay-stat {
  font-family: var(--brand-head-font);
  font-size: 1.8rem;
  color: var(--brand-accent);
  margin-bottom: 4px;
}

.pay-info-box .pay-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   SPORTS BETTING SECTION (2-COLUMN SIDE BY SIDE)
   ============================================================ */
.sports-section {
  padding: 80px 0;
  background: var(--brand-bg);
  border-bottom: 1px solid rgba(245,183,49,0.1);
}

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

.sports-content h2 {
  margin-bottom: 18px;
}

.sports-content p {
  margin-bottom: 14px;
}

.sports-list {
  margin: 20px 0 28px;
}

.sports-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.92rem;
  color: rgba(255,255,255,0.82);
}

.sports-list li::before {
  content: '◆';
  color: var(--brand-accent);
  font-size: 0.6rem;
  flex-shrink: 0;
}

.sports-visual-panel {
  background: linear-gradient(135deg, rgba(10,74,58,0.6) 0%, rgba(26,138,106,0.2) 100%);
  border: 1px solid rgba(245,183,49,0.2);
  border-radius: 20px;
  padding: 36px 28px;
}

.sport-odds-demo {
  margin-bottom: 16px;
}

.odds-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.odds-row .team-names {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
}

.odds-row .odds-values {
  display: flex;
  gap: 8px;
}

.odds-btn {
  background: rgba(245,183,49,0.15);
  border: 1px solid rgba(245,183,49,0.35);
  color: var(--brand-accent);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: default;
}

.sports-visual-panel .panel-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  margin-top: 8px;
}

/* ============================================================
   TRUST / SECURITY SECTION (4-COLUMN)
   ============================================================ */
.trust-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #0c3830 0%, #0a4a3a 100%);
  border-bottom: 1px solid rgba(245,183,49,0.1);
}

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

.trust-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,183,49,0.15);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.25s, background 0.25s;
}

.trust-card:hover {
  border-color: rgba(245,183,49,0.4);
  background: rgba(245,183,49,0.05);
}

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

.trust-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--brand-accent);
}

.trust-card p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.62);
  margin: 0;
}

/* ============================================================
   RESPONSIBLE GAMBLING (FULL WIDTH)
   ============================================================ */
.rg-section {
  padding: 60px 0;
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(245,183,49,0.1);
}

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

.rg-inner h2 {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.rg-inner p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
}

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

.rg-link {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  transition: color 0.2s;
}

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

/* ============================================================
   MID-PAGE CTA STRIP
   ============================================================ */
.cta-strip {
  padding: 70px 0;
  background: linear-gradient(135deg, #0a4a3a 0%, #1a8a6a 50%, #0a4a3a 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(245,183,49,0.1) 0%, transparent 65%);
}

.cta-strip .container {
  position: relative;
  z-index: 1;
}

.cta-strip h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.cta-strip p {
  max-width: 520px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,0.8);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #061e18;
  border-top: 2px solid rgba(245,183,49,0.2);
  padding-top: 60px;
}

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

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-top: 14px;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--brand-head-font);
  font-size: 1.1rem;
  color: var(--brand-accent);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

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

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: color 0.2s;
}

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

.footer-gaming-logos {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  justify-content: center;
}

.gaming-logo-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #e53e3e;
  color: #e53e3e;
  font-weight: 900;
  font-size: 0.78rem;
  flex-shrink: 0;
}

.footer-legal-text {
  padding: 24px 0;
  text-align: center;
}

.footer-legal-text p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  max-width: 900px;
  margin: 0 auto 10px;
  line-height: 1.6;
}

.footer-links-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 16px 0;
}

.footer-links-row a {
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  transition: color 0.2s;
}

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

.footer-copyright {
  text-align: center;
  padding: 16px 0 28px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ============================================================
   LEGAL PAGE STYLES
   ============================================================ */
.legal-page-wrap {
  padding: 40px 0 80px;
  padding-top: 100px;
  min-height: 70vh;
}

.legal-page-wrap h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 8px;
}

.legal-last-updated {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 36px;
  display: block;
}

.legal-page-wrap h2 {
  font-size: 1.4rem;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--brand-accent);
}

.legal-page-wrap h3 {
  font-size: 1.1rem;
  margin-top: 24px;
  margin-bottom: 10px;
}

.legal-page-wrap p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 14px;
}

.legal-page-wrap ul {
  margin: 12px 0 20px 24px;
  list-style: disc;
}

.legal-page-wrap ul li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 8px;
}

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

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1200px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .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 10px rgba(0,0,0,0.2);
    z-index: 8999;
    border-top: 1px solid rgba(245,183,49,0.2);
  }

  .mobile-nav-active ul li a {
    padding: 12px 16px;
    font-size: 1.1rem;
    border-radius: 8px;
  }

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

  .hero-visual {
    display: none;
  }

  .hero-section {
    min-height: 70vh;
  }

  .bonus-layout {
    grid-template-columns: 1fr;
  }

  .bonus-sidebar-card {
    position: static;
  }

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

  .sports-two-col {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

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

  .footer-brand {
    grid-column: span 2;
  }
}

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

  .hero-features {
    flex-direction: column;
    gap: 10px;
  }

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

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

  .payments-row {
    gap: 12px;
  }

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

  .footer-brand {
    grid-column: span 1;
  }

  .footer-links-row {
    gap: 12px;
  }

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

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

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

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

  .btn-hero {
    font-size: 1.05rem;
    padding: 13px 28px;
  }

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

@media (max-width: 320px) {
  h1 {
    font-size: 1.8rem;
  }

  .hero-section {
    min-height: 55vh;
  }
}

/* ============================================================
   FOCUS STATES (ACCESSIBILITY)
   ============================================================ */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--brand-accent);
  outline-offset: 2px;
  border-radius: 4px;
}