@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --brand-primary:     #E91E8C;
  --brand-secondary:   #7B2FBE;
  --brand-accent:      #00C8AA;
  --brand-bg:          #1A1A2E;
  --brand-text:        #FFFFFF;
  --brand-header-bg:   #12121F;
  --brand-btn-bg:      #E91E8C;
  --brand-btn-text:    #FFFFFF;
  --brand-btn-radius:  24px;
  --brand-head-font:   'Poppins', sans-serif;
  --brand-body-font:   'Inter', sans-serif;
  --brand-head-weight: 700;
  --brand-body-size:   14px;
  --brand-card-bg:     #16213E;
  --brand-card-border: #2A2A4A;
  --brand-muted:       #A0A0C0;
}

*, *::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;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--brand-accent);
}

ul {
  list-style: none;
}

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

.skip-to-content {
  position: absolute;
  top: -60px;
  left: 0;
  background: var(--brand-primary);
  color: #fff;
  padding: 10px 20px;
  z-index: 99999;
  font-weight: 700;
  transition: top 0.2s;
}

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

/* ─── HEADER / NAV ─────────────────────────────────── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--brand-header-bg);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  height: 64px;
  display: flex;
  align-items: center;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

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

.site-logo-text {
  display: block;
  font-family: var(--brand-head-font);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.main-nav {
  position: relative;
}

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

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

.main-nav ul li a:hover,
.main-nav ul li a.active {
  background: rgba(233,30,140,0.15);
  color: var(--brand-primary);
}

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

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

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

/* ─── BUTTONS ─────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
  text-decoration: none;
  border: none;
  outline: none;
}

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

.btn-primary {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(233,30,140,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(233,30,140,0.5);
  color: #fff;
  background: #d4187f;
}

.btn-secondary {
  background: transparent;
  color: var(--brand-text);
  border: 1.5px solid rgba(255,255,255,0.25);
}

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

.btn-accent {
  background: var(--brand-accent);
  color: #0a0a1a;
  box-shadow: 0 4px 15px rgba(0,200,170,0.35);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,200,170,0.5);
  color: #0a0a1a;
  background: #00b599;
}

.btn-hero {
  background: linear-gradient(135deg, var(--brand-primary), #c0157a);
  color: #fff;
  font-size: 18px;
  padding: 16px 40px;
  border-radius: var(--brand-btn-radius);
  box-shadow: 0 6px 30px rgba(233,30,140,0.45);
  font-weight: 800;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(233,30,140,0.6);
  color: #fff;
}

.btn-cta {
  background: linear-gradient(135deg, var(--brand-secondary), #6020a0);
  color: #fff;
  font-size: 15px;
  padding: 13px 32px;
  border-radius: var(--brand-btn-radius);
  box-shadow: 0 4px 20px rgba(123,47,190,0.4);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(123,47,190,0.55);
  color: #fff;
}

.btn-lg {
  font-size: 16px;
  padding: 14px 36px;
}

/* ─── 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;
  font-family: var(--brand-head-font);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,.35), 0 0 0 0 rgba(233,30,140,0.5);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
  animation: pulse-glow 3s infinite;
}

.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,.45), 0 0 20px rgba(233,30,140,0.6);
  color: #fff;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(0,0,0,.35), 0 0 0 0 rgba(233,30,140,0.5); }
  50% { box-shadow: 0 4px 20px rgba(0,0,0,.35), 0 0 20px 4px rgba(233,30,140,0.35); }
}

/* ─── HERO ────────────────────────────────────────── */

.hero-section {
  padding-top: 64px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0d0d1f 0%, #1a0a2e 40%, #0f1a3a 100%);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(123,47,190,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(233,30,140,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

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

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(233,30,140,0.12);
  border: 1px solid rgba(233,30,140,0.3);
  color: var(--brand-primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--brand-primary);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--brand-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 32px;
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-family: var(--brand-head-font);
  font-size: 24px;
  font-weight: 800;
  color: var(--brand-accent);
  line-height: 1;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--brand-muted);
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.promo-card {
  background: linear-gradient(135deg, rgba(123,47,190,0.3), rgba(233,30,140,0.2));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.promo-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(233,30,140,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.promo-card-top {
  background: linear-gradient(135deg, rgba(0,200,170,0.2), rgba(123,47,190,0.25));
}

.promo-card-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.promo-card-title {
  font-family: var(--brand-head-font);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 12px;
}

.promo-card-desc {
  font-size: 13px;
  color: var(--brand-muted);
  margin-bottom: 16px;
}

/* ─── SECTION COMMONS ─────────────────────────────── */

.section {
  padding: 80px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(22,33,62,0.8) 0%, rgba(26,26,46,0.9) 100%);
}

.section-dark {
  background: rgba(12,12,30,0.6);
}

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

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brand-primary);
  margin-bottom: 12px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--brand-primary);
}

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

.section-desc {
  font-size: 16px;
  color: var(--brand-muted);
  max-width: 580px;
  line-height: 1.7;
}

.section-header.centered .section-desc {
  margin: 0 auto;
}

/* ─── WELCOME / INTRO SECTION ─────────────────────── */

.welcome-section {
  padding: 80px 0;
  background: var(--brand-card-bg);
}

.welcome-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

.welcome-body p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 20px;
}

.welcome-body p:last-child {
  margin-bottom: 0;
}

.welcome-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trust-badge {
  background: rgba(26,26,46,0.8);
  border: 1px solid var(--brand-card-border);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color 0.2s;
}

.trust-badge:hover {
  border-color: rgba(233,30,140,0.4);
}

.trust-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.trust-label {
  font-family: var(--brand-head-font);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.trust-sublabel {
  font-size: 12px;
  color: var(--brand-muted);
  margin-top: 2px;
}

/* ─── BONUS SECTION ───────────────────────────────── */

.bonus-section {
  padding: 80px 0;
}

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

.bonus-card {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-card-border);
  border-radius: 20px;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.bonus-card:hover {
  transform: translateY(-4px);
  border-color: rgba(233,30,140,0.4);
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
}

.bonus-card.featured {
  border-color: rgba(233,30,140,0.5);
  background: linear-gradient(135deg, rgba(123,47,190,0.15), rgba(233,30,140,0.08));
}

.bonus-card.featured::before {
  background: linear-gradient(90deg, var(--brand-accent), var(--brand-primary));
  height: 3px;
}

.bonus-badge {
  display: inline-block;
  background: rgba(233,30,140,0.15);
  color: var(--brand-primary);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.bonus-badge.accent {
  background: rgba(0,200,170,0.15);
  color: var(--brand-accent);
}

.bonus-amount {
  font-family: var(--brand-head-font);
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.bonus-title {
  font-family: var(--brand-head-font);
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-accent);
  margin-bottom: 12px;
}

.bonus-desc {
  font-size: 13px;
  color: var(--brand-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.bonus-terms {
  font-size: 11px;
  color: rgba(160,160,192,0.6);
  line-height: 1.5;
}

/* ─── GAMES SECTION ───────────────────────────────── */

.games-section {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(12,12,28,0.7) 0%, rgba(22,33,62,0.5) 100%);
}

.category-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.pill {
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--brand-card-border);
  color: var(--brand-muted);
  background: transparent;
  transition: all 0.2s;
  font-family: var(--brand-body-font);
}

.pill:hover,
.pill.active {
  background: rgba(233,30,140,0.15);
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

.games-two-col {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 40px;
  align-items: start;
}

.games-main h3 {
  font-family: var(--brand-head-font);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.games-main p {
  font-size: 15px;
  color: var(--brand-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.games-provider-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.provider-chip {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-card-border);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-muted);
  transition: all 0.2s;
}

.provider-chip:hover {
  border-color: var(--brand-accent);
  color: var(--brand-accent);
}

.games-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.game-type-card {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-card-border);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.game-type-card:hover {
  border-color: rgba(233,30,140,0.4);
  transform: translateX(4px);
}

.game-type-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.icon-slots { background: linear-gradient(135deg, #E91E8C, #7B2FBE); }
.icon-live { background: linear-gradient(135deg, #00C8AA, #0a8a76); }
.icon-table { background: linear-gradient(135deg, #7B2FBE, #3a1060); }
.icon-sports { background: linear-gradient(135deg, #E91E8C, #ff6b35); }

.game-type-info h4 {
  font-family: var(--brand-head-font);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.game-type-info span {
  font-size: 12px;
  color: var(--brand-muted);
}

/* ─── PAYMENTS SECTION ────────────────────────────── */

.payments-section {
  padding: 80px 0;
  background: var(--brand-card-bg);
}

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

.payment-card {
  background: rgba(26,26,46,0.8);
  border: 1px solid var(--brand-card-border);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.2s;
}

.payment-card:hover {
  border-color: rgba(0,200,170,0.4);
  transform: translateY(-3px);
}

.payment-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}

.payment-name {
  font-family: var(--brand-head-font);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.payment-time {
  font-size: 12px;
  color: var(--brand-accent);
  font-weight: 600;
  margin-bottom: 4px;
}

.payment-limit {
  font-size: 11px;
  color: var(--brand-muted);
}

.payments-note {
  margin-top: 32px;
  padding: 20px 24px;
  background: rgba(233,30,140,0.08);
  border: 1px solid rgba(233,30,140,0.2);
  border-radius: 12px;
  font-size: 14px;
  color: var(--brand-muted);
  line-height: 1.65;
}

.payments-note strong {
  color: var(--brand-primary);
}

/* ─── SPORTS BETTING SECTION ──────────────────────── */

.sports-section {
  padding: 80px 0;
}

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

.sports-aside h3 {
  font-family: var(--brand-head-font);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 16px;
}

.sports-aside p {
  font-size: 15px;
  color: var(--brand-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.sports-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sport-card {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-card-border);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.2s;
}

.sport-card:hover {
  border-color: rgba(233,30,140,0.4);
  transform: translateY(-2px);
}

.sport-emoji {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
}

.sport-name {
  font-family: var(--brand-head-font);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.sport-desc {
  font-size: 12px;
  color: var(--brand-muted);
  line-height: 1.5;
}

/* ─── SECURITY SECTION ────────────────────────────── */

.security-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(12,12,28,0.8) 0%, rgba(18,18,31,0.95) 100%);
}

.security-three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.security-card {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-card-border);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.2s;
}

.security-card:hover {
  border-color: rgba(0,200,170,0.3);
}

.security-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0,200,170,0.2), rgba(123,47,190,0.2));
  border: 1px solid rgba(0,200,170,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}

.security-title {
  font-family: var(--brand-head-font);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.security-desc {
  font-size: 14px;
  color: var(--brand-muted);
  line-height: 1.65;
}

/* ─── SUPPORT SECTION ─────────────────────────────── */

.support-section {
  padding: 80px 0;
  background: var(--brand-card-bg);
}

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

.support-main h3 {
  font-family: var(--brand-head-font);
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.support-main p {
  font-size: 15px;
  color: var(--brand-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.support-main p:last-of-type {
  margin-bottom: 24px;
}

.support-channel {
  background: rgba(26,26,46,0.8);
  border: 1px solid var(--brand-card-border);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.2s;
}

.support-channel:hover {
  border-color: rgba(233,30,140,0.4);
}

.support-channel-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}

.support-channel-name {
  font-family: var(--brand-head-font);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.support-channel-info {
  font-size: 12px;
  color: var(--brand-muted);
  line-height: 1.5;
}

/* ─── FAQ SECTION ─────────────────────────────────── */

.faq-section {
  padding: 80px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.faq-item {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-card-border);
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: rgba(123,47,190,0.4);
}

.faq-question {
  font-family: var(--brand-head-font);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.4;
}

.faq-answer {
  font-size: 14px;
  color: var(--brand-muted);
  line-height: 1.65;
}

/* ─── CTA BANNER ──────────────────────────────────── */

.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a0a2e 0%, #0d1a3a 50%, #1a0a2e 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(233,30,140,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.cta-banner-title {
  font-family: var(--brand-head-font);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-banner-desc {
  font-size: 17px;
  color: var(--brand-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-banner-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-disclaimer {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(160,160,192,0.5);
}

/* ─── FOOTER ──────────────────────────────────────── */

.site-footer {
  background: var(--brand-header-bg);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 0 0;
}

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

.footer-brand p {
  font-size: 14px;
  color: var(--brand-muted);
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 280px;
}

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

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--brand-muted);
  transition: color 0.2s;
}

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

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 32px;
}

.footer-legal-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

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

.gambling-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.gambling-logo-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-muted);
  white-space: nowrap;
}

.responsible-gambling {
  padding: 20px 24px;
  background: rgba(233,30,140,0.06);
  border: 1px solid rgba(233,30,140,0.15);
  border-radius: 12px;
  margin-bottom: 24px;
}

.responsible-gambling p {
  font-size: 13px;
  color: var(--brand-muted);
  line-height: 1.6;
}

.responsible-gambling a {
  color: var(--brand-accent);
  font-weight: 600;
}

.responsible-gambling a:hover {
  color: var(--brand-primary);
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(160,160,192,0.5);
}

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

.footer-legal-links a {
  font-size: 13px;
  color: rgba(160,160,192,0.5);
  transition: color 0.2s;
}

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

/* ─── LEGAL PAGES ─────────────────────────────────── */

.legal-hero {
  padding-top: 64px;
  background: linear-gradient(135deg, #0d0d1f 0%, #1a0a2e 100%);
  padding-bottom: 48px;
  text-align: center;
}

.legal-hero-inner {
  padding-top: 60px;
}

.legal-hero h1 {
  font-family: var(--brand-head-font);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.legal-hero p {
  font-size: 16px;
  color: var(--brand-muted);
}

.legal-content {
  padding: 60px 0 80px;
  background: var(--brand-bg);
}

.legal-content .container {
  max-width: 860px;
}

.legal-content h2 {
  font-family: var(--brand-head-font);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 36px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--brand-card-border);
}

.legal-content h3 {
  font-family: var(--brand-head-font);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 24px 0 10px;
}

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

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

.legal-content ul li {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 8px;
}

.legal-updated {
  display: inline-block;
  background: rgba(233,30,140,0.1);
  border: 1px solid rgba(233,30,140,0.2);
  color: var(--brand-primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 32px;
}

/* ─── RESPONSIVE ──────────────────────────────────── */

@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,.3);
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

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

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }

  .welcome-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

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

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

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

  .security-three-col {
    grid-template-columns: 1fr 1fr;
  }

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

  .support-main {
    grid-column: 1 / -1;
  }

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

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

@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }

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

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

  .security-three-col {
    grid-template-columns: 1fr;
  }

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

  .support-main {
    grid-column: auto;
  }

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

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

  .footer-brand p {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal-links {
    justify-content: center;
  }

  .footer-legal-row {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .hero-stats {
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    min-height: 80vh;
  }

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

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

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

  .payments-four-col {
    grid-template-columns: 1fr 1fr;
  }

  .category-pills {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
  }
}

@media (max-width: 320px) {
  .container {
    padding: 0 14px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-hero {
    font-size: 15px;
    padding: 14px 28px;
  }
}