:root {
  --brand-primary:     #1a0a2e;
  --brand-secondary:   #ff9900;
  --brand-accent:      #c44dff;
  --brand-bg:          #0d0517;
  --brand-text:        #ffffff;
  --brand-header-bg:   #1a0a2e;
  --brand-btn-bg:      #ffaa00;
  --brand-btn-text:    #1a0a2e;
  --brand-btn-radius:  8px;
  --brand-head-font:   'Arial Black', 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: var(--brand-text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--brand-accent);
  color: #fff;
  padding: 10px 20px;
  z-index: 99999;
  font-size: 14px;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

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

/* =====================
   HEADER & NAV
===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--brand-header-bg);
  border-bottom: 2px solid var(--brand-accent);
  box-shadow: 0 2px 20px rgba(196, 77, 255, 0.25);
}

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

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

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav ul li a {
  color: var(--brand-text);
  font-family: var(--brand-body-font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

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

.header-cta-btn {
  display: inline-block;
  background: var(--brand-btn-bg);
  color: var(--brand-btn-text);
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: 13px;
  padding: 9px 20px;
  border-radius: var(--brand-btn-radius);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.header-cta-btn:hover {
  background: var(--brand-accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(196, 77, 255, 0.4);
}

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

.mobile-menu-btn:hover { background: rgba(196, 77, 255, 0.2); }

@media (max-width: 992px) {
  .main-nav ul { display: none; }
  .mobile-menu-btn { display: block; }
  .main-nav {
    position: relative;
    width: 100%;
  }
  .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 5px 20px rgba(0,0,0,0.5);
    gap: 16px;
    z-index: 999;
    border-top: 1px solid var(--brand-accent);
  }
  .main-nav.mobile-nav-active ul li a {
    font-size: 15px;
    padding: 8px 0;
  }
  .header-inner {
    flex-wrap: wrap;
    gap: 10px;
  }
  .header-right { display: none; }
}

/* =====================
   HERO
===================== */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0d0517 0%, #1a0a2e 40%, #2d0a4e 70%, #0d0517 100%);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(196,77,255,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(255,153,0,0.12) 0%, transparent 50%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196,77,255,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero-cityscape {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background:
    linear-gradient(to top, rgba(13,5,23,0.9) 0%, transparent 40%),
    linear-gradient(135deg, rgba(196,77,255,0.08) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-cityscape-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  opacity: 0.55;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 80px 20px 80px 40px;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(196,77,255,0.2);
  border: 1px solid var(--brand-accent);
  color: var(--brand-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.hero-title {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 0 40px rgba(196,77,255,0.4);
}

.hero-title span {
  color: var(--brand-secondary);
  text-shadow: 0 0 30px rgba(255,153,0,0.5);
}

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

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

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

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

.btn-hero {
  background: var(--brand-btn-bg);
  color: var(--brand-btn-text);
  box-shadow: 0 4px 20px rgba(255,170,0,0.35);
}

.btn-hero:hover {
  background: #ffc200;
  color: var(--brand-btn-text);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255,170,0,0.5);
}

.btn-cta {
  background: var(--brand-accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(196,77,255,0.35);
}

.btn-cta:hover {
  background: #b33de8;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(196,77,255,0.5);
}

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

.btn-outline:hover {
  border-color: var(--brand-secondary);
  color: var(--brand-secondary);
  transform: translateY(-2px);
}

.hero-badges {
  display: flex;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}

.hero-badge-icon {
  width: 28px;
  height: 28px;
  background: rgba(196,77,255,0.2);
  border: 1px solid var(--brand-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

@media (max-width: 768px) {
  .hero-section { min-height: 60vh; }
  .hero-content { padding: 60px 20px; max-width: 100%; }
  .hero-cityscape { width: 100%; opacity: 0.3; }
  .hero-title { font-size: clamp(26px, 8vw, 38px); }
}

/* =====================
   FLOATING CTA
===================== */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  padding: 14px 28px;
  background: var(--brand-btn-bg);
  color: var(--brand-btn-text);
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(255,170,0,0.45);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
  font-family: var(--brand-head-font);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,170,0,0.6);
  background: #ffc200;
  color: var(--brand-btn-text);
}

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

@media (max-width: 480px) {
  .floating-cta {
    bottom: 16px;
    right: 16px;
    padding: 12px 20px;
    font-size: 13px;
  }
}

/* =====================
   SECTION BASE
===================== */
.section {
  padding: 70px 0;
}

.section-alt {
  background: rgba(26, 10, 46, 0.5);
}

.section-dark {
  background: var(--brand-primary);
}

.section-title {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(22px, 3.5vw, 36px);
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}

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

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

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

/* =====================
   WELCOME BONUS SECTION — 2-col asymmetric
===================== */
.bonus-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #0d0517 0%, #1a0a2e 100%);
}

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

.bonus-visual {
  position: relative;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(196,77,255,0.15) 0%, rgba(255,153,0,0.1) 100%);
  border: 1px solid rgba(196,77,255,0.3);
  padding: 50px 40px;
  text-align: center;
}

.bonus-amount {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(48px, 7vw, 90px);
  color: var(--brand-secondary);
  line-height: 1;
  text-shadow: 0 0 40px rgba(255,153,0,0.5);
  display: block;
}

.bonus-amount-label {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-top: 10px;
  display: block;
}

.bonus-spins {
  margin-top: 20px;
  display: inline-block;
  background: rgba(196,77,255,0.2);
  border: 1px solid var(--brand-accent);
  color: var(--brand-accent);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 20px;
}

.bonus-glow {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(circle at 50% 50%, rgba(196,77,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.bonus-text .section-title { margin-bottom: 16px; }

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

.bonus-steps {
  margin: 28px 0;
  counter-reset: steps;
}

.bonus-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
  counter-increment: steps;
}

.step-num {
  min-width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-accent);
  color: #fff;
  font-family: var(--brand-head-font);
  font-weight: 900;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-text {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  padding-top: 7px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .bonus-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* =====================
   FEATURES — 3-col card grid
===================== */
.features-section {
  padding: 70px 0;
  background: var(--brand-bg);
}

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

.feature-card {
  background: rgba(26,10,46,0.8);
  border: 1px solid rgba(196,77,255,0.2);
  border-radius: 12px;
  padding: 32px 28px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-accent);
  box-shadow: 0 8px 30px rgba(196,77,255,0.2);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(196,77,255,0.25) 0%, rgba(255,153,0,0.15) 100%);
  border: 1px solid rgba(196,77,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.feature-card h3 {
  font-family: var(--brand-head-font);
  font-weight: 900;
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}

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

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

/* =====================
   GAMES SECTION — single-col with game cards
===================== */
.games-section {
  padding: 70px 0;
  background: rgba(26,10,46,0.5);
}

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

.game-tab {
  padding: 8px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.game-tab.active,
.game-tab:hover {
  background: rgba(196,77,255,0.2);
  border-color: var(--brand-accent);
  color: #fff;
}

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

.game-card {
  border-radius: 12px;
  overflow: hidden;
  background: rgba(26,10,46,0.9);
  border: 1px solid rgba(196,77,255,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(196,77,255,0.3);
}

.game-card-thumb {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--brand-primary) 0%, #2d0a4e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  position: relative;
  overflow: hidden;
}

.game-card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,5,23,0.8) 0%, transparent 50%);
}

.game-card-info {
  padding: 12px 14px;
}

.game-card-info h4 {
  font-family: var(--brand-head-font);
  font-size: 13px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 4px;
}

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

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

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

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

/* =====================
   PAYMENTS — 4-col icon row
===================== */
.payments-section {
  padding: 60px 0;
  background: var(--brand-primary);
}

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

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

.payment-item:hover {
  border-color: var(--brand-secondary);
  background: rgba(255,153,0,0.08);
}

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

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

.payment-detail {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
}

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

/* =====================
   RESPONSIBLE / ABOUT — 2-col 2/3 + 1/3 asymmetric
===================== */
.about-section {
  padding: 70px 0;
  background: var(--brand-bg);
}

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

.about-main p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 18px;
}

.about-sidebar {
  background: rgba(26,10,46,0.8);
  border: 1px solid rgba(196,77,255,0.25);
  border-radius: 12px;
  padding: 30px 24px;
}

.about-sidebar h3 {
  font-family: var(--brand-head-font);
  font-weight: 900;
  font-size: 16px;
  color: #fff;
  margin-bottom: 18px;
}

.sidebar-stat {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sidebar-stat:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.stat-value {
  font-family: var(--brand-head-font);
  font-weight: 900;
  font-size: 26px;
  color: var(--brand-secondary);
  display: block;
  line-height: 1.1;
}

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  display: block;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* =====================
   FAQ — single col accordion
===================== */
.faq-section {
  padding: 70px 0;
  background: rgba(26,10,46,0.4);
}

.faq-list { max-width: 800px; margin: 0 auto; }

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 15px;
  text-align: left;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
  line-height: 1.4;
}

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

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

.faq-icon {
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(196,77,255,0.2);
  border: 1px solid var(--brand-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  transition: transform 0.2s, background 0.2s;
  color: var(--brand-accent);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--brand-accent);
  color: #fff;
}

.faq-answer {
  display: none;
  padding: 0 0 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  max-width: 720px;
}

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

/* =====================
   PROMO CTA BAND — full width
===================== */
.cta-band {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(196,77,255,0.25) 0%, rgba(255,153,0,0.15) 100%);
  border-top: 1px solid rgba(196,77,255,0.3);
  border-bottom: 1px solid rgba(196,77,255,0.3);
  text-align: center;
}

.cta-band h2 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(24px, 4vw, 42px);
  color: #fff;
  margin-bottom: 14px;
}

.cta-band h2 span { color: var(--brand-secondary); }

.cta-band p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* =====================
   FOOTER
===================== */
.site-footer {
  background: #07020f;
  border-top: 2px solid rgba(196,77,255,0.25);
  padding-top: 50px;
}

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

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

.footer-col h4 {
  font-family: var(--brand-head-font);
  font-weight: 900;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

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

.footer-security {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.security-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.footer-responsible {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

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

.help-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  font-weight: 700;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}

.help-link:hover {
  border-color: var(--brand-secondary);
  color: var(--brand-secondary);
}

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

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

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

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

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

.footer-disclaimer {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-disclaimer p {
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  line-height: 1.65;
  text-align: center;
}

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal-links { justify-content: center; }
}

/* =====================
   LEGAL PAGES
===================== */
.legal-page {
  padding: 60px 0 80px;
  max-width: 860px;
  margin: 0 auto;
}

.legal-page h1 {
  font-family: var(--brand-head-font);
  font-weight: 900;
  font-size: clamp(24px, 4vw, 38px);
  color: #fff;
  margin-bottom: 10px;
}

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

.legal-page h2 {
  font-family: var(--brand-head-font);
  font-weight: 900;
  font-size: 20px;
  color: var(--brand-secondary);
  margin: 36px 0 12px;
}

.legal-page h3 {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin: 24px 0 10px;
}

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

.legal-page ul {
  margin: 12px 0 20px 24px;
}

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

/* =====================
   UTILITIES
===================== */
.text-center { text-align: center; }
.text-gold { color: var(--brand-secondary); }
.text-purple { color: var(--brand-accent); }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,77,255,0.4), transparent);
  margin: 0;
}

@media (max-width: 480px) {
  .section { padding: 50px 0; }
  .btn { padding: 12px 24px; font-size: 14px; }
}