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

:root {
  --brand-primary:     #1a1145;
  --brand-secondary:   #6b2fa0;
  --brand-accent:      #ff4d8d;
  --brand-bg:          #0f0b2e;
  --brand-text:        #ffffff;
  --brand-header-bg:   #0d0926;
  --brand-btn-bg:      #4caf50;
  --brand-btn-text:    #ffffff;
  --brand-btn-radius:  8px;
  --brand-head-font:   'Montserrat', sans-serif;
  --brand-body-font:   'Open Sans', sans-serif;
  --brand-head-weight: 800;
  --brand-body-size:   14px;
  --brand-card-bg:     #1e1550;
  --brand-border:      rgba(107,47,160,0.4);
  --brand-glow:        rgba(255,77,141,0.3);
  --brand-purple-light:#8b5cf6;
}

*, *::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: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

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

/* ─── SKIP LINK ─────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--brand-accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--brand-btn-radius);
  z-index: 99999;
  font-weight: 700;
  transition: top 0.2s;
}
.skip-link:focus { top: 10px; }

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

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

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

.main-nav { position: relative; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav ul li a {
  display: block;
  padding: 8px 14px;
  font-family: var(--brand-head-font);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  border-radius: var(--brand-btn-radius);
  border: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.main-nav ul li a:hover,
.main-nav ul li a:focus {
  color: #fff;
  background: rgba(107,47,160,0.3);
  border-color: var(--brand-border);
  outline: none;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 13px;
  border-radius: var(--brand-btn-radius);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  text-decoration: none;
}
.btn:focus { outline: 3px solid var(--brand-accent); outline-offset: 2px; }

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.08); transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--brand-accent) 0%, #c0206a 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255,77,141,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(255,77,141,0.55); }

.btn-green {
  background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(76,175,80,0.4);
}
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(76,175,80,0.55); }

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 48px;
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 18px;
  border-radius: 50px;
  background: linear-gradient(135deg, #4caf50 0%, #1b5e20 100%);
  color: #fff;
  box-shadow: 0 6px 30px rgba(76,175,80,0.5), 0 0 60px rgba(76,175,80,0.2);
  border: 2px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.btn-hero:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 40px rgba(76,175,80,0.65), 0 0 80px rgba(76,175,80,0.3);
}
.btn-hero:focus { outline: 3px solid #fff; outline-offset: 3px; }

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 15px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--brand-accent) 0%, #c0206a 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,77,141,0.45);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,77,141,0.6); }
.btn-cta:focus { outline: 3px solid #fff; outline-offset: 2px; }

/* ─── FLOATING CTA ──────────────────────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  padding: 14px 28px;
  background: linear-gradient(135deg, #4caf50 0%, #1b5e20 100%);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  font-family: var(--brand-head-font);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35), 0 0 30px rgba(76,175,80,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  border: 2px solid rgba(255,255,255,0.2);
}
.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.45), 0 0 50px rgba(76,175,80,0.5);
}
.floating-cta:focus { outline: 3px solid #fff; outline-offset: 2px; }

/* ─── MOBILE BURGER ─────────────────────────────────────────── */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 22px;
  padding: 6px 12px;
  border-radius: var(--brand-btn-radius);
  cursor: pointer;
  line-height: 1;
}
.mobile-menu-btn:focus { outline: 3px solid var(--brand-accent); }

/* ─── HERO ──────────────────────────────────────────────────── */
.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 20px 80px;
  background: linear-gradient(135deg, #0d0926 0%, #1a1145 40%, #2d1b69 70%, #0f0b2e 100%);
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(107,47,160,0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(255,77,141,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(76,175,80,0.15) 0%, transparent 40%);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-particles span {
  position: absolute;
  display: block;
  border-radius: 50%;
  animation: float-particle 8s infinite ease-in-out;
  opacity: 0.15;
}
.hero-particles span:nth-child(1)  { width:300px;height:300px;background:var(--brand-secondary);top:10%;left:5%;animation-duration:10s; }
.hero-particles span:nth-child(2)  { width:200px;height:200px;background:var(--brand-accent);top:60%;left:70%;animation-duration:7s;animation-delay:2s; }
.hero-particles span:nth-child(3)  { width:150px;height:150px;background:#4caf50;top:30%;left:85%;animation-duration:12s;animation-delay:4s; }
.hero-particles span:nth-child(4)  { width:100px;height:100px;background:var(--brand-purple-light);top:75%;left:20%;animation-duration:9s;animation-delay:1s; }

@keyframes float-particle {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255,77,141,0.2), rgba(107,47,160,0.2));
  border: 1px solid rgba(255,77,141,0.5);
  color: var(--brand-accent);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--brand-head-font);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(32px, 6vw, 64px);
  line-height: 1.15;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.85) 50%, var(--brand-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(15px, 2vw, 19px);
  color: rgba(255,255,255,0.8);
  margin-bottom: 12px;
  line-height: 1.5;
}

.hero-bonus-box {
  display: inline-block;
  background: linear-gradient(135deg, rgba(76,175,80,0.15), rgba(76,175,80,0.05));
  border: 1px solid rgba(76,175,80,0.5);
  border-radius: 16px;
  padding: 20px 36px;
  margin-bottom: 32px;
}
.hero-bonus-amount {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(36px, 7vw, 72px);
  color: #4caf50;
  line-height: 1;
  display: block;
  text-shadow: 0 0 40px rgba(76,175,80,0.6);
}
.hero-bonus-label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  display: block;
  margin-top: 6px;
  font-family: var(--brand-head-font);
  font-weight: 600;
}

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

.hero-trust-row {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-family: var(--brand-head-font);
  font-weight: 600;
}
.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 SHARED ────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-alt { background: rgba(255,255,255,0.02); }
.section-dark { background: rgba(0,0,0,0.2); }

.section-label {
  display: inline-block;
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-accent);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(24px, 4vw, 40px);
  line-height: 1.2;
  color: #fff;
  margin-bottom: 16px;
}
.section-intro {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  max-width: 680px;
  line-height: 1.7;
}

/* ─── WELCOME / ABOUT — FULL WIDTH ──────────────────────────── */
.welcome-section { padding: 80px 0; }
.welcome-inner {
  background: linear-gradient(135deg, rgba(26,17,69,0.8), rgba(107,47,160,0.2));
  border: 1px solid var(--brand-border);
  border-radius: 20px;
  padding: 60px;
  text-align: center;
}
.welcome-inner p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 800px;
  margin: 0 auto 16px;
  line-height: 1.8;
}
.welcome-inner p:last-child { margin-bottom: 0; }

/* ─── BONUS — TWO COLUMN ─────────────────────────────────────── */
.bonus-section { padding: 80px 0; }
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.bonus-text-col {}
.bonus-text-col p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 16px;
}
.bonus-card-col {
  background: linear-gradient(135deg, rgba(26,17,69,0.9), rgba(107,47,160,0.3));
  border: 1px solid var(--brand-border);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bonus-card-col::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(255,77,141,0.08), transparent 60%);
  pointer-events: none;
}
.bonus-main-amount {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 56px;
  color: #4caf50;
  line-height: 1;
  text-shadow: 0 0 30px rgba(76,175,80,0.5);
}
.bonus-main-label {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
  margin-bottom: 24px;
}
.bonus-terms {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 16px;
  line-height: 1.5;
}

/* ─── GAMES — THREE COLUMN CARDS ────────────────────────────── */
.games-section { padding: 80px 0; }
.games-filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-pill {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid var(--brand-border);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.7);
  font-family: var(--brand-head-font);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-pill.active,
.filter-pill:hover {
  background: var(--brand-secondary);
  border-color: var(--brand-secondary);
  color: #fff;
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.game-card {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 20px var(--brand-glow);
}
.game-card-thumb {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}
.game-card-thumb.slots-bg    { background: linear-gradient(135deg, #1a1145, #4a1f8a); }
.game-card-thumb.live-bg     { background: linear-gradient(135deg, #0d1f3c, #1a4f8a); }
.game-card-thumb.sports-bg   { background: linear-gradient(135deg, #0d2e1a, #1a5f32); }
.game-card-thumb.jackpot-bg  { background: linear-gradient(135deg, #3d1a00, #8a3f00); }
.game-card-thumb.table-bg    { background: linear-gradient(135deg, #1a0d2e, #6b2fa0); }
.game-card-thumb.new-bg      { background: linear-gradient(135deg, #0d1a2e, #1a4080); }
.game-card-body { padding: 16px; }
.game-card-title {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  margin-bottom: 6px;
}
.game-card-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.game-card-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--brand-accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--brand-head-font);
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
}

/* ─── SPORTS — ASYMMETRIC 2/3 + 1/3 ─────────────────────────── */
.sports-section { padding: 80px 0; }
.sports-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}
.sports-main-col p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 16px;
}
.sports-sidebar-col { display: flex; flex-direction: column; gap: 16px; }
.sport-widget {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color 0.2s;
}
.sport-widget:hover { border-color: var(--brand-accent); }
.sport-icon { font-size: 32px; flex-shrink: 0; }
.sport-info {}
.sport-name {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  margin-bottom: 4px;
}
.sport-detail { font-size: 12px; color: rgba(255,255,255,0.5); }

/* ─── LIVE CASINO — FULL WIDTH DARK ──────────────────────────── */
.live-section { padding: 80px 0; background: rgba(0,0,0,0.25); }
.live-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.live-visual {
  background: linear-gradient(135deg, rgba(26,17,69,0.8), rgba(107,47,160,0.4));
  border: 1px solid var(--brand-border);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.live-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(107,47,160,0.2), transparent 70%);
  pointer-events: none;
}
.live-emoji { font-size: 80px; display: block; margin-bottom: 16px; position: relative; z-index: 1; }
.live-visual-title {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  position: relative;
  z-index: 1;
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,77,141,0.15);
  border: 1px solid rgba(255,77,141,0.4);
  color: var(--brand-accent);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--brand-head-font);
  margin-top: 12px;
  position: relative;
  z-index: 1;
}
.live-dot {
  width: 8px;
  height: 8px;
  background: var(--brand-accent);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.live-text-col p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 16px;
}
.live-table-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.live-table-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--brand-border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  font-family: var(--brand-head-font);
  font-weight: 600;
}

/* ─── PAYMENTS — THREE + ONE ─────────────────────────────────── */
.payments-section { padding: 80px 0; }
.payments-header { margin-bottom: 48px; }
.payments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.payment-card {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}
.payment-card:hover { transform: translateY(-4px); border-color: var(--brand-secondary); }
.payment-icon { font-size: 40px; margin-bottom: 14px; }
.payment-title {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  margin-bottom: 8px;
}
.payment-detail { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.5; }
.payment-speed {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 12px;
  color: #4caf50;
  background: rgba(76,175,80,0.1);
  border: 1px solid rgba(76,175,80,0.3);
  padding: 3px 10px;
  border-radius: 50px;
}

.payments-info-bar {
  background: linear-gradient(135deg, rgba(26,17,69,0.8), rgba(107,47,160,0.2));
  border: 1px solid var(--brand-border);
  border-radius: 16px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.info-stat {}
.info-stat-value {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 28px;
  color: #4caf50;
  display: block;
}
.info-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

/* ─── SAFETY — SINGLE COLUMN CENTERED ───────────────────────── */
.safety-section { padding: 80px 0; background: rgba(0,0,0,0.15); }
.safety-inner { text-align: center; max-width: 800px; margin: 0 auto; }
.safety-inner p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 16px;
}
.safety-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  max-width: 100%;
}
.safety-card {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
}
.safety-card-icon { font-size: 36px; margin-bottom: 14px; display: block; }
.safety-card-title {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  margin-bottom: 8px;
}
.safety-card-text { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.5; }

/* ─── SUPPORT — TWO COLUMN SIDE BY SIDE ──────────────────────── */
.support-section { padding: 80px 0; }
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.support-text-col p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 16px;
}
.support-channel-col { display: flex; flex-direction: column; gap: 16px; }
.support-item {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.support-item-icon { font-size: 28px; flex-shrink: 0; }
.support-item-info {}
.support-item-label {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  margin-bottom: 4px;
}
.support-item-detail { font-size: 13px; color: rgba(255,255,255,0.5); }

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-section { padding: 80px 0; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--brand-border);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--brand-card-bg);
}
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 15px;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--brand-accent); }
.faq-question:focus { outline: 2px solid var(--brand-accent); outline-offset: -2px; }
.faq-toggle {
  font-size: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--brand-accent);
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  padding: 0 24px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 24px 20px; }

/* ─── MID-PAGE CTA BANNER ────────────────────────────────────── */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(26,17,69,0.9) 0%, rgba(107,47,160,0.4) 50%, rgba(26,17,69,0.9) 100%);
  border-top: 1px solid var(--brand-border);
  border-bottom: 1px solid var(--brand-border);
  text-align: center;
}
.cta-banner-title {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(24px, 4vw, 42px);
  color: #fff;
  margin-bottom: 12px;
}
.cta-banner-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--brand-header-bg);
  border-top: 1px solid var(--brand-border);
  padding: 60px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--brand-border);
}

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

.footer-col-title {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--brand-accent); }
.footer-links a:focus { outline: 1px solid var(--brand-accent); border-radius: 3px; }

.footer-logos-section {
  padding: 32px 0;
  border-bottom: 1px solid var(--brand-border);
}
.footer-logos-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.footer-logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 10px 18px;
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  gap: 8px;
  min-width: 80px;
  text-align: center;
}
.footer-logo-badge.age-badge {
  background: rgba(255,77,141,0.1);
  border-color: rgba(255,77,141,0.3);
  color: var(--brand-accent);
  font-size: 18px;
  font-weight: 800;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}
.footer-legal-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 16px;
}
.footer-legal-row a {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-legal-row a:hover { color: rgba(255,255,255,0.8); }
.footer-copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
}
.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  max-width: 800px;
  margin: 12px auto 0;
  line-height: 1.6;
}

/* ─── LEGAL PAGE ────────────────────────────────────────────── */
.legal-page { padding-top: 100px; }
.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}
.legal-content h1 {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 36px;
  color: #fff;
  margin-bottom: 12px;
}
.legal-content .last-updated {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 40px;
}
.legal-content h2 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  margin: 36px 0 12px;
  padding-top: 12px;
  border-top: 1px solid var(--brand-border);
}
.legal-content h3 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  margin: 24px 0 10px;
}
.legal-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 14px;
}
.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}
.legal-content ul li {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 6px;
}
.legal-content a { color: var(--brand-accent); text-decoration: underline; }

/* ─── MAIN CONTENT SPACER ───────────────────────────────────── */
main { padding-top: 68px; }

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

@media (max-width: 992px) {
  .main-nav ul { display: none; }
  .mobile-menu-btn {
    display: block;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 22px;
    padding: 6px 12px;
    border-radius: var(--brand-btn-radius);
    cursor: pointer;
    line-height: 1;
  }
  .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 10px rgba(0,0,0,0.3);
    z-index: 999;
    border-bottom: 1px solid var(--brand-border);
  }
  .main-nav.mobile-nav-active ul li a {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .header-cta-group .btn-outline { display: none; }
}

@media (max-width: 768px) {
  .hero-section { min-height: 80vh; padding: 100px 20px 60px; }
  .bonus-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .sports-layout { grid-template-columns: 1fr; }
  .live-inner { grid-template-columns: 1fr; }
  .payments-grid { grid-template-columns: 1fr 1fr; }
  .payments-info-bar { grid-template-columns: repeat(2, 1fr); }
  .safety-cards { grid-template-columns: 1fr 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .floating-cta { bottom: 16px; right: 16px; padding: 12px 22px; font-size: 14px; }
  .welcome-inner { padding: 40px 24px; }
}

@media (max-width: 480px) {
  .games-grid { grid-template-columns: 1fr; }
  .payments-grid { grid-template-columns: 1fr; }
  .safety-cards { grid-template-columns: 1fr; }
  .payments-info-bar { grid-template-columns: 1fr 1fr; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .btn-hero { width: 100%; max-width: 300px; }
}