:root {
  --brand-primary:     #1a0a2e;
  --brand-secondary:   #f5a623;
  --brand-accent:      #9b59b6;
  --brand-bg:          #0d0517;
  --brand-text:        #ffffff;
  --brand-header-bg:   #1a0a2e;
  --brand-btn-bg:      #f5a623;
  --brand-btn-text:    #1a0a2e;
  --brand-btn-radius:  12px;
  --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 {
  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-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #ffc84a;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  line-height: 1.2;
  color: var(--brand-text);
}

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

ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.4rem;
}

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

.skip-to-content {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--brand-secondary);
  color: var(--brand-btn-text);
  padding: 10px 20px;
  z-index: 99999;
  font-weight: 700;
  border-radius: 0 0 8px 0;
  transition: top 0.2s;
}

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

/* ========== HEADER & NAV ========== */
.site-header {
  background: var(--brand-header-bg);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
  border-bottom: 1px solid rgba(155, 89, 182, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 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: 8px;
  padding: 0;
  margin: 0;
}

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

.main-nav ul li a:hover {
  background: rgba(245, 166, 35, 0.15);
  color: var(--brand-secondary);
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: 2px solid var(--brand-secondary);
  color: var(--brand-secondary);
  font-size: 20px;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  min-width: 44px;
  min-height: 44px;
}

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

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

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

.btn-primary {
  background: var(--brand-btn-bg);
  color: var(--brand-btn-text);
  box-shadow: 0 4px 18px rgba(245, 166, 35, 0.45);
}

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

.btn-hero {
  background: var(--brand-btn-bg);
  color: var(--brand-btn-text);
  font-size: 18px;
  padding: 16px 44px;
  border-radius: var(--brand-btn-radius);
  box-shadow: 0 6px 24px rgba(245, 166, 35, 0.5);
  font-family: var(--brand-head-font);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
  text-decoration: none;
}

.btn-hero:hover {
  background: #ffc84a;
  color: var(--brand-btn-text);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(245, 166, 35, 0.65);
}

.btn-cta {
  background: linear-gradient(135deg, var(--brand-accent), #7d3c98);
  color: #fff;
  padding: 13px 32px;
  border-radius: var(--brand-btn-radius);
  box-shadow: 0 4px 18px rgba(155, 89, 182, 0.4);
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
  text-decoration: none;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(155, 89, 182, 0.6);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--brand-secondary);
  border: 2px solid var(--brand-secondary);
  padding: 10px 24px;
  border-radius: var(--brand-btn-radius);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  display: inline-block;
  text-decoration: none;
  min-height: 44px;
  line-height: 1.4;
}

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

/* ========== 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: 15px;
  font-family: var(--brand-head-font);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.55);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  min-height: 44px;
  display: flex;
  align-items: center;
}

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

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

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(155, 89, 182, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(245, 166, 35, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.hero-cityscape {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  height: 100%;
  background:
    linear-gradient(to right, #0d0517 0%, transparent 30%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 500'%3E%3Crect width='800' height='500' fill='%230d0517'/%3E%3Crect x='50' y='200' width='60' height='300' fill='%231a0a2e'/%3E%3Crect x='130' y='150' width='80' height='350' fill='%23160825'/%3E%3Crect x='230' y='100' width='50' height='400' fill='%231e0d35'/%3E%3Crect x='300' y='180' width='70' height='320' fill='%231a0a2e'/%3E%3Crect x='390' y='120' width='90' height='380' fill='%23220f3d'/%3E%3Crect x='500' y='160' width='65' height='340' fill='%231a0a2e'/%3E%3Crect x='585' y='90' width='75' height='410' fill='%231e0d35'/%3E%3Crect x='680' y='140' width='80' height='360' fill='%231a0a2e'/%3E%3Crect x='755' y='200' width='45' height='300' fill='%23160825'/%3E%3Crect x='52' y='202' width='56' height='4' fill='%23f5a623' opacity='0.6'/%3E%3Crect x='132' y='152' width='76' height='4' fill='%239b59b6' opacity='0.7'/%3E%3Crect x='232' y='102' width='46' height='4' fill='%23f5a623' opacity='0.5'/%3E%3Crect x='392' y='122' width='86' height='4' fill='%239b59b6' opacity='0.8'/%3E%3Crect x='587' y='92' width='71' height='4' fill='%23f5a623' opacity='0.6'/%3E%3Crect x='62' y='240' width='8' height='12' fill='%23f5a623' opacity='0.8'/%3E%3Crect x='80' y='260' width='8' height='12' fill='%239b59b6' opacity='0.7'/%3E%3Crect x='145' y='200' width='8' height='12' fill='%23f5a623' opacity='0.9'/%3E%3Crect x='165' y='220' width='8' height='12' fill='%23f5a623' opacity='0.6'/%3E%3Crect x='245' y='150' width='8' height='12' fill='%239b59b6' opacity='0.8'/%3E%3Crect x='405' y='170' width='8' height='12' fill='%23f5a623' opacity='0.9'/%3E%3Crect x='425' y='190' width='8' height='12' fill='%239b59b6' opacity='0.7'/%3E%3Crect x='600' y='140' width='8' height='12' fill='%23f5a623' opacity='0.8'/%3E%3Crect x='620' y='160' width='8' height='12' fill='%239b59b6' opacity='0.6'/%3E%3Cellipse cx='400' cy='500' rx='500' ry='80' fill='%239b59b6' opacity='0.08'/%3E%3C/svg%3E") center/cover no-repeat;
  pointer-events: none;
}

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

.hero-badge {
  display: inline-block;
  background: rgba(155, 89, 182, 0.3);
  border: 1px solid rgba(155, 89, 182, 0.6);
  color: var(--brand-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

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

.hero-title .highlight {
  color: var(--brand-secondary);
  display: block;
}

.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 22px);
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 1.5;
}

.hero-bonus-tag {
  background: linear-gradient(90deg, var(--brand-secondary), #e8901a);
  color: var(--brand-btn-text);
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 900;
  font-family: var(--brand-head-font);
  display: inline-block;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(245, 166, 35, 0.4);
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 28px;
}

.hero-trust-strip {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

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

.hero-trust-item .trust-icon {
  width: 18px;
  height: 18px;
  background: var(--brand-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}

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

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

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

.section-gradient {
  background: linear-gradient(180deg, var(--brand-primary) 0%, #0d0517 100%);
}

.section-accent-bg {
  background: linear-gradient(135deg, #1e0d35 0%, #2a1050 50%, #1a0a2e 100%);
}

.section-title {
  font-size: clamp(24px, 3.5vw, 42px);
  font-family: var(--brand-head-font);
  font-weight: 900;
  margin-bottom: 16px;
  color: #fff;
}

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

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

.text-center {
  text-align: center;
}

.section-header-center {
  text-align: center;
  margin-bottom: 48px;
}

.section-header-center .section-subtitle {
  margin: 0 auto 0 auto;
}

/* ========== WELCOME / INTRO SECTION (asymmetric 2/3 + 1/3) ========== */
.intro-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.intro-main-text h2 {
  font-size: clamp(22px, 3vw, 36px);
  margin-bottom: 20px;
}

.intro-main-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
}

.intro-sidebar-card {
  background: linear-gradient(135deg, rgba(155,89,182,0.2), rgba(26,10,46,0.9));
  border: 1px solid rgba(155,89,182,0.35);
  border-radius: 16px;
  padding: 28px 24px;
  position: sticky;
  top: 80px;
}

.intro-sidebar-card h3 {
  font-size: 18px;
  color: var(--brand-secondary);
  margin-bottom: 16px;
}

.quick-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
}

.quick-stat:last-of-type {
  border-bottom: none;
}

.quick-stat-label {
  color: rgba(255,255,255,0.6);
}

.quick-stat-value {
  color: var(--brand-secondary);
  font-weight: 700;
  font-family: var(--brand-head-font);
}

/* ========== BONUS SECTION (two-column) ========== */
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.bonus-visual {
  background: linear-gradient(135deg, #2d1257 0%, #1a0a2e 100%);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bonus-visual::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(245,166,35,0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.bonus-amount {
  font-size: clamp(44px, 7vw, 80px);
  font-family: var(--brand-head-font);
  font-weight: 900;
  color: var(--brand-secondary);
  line-height: 1;
  display: block;
}

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

.bonus-free-spins {
  margin-top: 20px;
  background: rgba(155,89,182,0.25);
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 700;
  color: #d7b4f5;
}

.bonus-content h2 {
  font-size: clamp(22px, 3vw, 36px);
  margin-bottom: 18px;
}

.bonus-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 14px;
  line-height: 1.75;
}

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

/* ========== GAMES SECTION (3-column card grid) ========== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.game-card {
  background: linear-gradient(160deg, #1e0d35 0%, #1a0a2e 100%);
  border: 1px solid rgba(155,89,182,0.25);
  border-radius: 16px;
  padding: 28px 24px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-secondary), var(--brand-accent));
  opacity: 0;
  transition: opacity 0.25s;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(155,89,182,0.3);
  border-color: rgba(155,89,182,0.5);
}

.game-card:hover::before {
  opacity: 1;
}

.game-card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--brand-accent), #7d3c98);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.game-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
  color: #fff;
}

.game-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin: 0;
}

.game-card .game-count {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  background: rgba(245,166,35,0.15);
  color: var(--brand-secondary);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700;
}

/* ========== PAYMENTS SECTION (full-width single column) ========== */
.payments-section {
  background: linear-gradient(180deg, #0d0517 0%, var(--brand-primary) 100%);
}

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

.payment-block {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 24px;
}

.payment-block h3 {
  font-size: 15px;
  color: var(--brand-secondary);
  margin-bottom: 10px;
  font-family: var(--brand-head-font);
}

.payment-block p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin: 0;
  line-height: 1.65;
}

.payment-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: rgba(155,89,182,0.1);
  border: 1px solid rgba(155,89,182,0.2);
  border-radius: 16px;
  padding: 28px;
}

.payment-stat {
  text-align: center;
}

.payment-stat-number {
  font-size: clamp(22px, 3vw, 36px);
  font-family: var(--brand-head-font);
  font-weight: 900;
  color: var(--brand-secondary);
  display: block;
  line-height: 1;
}

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

/* ========== LICENSING SECTION (asymmetric 1/3 + 2/3) ========== */
.licensing-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: center;
}

.license-badge-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.license-badge {
  background: linear-gradient(135deg, rgba(245,166,35,0.12), rgba(26,10,46,0.9));
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
}

.license-badge .badge-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 8px;
}

.license-badge .badge-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.license-badge .badge-detail {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.licensing-content h2 {
  font-size: clamp(22px, 3vw, 36px);
  margin-bottom: 18px;
}

.licensing-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 14px;
}

/* ========== SUPPORT SECTION (3-column) ========== */
.support-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.support-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
}

.support-card:hover {
  border-color: rgba(245,166,35,0.3);
  background: rgba(245,166,35,0.05);
}

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

.support-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--brand-secondary);
}

.support-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin: 0;
  line-height: 1.6;
}

/* ========== RESPONSIBLE GAMING SECTION (full-width) ========== */
.resp-gaming-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.resp-gaming-inner h2 {
  font-size: clamp(22px, 3vw, 36px);
  margin-bottom: 18px;
}

.resp-gaming-inner p {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 14px;
}

/* ========== FAQ SECTION (single column) ========== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

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

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

.faq-question {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  font-family: var(--brand-head-font);
}

.faq-answer {
  font-size: 14px;
  color: rgba(255,255,255,0.68);
  line-height: 1.72;
  margin: 0;
}

/* ========== MID-PAGE CTA BANNER ========== */
.mid-cta-banner {
  background: linear-gradient(135deg, #2d1257 0%, #1a0a2e 60%, #0d0517 100%);
  border-top: 1px solid rgba(155,89,182,0.3);
  border-bottom: 1px solid rgba(155,89,182,0.3);
  padding: 60px 20px;
  text-align: center;
}

.mid-cta-banner h2 {
  font-size: clamp(24px, 4vw, 44px);
  margin-bottom: 14px;
}

.mid-cta-banner p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 28px auto;
  line-height: 1.65;
}

/* ========== FOOTER ========== */
.site-footer {
  background: #060210;
  border-top: 1px solid rgba(155,89,182,0.2);
  padding: 60px 0 0 0;
}

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

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

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-secondary);
  margin-bottom: 16px;
  font-family: var(--brand-head-font);
}

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

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

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

.footer-security-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.security-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.age-badge {
  background: var(--brand-secondary);
  color: var(--brand-btn-text);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 900;
  font-family: var(--brand-head-font);
}

.footer-help-row {
  background: rgba(155,89,182,0.08);
  border-top: 1px solid rgba(155,89,182,0.15);
  padding: 20px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.footer-help-row a {
  color: var(--brand-accent);
  font-weight: 600;
}

.footer-help-row a:hover {
  color: #d7b4f5;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.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 {
  text-align: center;
  padding: 16px 20px 24px 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  border-top: 1px solid rgba(255,255,255,0.05);
}

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

.legal-page-wrapper h1 {
  font-size: clamp(26px, 4vw, 42px);
  margin-bottom: 12px;
}

.legal-page-wrapper .legal-updated {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 40px;
  display: block;
}

.legal-page-wrapper h2 {
  font-size: 20px;
  color: var(--brand-secondary);
  margin: 36px 0 14px 0;
}

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

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

.legal-page-wrapper ul {
  margin-bottom: 16px;
}

.legal-page-wrapper ul li {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  .payment-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

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

  .mobile-nav-active ul li a {
    display: block;
    padding: 12px 16px;
    font-size: 15px;
  }

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

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

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

  .bonus-visual {
    max-width: 400px;
    margin: 0 auto;
  }

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

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

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

  .license-badge-stack {
    flex-direction: row;
    justify-content: center;
  }

  .support-cards {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

  .hero-cityscape {
    width: 100%;
    opacity: 0.2;
  }

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

  .btn-hero {
    font-size: 16px;
    padding: 14px 32px;
    width: 100%;
    text-align: center;
  }

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

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

  .support-cards {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding: 50px 0;
  }

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

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

  .license-badge-stack {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 10px 16px;
  }

  .container {
    padding: 0 16px;
  }

  .payment-stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 20px;
  }

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

@media (max-width: 320px) {
  .btn-hero {
    font-size: 14px;
    padding: 12px 20px;
  }

  .hero-section {
    padding: 40px 12px 60px;
  }
}

/* ========== ACCESSIBILITY ========== */
:focus-visible {
  outline: 3px solid var(--brand-secondary);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}