:root {
  --brand-primary:     #7AB833;
  --brand-secondary:   #4A8C1C;
  --brand-accent:      #C8E631;
  --brand-bg:          #F5F5F5;
  --brand-text:        #FFFFFF;
  --brand-header-bg:   #3D3D3D;
  --brand-btn-bg:      #5A7A1E;
  --brand-btn-text:    #FFFFFF;
  --brand-btn-radius:  4px;
  --brand-head-font:   'Impact', sans-serif;
  --brand-body-font:   'Arial', sans-serif;
  --brand-head-weight: 900;
  --brand-body-size:   14px;
}

*, *::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: #2c3e50;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

.skip-to-content {
  position: absolute;
  top: -999px;
  left: 0;
  background: var(--brand-primary);
  color: #fff;
  padding: 8px 16px;
  z-index: 99999;
  font-size: 14px;
  border-radius: 0 0 4px 0;
}

.skip-to-content:focus {
  top: 0;
}

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

/* ─── HEADER / NAV ─── */
.site-header {
  background: var(--brand-header-bg);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--brand-primary);
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.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;
}

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

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

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

.main-nav ul li a:hover,
.main-nav ul li a:focus {
  background: var(--brand-primary);
  color: #fff;
  outline: none;
}

.header-cta-btn {
  display: inline-block;
  background: var(--brand-primary);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: var(--brand-btn-radius);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-cta-btn:hover {
  background: var(--brand-secondary);
  transform: translateY(-1px);
}

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

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

/* ─── HERO ─── */
.hero-section {
  position: relative;
  min-height: 75vh;
  background: linear-gradient(135deg, #2a5a0a 0%, #4A8C1C 40%, #7AB833 70%, #C8E631 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.04) 40px,
      rgba(255,255,255,0.04) 80px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(0,0,0,0.05) 40px,
      rgba(0,0,0,0.05) 80px
    );
  pointer-events: none;
}

.hero-diamonds {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-diamonds::before,
.hero-diamonds::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(200, 230, 49, 0.12);
  transform: rotate(45deg);
  border-radius: 8px;
}

.hero-diamonds::before {
  top: -80px;
  right: 15%;
}

.hero-diamonds::after {
  bottom: -60px;
  right: 5%;
  width: 200px;
  height: 200px;
  opacity: 0.08;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 60px 0;
}

.hero-badge {
  display: inline-block;
  background: rgba(0,0,0,0.35);
  color: var(--brand-accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  border: 1px solid rgba(200,230,49,0.4);
}

.hero-title {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  text-transform: uppercase;
}

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

.hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
  line-height: 1.6;
  max-width: 500px;
}

.hero-bonus-box {
  background: rgba(0,0,0,0.4);
  border: 2px solid var(--brand-accent);
  border-radius: 8px;
  padding: 18px 24px;
  margin-bottom: 28px;
  display: inline-block;
}

.hero-bonus-box .bonus-amount {
  font-family: var(--brand-head-font);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--brand-accent);
  font-weight: 900;
  display: block;
  line-height: 1;
}

.hero-bonus-box .bonus-label {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
  display: block;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--brand-btn-radius);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  border: none;
  text-align: center;
}

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

.btn-hero {
  background: var(--brand-accent);
  color: #1a3a00;
  font-size: 18px;
  padding: 18px 48px;
  border-radius: 6px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.4);
  font-family: var(--brand-head-font);
  letter-spacing: 0.08em;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.5);
  background: #d8f040;
}

.btn-cta {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

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

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

.btn-outline:hover {
  background: var(--brand-primary);
  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: 16px;
  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;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--brand-head-font);
  border: 2px solid var(--brand-accent);
}

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

.floating-cta:focus {
  outline: 3px solid var(--brand-accent);
}

/* ─── SECTION COMMONS ─── */
section {
  padding: 64px 0;
}

.section-title {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #1a3a00;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 15px;
  color: #555;
  margin-bottom: 36px;
  max-width: 600px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-primary);
  background: rgba(122,184,51,0.12);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
  border: 1px solid rgba(122,184,51,0.3);
}

/* ─── STATS BAND ─── */
.stats-band {
  background: var(--brand-header-bg);
  padding: 32px 0;
  border-top: 3px solid var(--brand-primary);
  border-bottom: 3px solid var(--brand-primary);
}

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

.stat-item {
  text-align: center;
  padding: 16px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

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

.stat-number {
  font-family: var(--brand-head-font);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--brand-accent);
  font-weight: 900;
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─── BONUS SECTION (2-col asymmetric) ─── */
.bonus-section {
  background: #fff;
}

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

.bonus-main .bonus-card {
  background: linear-gradient(135deg, #2a5a0a 0%, #4A8C1C 100%);
  border-radius: 8px;
  padding: 36px 32px;
  color: #fff;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--brand-accent);
}

.bonus-main .bonus-card::after {
  content: '◆';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%) rotate(15deg);
  font-size: 120px;
  color: rgba(200,230,49,0.1);
  pointer-events: none;
}

.bonus-card .bonus-title {
  font-family: var(--brand-head-font);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 12px;
}

.bonus-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  line-height: 1.7;
}

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

.bonus-sidebar .side-card {
  background: var(--brand-bg);
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 16px;
  border-left: 4px solid var(--brand-primary);
  transition: border-color 0.2s, transform 0.2s;
}

.bonus-sidebar .side-card:hover {
  border-color: var(--brand-accent);
  transform: translateX(4px);
}

.side-card .side-title {
  font-family: var(--brand-head-font);
  font-size: 1.1rem;
  color: #1a3a00;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.side-card p {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}

/* ─── GAME SECTION (4-col grid) ─── */
.games-section {
  background: var(--brand-header-bg);
  padding: 64px 0;
}

.games-section .section-title {
  color: #fff;
}

.games-section .section-subtitle {
  color: rgba(255,255,255,0.7);
}

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

.tab-btn {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
}

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

.game-card {
  background: #2a2a2a;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(122,184,51,0.2);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  position: relative;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-primary);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.game-thumb {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.game-thumb-placeholder {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.game-info {
  padding: 12px;
}

.game-name {
  font-family: var(--brand-head-font);
  font-size: 13px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.game-provider {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}

.game-rtp {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0,0,0,0.75);
  color: var(--brand-accent);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

/* ─── SPORTS SECTION (3-col) ─── */
.sports-section {
  background: linear-gradient(180deg, #f0f7e8 0%, #fff 100%);
}

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

.sport-card {
  background: #fff;
  border-radius: 8px;
  padding: 28px 24px;
  border: 2px solid #e8f5d0;
  border-top: 4px solid var(--brand-primary);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.sport-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

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

.sport-name {
  font-family: var(--brand-head-font);
  font-size: 1.1rem;
  color: #1a3a00;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.sport-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* ─── PAYMENT SECTION (full-width strip) ─── */
.payment-section {
  background: #fff;
  padding: 48px 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

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

.payment-info .section-title {
  margin-bottom: 16px;
}

.payment-info p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 14px;
}

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

.payment-method {
  background: var(--brand-bg);
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 14px 10px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: #444;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: border-color 0.2s;
}

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

.payment-method .pay-icon {
  font-size: 1.6rem;
  margin-bottom: 6px;
  display: block;
}

/* ─── WHY US / FEATURES SECTION (2-col equal) ─── */
.features-section {
  background: var(--brand-header-bg);
}

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

.features-text .section-title {
  color: #fff;
  margin-bottom: 16px;
}

.features-text p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(122,184,51,0.25);
  border-radius: 8px;
  padding: 18px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: background 0.2s, border-color 0.2s;
}

.feature-item:hover {
  background: rgba(122,184,51,0.1);
  border-color: var(--brand-primary);
}

.feature-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-title {
  font-family: var(--brand-head-font);
  font-size: 1rem;
  color: var(--brand-accent);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin: 0;
}

/* ─── RESPONSIBLE GAMING ─── */
.responsible-section {
  background: #f9fdf5;
  border-top: 4px solid var(--brand-primary);
}

.responsible-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.responsible-intro {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e0e0e0;
}

.responsible-intro p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

.resp-card {
  background: #fff;
  border: 2px solid #e8f5d0;
  border-radius: 8px;
  padding: 24px 20px;
  border-top: 4px solid var(--brand-secondary);
}

.resp-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

.resp-title {
  font-family: var(--brand-head-font);
  font-size: 1rem;
  color: #1a3a00;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.resp-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

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

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

.faq-intro p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-top: 14px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

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

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

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

.faq-toggle {
  font-size: 20px;
  color: var(--brand-primary);
  flex-shrink: 0;
  transition: transform 0.25s;
  font-weight: 400;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 18px;
}

/* ─── MID-PAGE CTA BAND ─── */
.cta-band {
  background: linear-gradient(135deg, #2a5a0a 0%, #7AB833 100%);
  padding: 56px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '◆';
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%) rotate(15deg);
  font-size: 180px;
  color: rgba(255,255,255,0.05);
  pointer-events: none;
}

.cta-band::after {
  content: '◆';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%) rotate(-15deg);
  font-size: 180px;
  color: rgba(255,255,255,0.05);
  pointer-events: none;
}

.cta-band h2 {
  font-family: var(--brand-head-font);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.cta-band p {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── FOOTER ─── */
.site-footer {
  background: #1a1a1a;
  padding: 56px 0 0;
  color: rgba(255,255,255,0.6);
}

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

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

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

.footer-col h4 {
  font-family: var(--brand-head-font);
  font-size: 0.95rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

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

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

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

/* ─── FOOTER TRUST LOGOS ─── */
.footer-trust {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.trust-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
}

.trust-badge:hover {
  background: rgba(255,255,255,0.12);
}

.trust-badge .badge-icon {
  font-size: 1.2rem;
}

.trust-badge.age-badge {
  background: #c0392b;
  border-color: #c0392b;
  color: #fff;
  font-size: 14px;
}

/* ─── FOOTER BOTTOM ─── */
.footer-bottom {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: center;
}

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

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

.footer-copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  max-width: 700px;
}

.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
  max-width: 800px;
}

/* ─── LEGAL PAGES ─── */
.legal-page-wrap {
  background: #fff;
  padding: 60px 0 80px;
}

.legal-page-wrap h1 {
  font-family: var(--brand-head-font);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #1a3a00;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 13px;
  color: #888;
  margin-bottom: 36px;
}

.legal-page-wrap h2 {
  font-family: var(--brand-head-font);
  font-size: 1.3rem;
  color: #1a3a00;
  text-transform: uppercase;
  margin: 36px 0 12px;
}

.legal-page-wrap h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 24px 0 10px;
}

.legal-page-wrap p {
  font-size: 14px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 14px;
}

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

.legal-page-wrap ul li {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 6px;
}

/* ─── BREADCRUMB ─── */
.breadcrumb-nav {
  background: var(--brand-bg);
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e5;
}

.breadcrumb-nav ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  font-size: 13px;
  color: #888;
}

.breadcrumb-nav ol li a {
  color: var(--brand-primary);
}

.breadcrumb-nav ol li + li::before {
  content: '›';
  margin-right: 6px;
}

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

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

@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.1);
    z-index: 999;
  }

  .mobile-nav-active ul li a {
    padding: 12px 16px;
    border-radius: var(--brand-btn-radius);
    font-size: 15px;
  }

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

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

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

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

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

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

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

  .responsible-intro {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 768px) {
  .hero-content {
    padding: 40px 0;
  }

  .hero-bonus-box {
    display: block;
  }

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

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

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

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

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

  .responsible-intro {
    display: block;
  }
}

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

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

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

  .hero-title {
    font-size: 2rem;
  }

  section {
    padding: 48px 0;
  }

  .trust-logos {
    gap: 10px;
  }
}