@import url('https://fonts.googleapis.com/css2?family=Pirata+One&family=Open+Sans:wght@400;600;700&display=swap');

:root {
  --brand-primary:     #D4A017;
  --brand-secondary:   #8B4513;
  --brand-accent:      #2E8B2E;
  --brand-bg:          #1A0E00;
  --brand-text:        #F5DEB3;
  --brand-header-bg:   #0D0800;
  --brand-btn-bg:      #2D7A1E;
  --brand-btn-text:    #FFFFFF;
  --brand-btn-radius:  6px;
  --brand-head-font:   'Pirata One', sans-serif;
  --brand-body-font:   'Arial', sans-serif;
  --brand-head-weight: 700;
  --brand-body-size:   14px;
  --border-gold:       1px solid #D4A017;
  --border-brown:      1px solid #8B4513;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--brand-bg);
  color: var(--brand-text);
  font-family: var(--brand-body-font);
  font-size: var(--brand-body-size);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a:hover {
  color: #f0c040;
}

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

ul {
  list-style: none;
}

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

/* =====================
   SKIP TO CONTENT
   ===================== */
.skip-link {
  position: absolute;
  top: -60px;
  left: 0;
  background: var(--brand-primary);
  color: #000;
  padding: 8px 16px;
  font-weight: 700;
  z-index: 99999;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* =====================
   HEADER & NAV
   ===================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9990;
  background: var(--brand-header-bg);
  border-bottom: var(--border-gold);
  box-shadow: 0 2px 20px rgba(212,160,23,0.25);
}

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

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

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

.main-nav ul li a {
  color: var(--brand-text);
  font-family: var(--brand-body-font);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--brand-btn-radius);
  border: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  white-space: nowrap;
}

.main-nav ul li a:hover {
  color: var(--brand-primary);
  border-color: var(--brand-primary);
  background: rgba(212,160,23,0.08);
}

.header-cta-btn {
  display: inline-block;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--brand-primary), #b8860b);
  color: #000 !important;
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--brand-btn-radius);
  border: none;
  box-shadow: 0 3px 12px rgba(212,160,23,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  cursor: pointer;
}

.header-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,160,23,0.55);
  color: #000 !important;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: var(--border-gold);
  color: var(--brand-primary);
  font-size: 22px;
  padding: 6px 12px;
  border-radius: var(--brand-btn-radius);
  cursor: pointer;
  line-height: 1;
}

/* =====================
   FLOATING CTA
   ===================== */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--brand-primary), #b8860b);
  color: #000 !important;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.45), 0 0 0 3px rgba(212,160,23,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  font-family: var(--brand-body-font);
  border: 2px solid #f0c040;
  letter-spacing: 0.5px;
}

.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.55), 0 0 0 4px rgba(212,160,23,0.4);
  color: #000 !important;
}

/* =====================
   HERO SECTION
   ===================== */
.hero-section {
  margin-top: 70px;
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0D0800 0%, #1A0E00 40%, #2a1500 70%, #1A0E00 100%);
  border-bottom: 2px solid var(--brand-primary);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(212,160,23,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(139,69,19,0.18) 0%, transparent 50%);
  pointer-events: none;
}

.hero-ornament {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 40px,
      rgba(212,160,23,0.03) 40px,
      rgba(212,160,23,0.03) 41px
    );
  pointer-events: none;
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-badge {
  display: inline-block;
  background: rgba(212,160,23,0.15);
  border: var(--border-gold);
  color: var(--brand-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  width: fit-content;
}

.hero-content h1 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  color: var(--brand-primary);
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(212,160,23,0.3);
}

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

.hero-subtitle {
  font-size: 18px;
  color: var(--brand-text);
  opacity: 0.9;
  line-height: 1.6;
  max-width: 480px;
}

.hero-bonus-box {
  background: linear-gradient(135deg, rgba(212,160,23,0.12), rgba(139,69,19,0.12));
  border: var(--border-gold);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-bonus-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-primary);
}

.hero-bonus-amount {
  font-family: var(--brand-head-font);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #f5f5f5;
  font-weight: 700;
}

.hero-bonus-sub {
  font-size: 13px;
  color: rgba(245,222,179,0.7);
}

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

.btn-hero {
  display: inline-block;
  padding: 16px 36px;
  background: linear-gradient(135deg, #D4A017, #b8860b);
  color: #000;
  font-weight: 700;
  font-size: 18px;
  font-family: var(--brand-body-font);
  border-radius: 8px;
  border: none;
  box-shadow: 0 4px 24px rgba(212,160,23,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.5px;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(212,160,23,0.65);
  color: #000;
}

.btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  background: transparent;
  color: var(--brand-text);
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  border: 1px solid rgba(245,222,179,0.3);
  transition: border-color 0.2s, color 0.2s;
  cursor: pointer;
}

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

.hero-trust {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(245,222,179,0.65);
}

.hero-trust-item .icon {
  font-size: 14px;
}

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

.hero-coin-display {
  width: 100%;
  max-width: 480px;
  background: linear-gradient(145deg, rgba(212,160,23,0.08), rgba(139,69,19,0.15));
  border: var(--border-gold);
  border-radius: 16px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.game-card-mini {
  background: rgba(255,255,255,0.04);
  border: var(--border-brown);
  border-radius: 8px;
  padding: 14px 10px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.game-card-mini:hover {
  border-color: var(--brand-primary);
  transform: translateY(-2px);
}

.game-card-icon {
  font-size: 28px;
  margin-bottom: 6px;
}

.game-card-name {
  font-size: 11px;
  color: rgba(245,222,179,0.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =====================
   SECTION BASE
   ===================== */
.section {
  padding: 80px 0;
  position: relative;
}

.section-border {
  border-top: var(--border-gold);
}

.section-title {
  font-family: var(--brand-head-font);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: var(--brand-head-weight);
  color: var(--brand-primary);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 16px;
  color: rgba(245,222,179,0.75);
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.6;
}

.section-header-centered {
  text-align: center;
}

.section-header-centered .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* =====================
   STATS STRIP
   ===================== */
.stats-strip {
  background: linear-gradient(90deg, #0D0800, #1a0f00, #0D0800);
  border-top: var(--border-gold);
  border-bottom: var(--border-gold);
  padding: 28px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 12px 20px;
  border-right: 1px solid rgba(212,160,23,0.2);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--brand-head-font);
  font-size: 2rem;
  color: var(--brand-primary);
  font-weight: 700;
  display: block;
  line-height: 1.1;
}

.stat-label {
  font-size: 12px;
  color: rgba(245,222,179,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  display: block;
}

/* =====================
   BONUS SECTION (2-col)
   ===================== */
.bonus-section {
  background: linear-gradient(180deg, #1A0E00 0%, #0f0800 100%);
}

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

.bonus-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bonus-card {
  background: rgba(255,255,255,0.03);
  border: var(--border-gold);
  border-radius: 12px;
  padding: 24px;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 16px;
  align-items: center;
  transition: background 0.2s;
}

.bonus-card:hover {
  background: rgba(212,160,23,0.06);
}

.bonus-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(212,160,23,0.2), rgba(212,160,23,0.05));
  border: var(--border-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.bonus-info h3 {
  font-family: var(--brand-head-font);
  font-size: 1.1rem;
  color: var(--brand-primary);
  margin-bottom: 4px;
}

.bonus-info p {
  font-size: 13px;
  color: rgba(245,222,179,0.7);
  line-height: 1.5;
}

.bonus-amount {
  font-family: var(--brand-head-font);
  font-size: 1.6rem;
  color: var(--brand-text);
  text-align: right;
  white-space: nowrap;
}

.bonus-sidebar {
  position: sticky;
  top: 90px;
}

.bonus-cta-box {
  background: linear-gradient(145deg, rgba(212,160,23,0.1), rgba(139,69,19,0.1));
  border: 2px solid var(--brand-primary);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bonus-cta-box h3 {
  font-family: var(--brand-head-font);
  font-size: 1.4rem;
  color: var(--brand-primary);
}

.bonus-cta-box p {
  font-size: 13px;
  color: rgba(245,222,179,0.7);
}

.btn-cta {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(135deg, #D4A017, #b8860b);
  color: #000;
  font-weight: 700;
  font-size: 16px;
  border-radius: 8px;
  border: none;
  box-shadow: 0 4px 18px rgba(212,160,23,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  letter-spacing: 0.3px;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,160,23,0.55);
  color: #000;
}

.bonus-terms {
  font-size: 11px;
  color: rgba(245,222,179,0.45);
  line-height: 1.5;
}

/* =====================
   GAMES SECTION (3-col)
   ===================== */
.games-section {
  background: #130a00;
}

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

.game-tab {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid rgba(212,160,23,0.3);
  background: transparent;
  color: rgba(245,222,179,0.65);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.game-tab.active,
.game-tab:hover {
  background: linear-gradient(135deg, var(--brand-primary), #b8860b);
  color: #000;
  border-color: var(--brand-primary);
}

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

.game-card {
  background: rgba(255,255,255,0.04);
  border: var(--border-brown);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-primary);
}

.game-thumb {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  background: linear-gradient(135deg, rgba(212,160,23,0.08), rgba(139,69,19,0.12));
  border-bottom: var(--border-brown);
}

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

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

.game-card-meta {
  font-size: 12px;
  color: rgba(245,222,179,0.5);
  margin-bottom: 12px;
}

.game-rtp {
  display: inline-block;
  background: rgba(46,139,46,0.15);
  border: 1px solid rgba(46,139,46,0.4);
  color: #6dbf6d;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.btn-game {
  display: block;
  width: 100%;
  padding: 10px;
  background: linear-gradient(135deg, var(--brand-btn-bg), #236016);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  border-radius: var(--brand-btn-radius);
  border: none;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(45,122,30,0.35);
}

.btn-game:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(45,122,30,0.5);
  color: #fff;
}

/* =====================
   SPORTS SECTION (asymmetric)
   ===================== */
.sports-section {
  background: linear-gradient(180deg, #130a00 0%, #1A0E00 100%);
  border-top: var(--border-gold);
}

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

.sports-info {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sports-info p {
  font-size: 15px;
  color: rgba(245,222,179,0.8);
  line-height: 1.7;
}

.sports-markets {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sport-item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 14px;
  align-items: center;
  background: rgba(255,255,255,0.03);
  border: var(--border-brown);
  border-radius: 10px;
  padding: 16px 20px;
  transition: border-color 0.2s, background 0.2s;
}

.sport-item:hover {
  border-color: var(--brand-primary);
  background: rgba(212,160,23,0.05);
}

.sport-emoji {
  font-size: 26px;
  text-align: center;
}

.sport-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-text);
  display: block;
}

.sport-desc {
  font-size: 12px;
  color: rgba(245,222,179,0.55);
  margin-top: 2px;
}

.sport-odds {
  font-family: var(--brand-head-font);
  font-size: 1.1rem;
  color: var(--brand-primary);
  text-align: right;
}

/* =====================
   PAYMENTS SECTION (4-col)
   ===================== */
.payments-section {
  background: #0D0800;
  border-top: var(--border-gold);
}

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

.payment-card {
  background: rgba(255,255,255,0.03);
  border: var(--border-brown);
  border-radius: 10px;
  padding: 20px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: border-color 0.2s, transform 0.2s;
}

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

.payment-icon {
  font-size: 30px;
  line-height: 1;
}

.payment-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-text);
}

.payment-time {
  font-size: 11px;
  color: rgba(245,222,179,0.5);
}

.payments-note {
  margin-top: 24px;
  padding: 16px 20px;
  background: rgba(212,160,23,0.06);
  border: var(--border-gold);
  border-radius: 8px;
  font-size: 13px;
  color: rgba(245,222,179,0.7);
  line-height: 1.6;
}

/* =====================
   SECURITY SECTION (single col)
   ===================== */
.security-section {
  background: linear-gradient(180deg, #0D0800 0%, #1A0E00 100%);
  border-top: var(--border-gold);
}

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

.security-inner .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.security-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: var(--border-gold);
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-text);
}

.security-badge .badge-icon {
  font-size: 20px;
}

/* =====================
   SUPPORT SECTION (2-col)
   ===================== */
.support-section {
  background: #130a00;
  border-top: var(--border-gold);
}

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

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

.support-channel {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.03);
  border: var(--border-brown);
  border-radius: 10px;
  padding: 18px 20px;
  transition: border-color 0.2s;
}

.support-channel:hover {
  border-color: var(--brand-primary);
}

.channel-icon {
  font-size: 24px;
  margin-top: 2px;
  flex-shrink: 0;
}

.channel-info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-text);
  margin-bottom: 3px;
}

.channel-info span {
  font-size: 12px;
  color: rgba(245,222,179,0.55);
}

.support-text h3 {
  font-family: var(--brand-head-font);
  font-size: 1.5rem;
  color: var(--brand-primary);
  margin-bottom: 16px;
}

.support-text p {
  font-size: 15px;
  color: rgba(245,222,179,0.8);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* =====================
   FAQ SECTION
   ===================== */
.faq-section {
  background: #1A0E00;
  border-top: var(--border-gold);
}

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

.faq-item {
  background: rgba(255,255,255,0.03);
  border: var(--border-brown);
  border-radius: 10px;
  padding: 20px 22px;
  transition: border-color 0.2s;
}

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

.faq-q {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 8px;
  line-height: 1.4;
}

.faq-a {
  font-size: 13px;
  color: rgba(245,222,179,0.7);
  line-height: 1.6;
}

/* =====================
   FOOTER
   ===================== */
.site-footer {
  background: var(--brand-header-bg);
  border-top: 2px solid var(--brand-primary);
  padding: 48px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 36px;
  border-bottom: var(--border-brown);
}

.footer-brand p {
  font-size: 13px;
  color: rgba(245,222,179,0.6);
  line-height: 1.7;
  margin-top: 14px;
}

.footer-logo-img {
  height: 40px;
  width: auto;
}

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

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brand-primary);
  margin-bottom: 14px;
}

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

.footer-col ul li a {
  font-size: 13px;
  color: rgba(245,222,179,0.6);
  transition: color 0.2s;
}

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

.footer-logos {
  padding: 28px 0;
  border-bottom: var(--border-brown);
}

.footer-logos-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(245,222,179,0.4);
  margin-bottom: 16px;
  text-align: center;
}

.footer-logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: var(--border-brown);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(245,222,179,0.55);
  gap: 6px;
  min-height: 40px;
}

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

.footer-age {
  background: #cc0000;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

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

.footer-legal-links a {
  font-size: 12px;
  color: rgba(245,222,179,0.45);
  transition: color 0.2s;
}

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

.footer-copyright {
  font-size: 12px;
  color: rgba(245,222,179,0.35);
}

.footer-cta-wrap {
  text-align: center;
  padding: 28px 0;
  border-bottom: var(--border-brown);
}

.footer-cta-wrap p {
  font-size: 13px;
  color: rgba(245,222,179,0.55);
  margin-bottom: 14px;
}

/* =====================
   RESPONSIBLE GAMBLING STRIP
   ===================== */
.responsible-strip {
  background: rgba(204,0,0,0.08);
  border-top: 1px solid rgba(204,0,0,0.3);
  border-bottom: 1px solid rgba(204,0,0,0.3);
  padding: 12px 0;
  text-align: center;
}

.responsible-strip p {
  font-size: 12px;
  color: rgba(245,222,179,0.5);
  line-height: 1.5;
}

.responsible-strip strong {
  color: rgba(245,222,179,0.75);
}

/* =====================
   LEGAL PAGE
   ===================== */
.legal-hero {
  background: linear-gradient(135deg, #0D0800, #1A0E00);
  border-bottom: var(--border-gold);
  padding: 100px 0 40px;
  text-align: center;
}

.legal-hero h1 {
  font-family: var(--brand-head-font);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--brand-primary);
}

.legal-hero p {
  font-size: 14px;
  color: rgba(245,222,179,0.55);
  margin-top: 10px;
}

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

.legal-content h2 {
  font-family: var(--brand-head-font);
  font-size: 1.5rem;
  color: var(--brand-primary);
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: var(--border-brown);
}

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

.legal-content p {
  font-size: 14px;
  color: rgba(245,222,179,0.8);
  line-height: 1.75;
  margin-bottom: 14px;
}

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

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

.legal-last-updated {
  font-size: 12px;
  color: rgba(245,222,179,0.4);
  margin-top: 48px;
  padding-top: 20px;
  border-top: var(--border-brown);
}

/* =====================
   DECORATIVE BORDERS
   ===================== */
.ornament-top {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
}

.ornament-divider {
  text-align: center;
  margin: 20px 0;
  color: var(--brand-primary);
  font-size: 20px;
  opacity: 0.4;
}

/* =====================
   UTILITIES
   ===================== */
.text-gold { color: var(--brand-primary); }
.text-muted { color: rgba(245,222,179,0.55); }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mt-24 { margin-top: 24px; }

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

@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.4);
    border-bottom: var(--border-gold);
    z-index: 9980;
    gap: 4px;
  }
  .mobile-nav-active ul li a {
    display: block;
    padding: 12px 16px;
    border-radius: var(--brand-btn-radius);
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-coin-display {
    max-width: 100%;
  }
  .bonus-grid {
    grid-template-columns: 1fr;
  }
  .bonus-sidebar {
    position: static;
  }
  .sports-layout {
    grid-template-columns: 1fr;
  }
  .sports-info {
    position: static;
  }
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .payments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .support-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-links-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:nth-child(2) {
    border-right: none;
  }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-top: 1px solid rgba(212,160,23,0.2);
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 60vh;
  }
  .hero-inner {
    padding: 60px 0 40px;
  }
  .section {
    padding: 56px 0;
  }
  .bonus-card {
    grid-template-columns: 44px 1fr;
  }
  .bonus-amount {
    display: none;
  }
  .games-grid {
    grid-template-columns: 1fr;
  }
  .footer-links-row {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .floating-cta {
    bottom: 16px;
    right: 16px;
    padding: 12px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero-cta-row {
    flex-direction: column;
  }
  .btn-hero,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .payments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .security-badges {
    flex-direction: column;
    align-items: center;
  }
}

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

@media (min-width: 1440px) {
  .container {
    max-width: 1300px;
  }
}