/* ============================================================
   LibraBet Casino — Complete Stylesheet
   Brand: Dark theme, red/blue/green accents
   ============================================================ */

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

/* --- CSS Variables --- */
:root {
  --brand-primary:     #e63946;
  --brand-secondary:   #3366ff;
  --brand-accent:      #00c853;
  --brand-bg:          #0a0a0a;
  --brand-text:        #ffffff;
  --brand-header-bg:   #1a1a2e;
  --brand-btn-bg:      #e63946;
  --brand-btn-text:    #ffffff;
  --brand-btn-radius:  24px;
  --brand-head-font:   'Montserrat', sans-serif;
  --brand-body-font:   'Open Sans', sans-serif;
  --brand-head-weight: 700;
  --brand-body-size:   14px;
  --brand-card-bg:     #161625;
  --brand-border:      #2a2a3e;
  --brand-muted:       #9a9ab0;
  --transition:        0.25s ease;
}

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

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

/* --- Skip to Content --- */
.skip-link {
  position: absolute;
  top: -60px;
  left: 0;
  background: var(--brand-primary);
  color: #fff;
  padding: 10px 20px;
  z-index: 99999;
  font-weight: 700;
  border-radius: 0 0 8px 0;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

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

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.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: 70px;
  gap: 20px;
}

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

/* Nav */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.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: var(--brand-text);
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  background: rgba(230,57,70,0.15);
  color: var(--brand-primary);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--brand-border);
  color: var(--brand-text);
  font-size: 22px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background var(--transition);
}
.mobile-menu-btn:hover {
  background: rgba(255,255,255,0.08);
}
.mobile-menu-btn:focus {
  outline: 2px solid var(--brand-primary);
}

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

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

.btn-primary {
  background: var(--brand-btn-bg);
  color: var(--brand-btn-text);
}
.btn-primary:hover {
  background: #c0303b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230,57,70,0.4);
}

.btn-secondary {
  background: var(--brand-secondary);
  color: #fff;
}
.btn-secondary:hover {
  background: #2255dd;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(51,102,255,0.4);
}

.btn-accent {
  background: var(--brand-accent);
  color: #0a0a0a;
}
.btn-accent:hover {
  background: #00a844;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,200,83,0.4);
}

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

.btn-hero {
  display: inline-block;
  padding: 16px 44px;
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 18px;
  border-radius: var(--brand-btn-radius);
  background: var(--brand-btn-bg);
  color: #fff;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  box-shadow: 0 6px 30px rgba(230,57,70,0.5);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.btn-hero::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.4s;
}
.btn-hero:hover::before {
  left: 100%;
}
.btn-hero:hover {
  background: #c0303b;
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(230,57,70,0.6);
}
.btn-hero:focus {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.btn-cta {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--brand-btn-radius);
  background: var(--brand-accent);
  color: #0a0a0a;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(0,200,83,0.35);
}
.btn-cta:hover {
  background: #00a844;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,200,83,0.5);
}

/* ============================================================
   FLOATING CTA — ALWAYS VISIBLE
   ============================================================ */
.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,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  border: 2px solid rgba(255,255,255,0.15);
}
.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.45);
  background: #c0303b;
}
.floating-cta:focus {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  padding-top: 70px;
  min-height: 90vh;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 40%, #0d0d20 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(230,57,70,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(51,102,255,0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 60% 80%, rgba(0,200,83,0.07) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230,57,70,0.15);
  border: 1px solid rgba(230,57,70,0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--brand-head-font);
  color: var(--brand-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}

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

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  color: var(--brand-text);
  letter-spacing: -0.5px;
}

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

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

.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  max-width: 480px;
}

.hero-bonus-box {
  background: linear-gradient(135deg, rgba(230,57,70,0.12), rgba(51,102,255,0.08));
  border: 1px solid rgba(230,57,70,0.25);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-bonus-label {
  font-size: 12px;
  font-weight: 600;
  font-family: var(--brand-head-font);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brand-muted);
}

.hero-bonus-amount {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 42px);
  color: var(--brand-accent);
  line-height: 1;
}

.hero-bonus-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

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

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

.trust-item .trust-icon {
  font-size: 14px;
}

/* Hero Cards */
.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.promo-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.promo-card-inner {
  padding: 24px;
  position: relative;
  z-index: 2;
}

.promo-card.card-red {
  border-left: 4px solid var(--brand-primary);
  background: linear-gradient(135deg, rgba(230,57,70,0.08) 0%, var(--brand-card-bg) 100%);
}
.promo-card.card-blue {
  border-left: 4px solid var(--brand-secondary);
  background: linear-gradient(135deg, rgba(51,102,255,0.08) 0%, var(--brand-card-bg) 100%);
}
.promo-card.card-green {
  border-left: 4px solid var(--brand-accent);
  background: linear-gradient(135deg, rgba(0,200,83,0.08) 0%, var(--brand-card-bg) 100%);
}

.promo-card-tag {
  font-size: 10px;
  font-weight: 700;
  font-family: var(--brand-head-font);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.card-red .promo-card-tag { color: var(--brand-primary); }
.card-blue .promo-card-tag { color: var(--brand-secondary); }
.card-green .promo-card-tag { color: var(--brand-accent); }

.promo-card-title {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--brand-text);
}

.promo-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* ============================================================
   SECTION COMMON STYLES
   ============================================================ */
.section {
  padding: 80px 0;
}

.section-alt {
  background: rgba(255,255,255,0.02);
}

.section-dark {
  background: #080810;
}

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

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--brand-head-font);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brand-primary);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(24px, 2.5vw, 38px);
  color: var(--brand-text);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--brand-muted);
  max-width: 600px;
  line-height: 1.6;
}

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

/* ============================================================
   BONUS SECTION — Two Column Asymmetric
   ============================================================ */
.bonus-section .bonus-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.bonus-main-card {
  background: linear-gradient(135deg, #1a1a2e, #12122a);
  border: 1px solid rgba(230,57,70,0.25);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.bonus-main-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,57,70,0.15), transparent 70%);
  pointer-events: none;
}

.bonus-amount-display {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 72px);
  color: var(--brand-accent);
  line-height: 1;
  margin-bottom: 8px;
}

.bonus-amount-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  margin-bottom: 24px;
}

.bonus-terms-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.bonus-term-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.bonus-term-item .term-label {
  font-weight: 700;
  color: var(--brand-text);
  min-width: 120px;
  flex-shrink: 0;
}

.bonus-sidebar-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mini-bonus-card {
  background: var(--brand-card-bg);
  border-radius: 14px;
  padding: 20px;
  border: 1px solid var(--brand-border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.mini-bonus-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.mini-bonus-card.border-blue { border-left: 3px solid var(--brand-secondary); }
.mini-bonus-card.border-green { border-left: 3px solid var(--brand-accent); }
.mini-bonus-card.border-red { border-left: 3px solid var(--brand-primary); }

.mini-bonus-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.mini-bonus-title {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 6px;
  color: var(--brand-text);
}

.mini-bonus-desc {
  font-size: 13px;
  color: var(--brand-muted);
  line-height: 1.5;
}

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

.game-category-card {
  background: var(--brand-card-bg);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--brand-border);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.game-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}

.game-category-card.glow-red { border-color: rgba(230,57,70,0.3); }
.game-category-card.glow-blue { border-color: rgba(51,102,255,0.3); }
.game-category-card.glow-green { border-color: rgba(0,200,83,0.3); }

.game-card-visual {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  position: relative;
  overflow: hidden;
}

.game-card-visual.bg-red {
  background: linear-gradient(135deg, rgba(230,57,70,0.25), rgba(230,57,70,0.05));
}
.game-card-visual.bg-blue {
  background: linear-gradient(135deg, rgba(51,102,255,0.25), rgba(51,102,255,0.05));
}
.game-card-visual.bg-green {
  background: linear-gradient(135deg, rgba(0,200,83,0.25), rgba(0,200,83,0.05));
}
.game-card-visual.bg-purple {
  background: linear-gradient(135deg, rgba(155,89,182,0.25), rgba(155,89,182,0.05));
}
.game-card-visual.bg-orange {
  background: linear-gradient(135deg, rgba(230,126,34,0.25), rgba(230,126,34,0.05));
}
.game-card-visual.bg-teal {
  background: linear-gradient(135deg, rgba(26,188,156,0.25), rgba(26,188,156,0.05));
}

.game-card-body {
  padding: 20px;
}

.game-card-title {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--brand-text);
}

.game-card-count {
  font-size: 12px;
  font-weight: 700;
  font-family: var(--brand-head-font);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.glow-red .game-card-count { color: var(--brand-primary); }
.glow-blue .game-card-count { color: var(--brand-secondary); }
.glow-green .game-card-count { color: var(--brand-accent); }

.game-card-desc {
  font-size: 13px;
  color: var(--brand-muted);
  line-height: 1.5;
}

/* ============================================================
   PAYMENTS SECTION — Full Width Single Column
   ============================================================ */
.payments-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #0d0d1a 100%);
}

.payments-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.payments-text h2 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: clamp(24px, 2.5vw, 36px);
  margin-bottom: 16px;
  color: var(--brand-text);
}

.payments-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 14px;
}

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

.payment-method-card {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}
.payment-method-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-primary);
}

.payment-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.payment-name {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 4px;
  color: var(--brand-text);
}

.payment-speed {
  font-size: 11px;
  color: var(--brand-accent);
  font-weight: 600;
}

/* ============================================================
   SECURITY / LICENSING SECTION — Single Column Wide
   ============================================================ */
.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.security-card {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: transform var(--transition);
}
.security-card:hover {
  transform: translateY(-3px);
}

.security-icon {
  font-size: 40px;
  margin-bottom: 14px;
}

.security-title {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--brand-text);
}

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

/* ============================================================
   SUPPORT SECTION — Asymmetric 1/3 + 2/3
   ============================================================ */
.support-section-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}

.support-info h2 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: clamp(22px, 2vw, 32px);
  margin-bottom: 16px;
}

.support-info p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 16px;
}

.support-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.support-channel-card {
  background: var(--brand-card-bg);
  border-radius: 14px;
  padding: 24px;
  border: 1px solid var(--brand-border);
  transition: transform var(--transition), border-color var(--transition);
}
.support-channel-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-secondary);
}

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

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

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

/* ============================================================
   PROVIDERS SECTION — Full Width Scroll Row
   ============================================================ */
.providers-track {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.provider-badge {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  border-radius: 10px;
  padding: 14px 22px;
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  transition: border-color var(--transition), color var(--transition);
  white-space: nowrap;
}
.provider-badge:hover {
  border-color: var(--brand-primary);
  color: var(--brand-text);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  background: #080810;
}

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

.faq-item {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--brand-head-font);
  font-weight: 600;
  font-size: 14px;
  color: var(--brand-text);
  text-align: left;
  gap: 12px;
  transition: background var(--transition);
}
.faq-question:hover {
  background: rgba(255,255,255,0.04);
}
.faq-question:focus {
  outline: 2px solid var(--brand-primary);
  outline-offset: -2px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(230,57,70,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  font-size: 18px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

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

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  border-top: 1px solid var(--brand-border);
  padding-top: 16px;
}

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

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.final-cta-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #0d0d20 100%);
  border-top: 1px solid rgba(230,57,70,0.2);
  border-bottom: 1px solid rgba(230,57,70,0.2);
  padding: 80px 0;
}

.final-cta-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.final-cta-title {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--brand-text);
}

.final-cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  line-height: 1.6;
}

.final-cta-disclaimer {
  margin-top: 20px;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #080810;
  border-top: 1px solid var(--brand-border);
  padding: 60px 0 30px;
}

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

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

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

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

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

/* Security Logos Row */
.footer-security-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--brand-border);
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--brand-head-font);
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
}

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

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

/* Payment Methods */
.footer-payment-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.payment-badge {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--brand-head-font);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

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

.footer-legal-links a {
  font-size: 13px;
  color: var(--brand-muted);
  transition: color var(--transition);
}
.footer-legal-links a:hover {
  color: var(--brand-primary);
}

.footer-copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-align: right;
}

.footer-responsible-text {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  text-align: center;
  max-width: 900px;
  margin: 24px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--brand-border);
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #1a1a2e 0%, #0a0a1a 100%);
  border-bottom: 1px solid var(--brand-border);
}

.legal-page-hero h1 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 44px);
  color: var(--brand-text);
  margin-bottom: 12px;
}

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

.legal-content {
  padding: 60px 0 80px;
}

.legal-content h2 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 22px;
  color: var(--brand-text);
  margin: 40px 0 14px;
}

.legal-content h3 {
  font-family: var(--brand-head-font);
  font-weight: 600;
  font-size: 17px;
  color: var(--brand-text);
  margin: 28px 0 10px;
}

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

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

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

.legal-last-updated {
  display: inline-block;
  background: rgba(230,57,70,0.1);
  border: 1px solid rgba(230,57,70,0.2);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--brand-primary);
  font-weight: 600;
  margin-bottom: 32px;
}

/* ============================================================
   RESPONSIVE — MOBILE NAVIGATION
   ============================================================ */
@media (max-width: 992px) {
  .main-nav ul {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-nav-active ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--brand-header-bg);
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    border-bottom: 1px solid var(--brand-border);
    z-index: 999;
  }

  .mobile-nav-active ul li a {
    padding: 12px 16px;
    font-size: 15px;
    border-radius: 8px;
  }
}

/* ============================================================
   RESPONSIVE — LAYOUT ADJUSTMENTS
   ============================================================ */
@media (max-width: 1024px) {
  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0;
  }

  .hero-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .header-cta {
    display: none;
  }

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

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

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

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

  .hero-bonus-amount {
    font-size: 36px;
  }

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

  .footer-security-row {
    gap: 12px;
  }

  .security-badge {
    font-size: 11px;
    padding: 8px 12px;
  }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-red { color: var(--brand-primary); }
.text-blue { color: var(--brand-secondary); }
.text-green { color: var(--brand-accent); }
.text-muted { color: var(--brand-muted); }
.fw-bold { font-weight: 700; }
.font-head { font-family: var(--brand-head-font); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.text-center { text-align: center; }

/* No horizontal scroll */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}