/* ============================================================
   NovaJackpot — Main Stylesheet
   Dark cosmic theme: deep purple / navy / gold
   ============================================================ */

/* Google Fonts */
@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:     #6B2FA0;
  --brand-secondary:   #1A0E2E;
  --brand-accent:      #FFD700;
  --brand-bg:          #0D0620;
  --brand-text:        #FFFFFF;
  --brand-header-bg:   #1A0E2E;
  --brand-btn-bg:      #FF6B2C;
  --brand-btn-text:    #FFFFFF;
  --brand-btn-radius:  24px;
  --brand-head-font:   'Montserrat', sans-serif;
  --brand-body-font:   'Open Sans', sans-serif;
  --brand-head-weight: 800;
  --brand-body-size:   14px;
  --brand-card-bg:     #1E1035;
  --brand-pill-bg:     #2A1550;
  --transition:        0.2s 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.6;
  min-height: 100vh;
  overflow-x: hidden;
}

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

a:hover {
  color: #FFE44D;
}

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

ul {
  list-style: none;
}

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

/* ============================================================
   Skip to Content (Accessibility)
   ============================================================ */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--brand-accent);
  color: var(--brand-secondary);
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 700;
  z-index: 99999;
  transition: top var(--transition);
}

.skip-to-content:focus {
  top: 10px;
}

/* ============================================================
   Header & Navigation
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--brand-header-bg);
  border-bottom: 1px solid rgba(107, 47, 160, 0.4);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

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

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

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

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

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

.main-nav ul li a {
  display: block;
  padding: 8px 16px;
  color: var(--brand-text);
  font-family: var(--brand-head-font);
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  background: rgba(107, 47, 160, 0.5);
  color: var(--brand-accent);
}

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

/* Mobile burger */
.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--brand-text);
  font-size: 22px;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background var(--transition);
  min-width: 44px;
  min-height: 44px;
}

.mobile-menu-btn:hover {
  background: rgba(107, 47, 160, 0.4);
}

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

/* ============================================================
   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;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-align: center;
  white-space: nowrap;
  min-height: 44px;
  line-height: 1.4;
}

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

.btn-primary {
  background: linear-gradient(135deg, #FF6B2C 0%, #FF3D00 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(255, 107, 44, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 44, 0.55);
  color: #FFFFFF;
}

.btn-secondary {
  background: linear-gradient(135deg, #6B2FA0 0%, #4A1870 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(107, 47, 160, 0.4);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(107, 47, 160, 0.55);
  color: #FFFFFF;
}

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

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.btn-hero {
  display: inline-block;
  padding: 16px 40px;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 18px;
  background: linear-gradient(135deg, #FF6B2C 0%, #FF3D00 100%);
  color: #FFFFFF;
  box-shadow: 0 6px 30px rgba(255, 107, 44, 0.5);
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  min-height: 56px;
  line-height: 1.4;
  text-align: center;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(255, 107, 44, 0.65);
  color: #FFFFFF;
}

.btn-cta {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 16px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #1A0E2E;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  min-height: 48px;
  line-height: 1.4;
  text-align: center;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.55);
  color: #1A0E2E;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 13px;
  min-height: 36px;
}

/* ============================================================
   Floating CTA (MANDATORY — always visible)
   ============================================================ */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  padding: 14px 28px;
  background: linear-gradient(135deg, #FF6B2C 0%, #FF3D00 100%);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  font-family: var(--brand-head-font);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(255, 107, 44, 0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 44, 0.65);
  color: #fff;
}

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

.floating-cta::before {
  content: '🎰';
  font-size: 16px;
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 60px;
  overflow: hidden;
  background: linear-gradient(135deg, #0D0620 0%, #1A0E2E 40%, #2D1060 70%, #0D0620 100%);
}

.hero-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #6B2FA0, transparent);
  top: -100px;
  right: -100px;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #FF6B2C, transparent);
  bottom: -80px;
  left: -80px;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #FFD700, transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.15;
}

.hero-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.8) 1px, transparent 1px),
    radial-gradient(circle, rgba(255,255,255,0.5) 1px, transparent 1px),
    radial-gradient(circle, rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 200px 200px, 150px 150px, 100px 100px;
  background-position: 0 0, 50px 70px, 120px 30px;
  opacity: 0.4;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(107, 47, 160, 0.4);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-accent);
  margin-bottom: 24px;
  font-family: var(--brand-head-font);
}

.hero-badge::before {
  content: '⭐';
}

.hero-section h1 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-section h1 span {
  background: linear-gradient(135deg, #FFD700, #FF6B2C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

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

.hero-stat-value {
  display: block;
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--brand-accent);
  line-height: 1.2;
}

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

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* ============================================================
   Section: Shared
   ============================================================ */
.section-pad {
  padding: 80px 0;
}

.section-pad-sm {
  padding: 50px 0;
}

.section-title {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #FFFFFF;
  margin-bottom: 12px;
  line-height: 1.25;
}

.section-title span {
  background: linear-gradient(135deg, #FFD700, #FF6B2C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

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

.section-header.centered .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   Feature Grid
   ============================================================ */
.features-section {
  background: linear-gradient(180deg, #0D0620 0%, #130828 100%);
}

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

.feature-card {
  background: var(--brand-card-bg);
  border: 1px solid rgba(107, 47, 160, 0.3);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(107, 47, 160, 0.7);
  box-shadow: 0 8px 30px rgba(107, 47, 160, 0.25);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.feature-card h3 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 1rem;
  color: #FFFFFF;
  margin-bottom: 10px;
}

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

/* ============================================================
   Games Section
   ============================================================ */
.games-section {
  background: #0D0620;
}

.games-section-alt {
  background: linear-gradient(180deg, #130828 0%, #0D0620 100%);
}

.pill-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.pill {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  font-family: var(--brand-head-font);
  font-size: 13px;
  font-weight: 600;
  background: var(--brand-pill-bg);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(107, 47, 160, 0.3);
  transition: all var(--transition);
  cursor: default;
  min-height: 36px;
  line-height: 1.4;
}

.pill.active,
.pill:hover {
  background: var(--brand-primary);
  color: #FFFFFF;
  border-color: var(--brand-primary);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.game-card {
  background: var(--brand-card-bg);
  border: 1px solid rgba(107, 47, 160, 0.2);
  border-radius: 14px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(107, 47, 160, 0.3);
}

.game-card-thumb {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  position: relative;
  overflow: hidden;
}

.game-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.game-card-name {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 13px;
  color: #FFFFFF;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.game-card-rtp {
  font-size: 11px;
  color: var(--brand-accent);
  font-weight: 600;
  float: right;
}

/* Gradient thumbs for game cards */
.thumb-slots    { background: linear-gradient(135deg, #3D1080, #6B2FA0); }
.thumb-live     { background: linear-gradient(135deg, #1A2E6B, #2F4FA0); }
.thumb-betting  { background: linear-gradient(135deg, #1A4E2E, #2FA060); }
.thumb-jackpot  { background: linear-gradient(135deg, #6B4A00, #A0760F); }
.thumb-table    { background: linear-gradient(135deg, #6B1A1A, #A02F2F); }
.thumb-crash    { background: linear-gradient(135deg, #1A4A6B, #2F7CA0); }

/* ============================================================
   Bonus / Promo Section
   ============================================================ */
.bonus-section {
  background: linear-gradient(135deg, #1A0E2E 0%, #2D1060 50%, #1A0E2E 100%);
  position: relative;
  overflow: hidden;
}

.bonus-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(107, 47, 160, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.bonus-card {
  background: rgba(13, 6, 32, 0.6);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}

.bonus-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 215, 0, 0.45);
}

.bonus-card-badge {
  display: inline-block;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #1A0E2E;
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bonus-card h3 {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 1.5rem;
  color: #FFFFFF;
  margin-bottom: 8px;
  line-height: 1.2;
}

.bonus-card h3 span {
  background: linear-gradient(135deg, #FFD700, #FF6B2C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bonus-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
  line-height: 1.6;
}

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

/* ============================================================
   Payments Section
   ============================================================ */
.payments-section {
  background: #0D0620;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.payment-badge {
  background: var(--brand-card-bg);
  border: 1px solid rgba(107, 47, 160, 0.3);
  border-radius: 12px;
  padding: 14px 24px;
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  transition: border-color var(--transition), transform var(--transition);
}

.payment-badge:hover {
  border-color: var(--brand-accent);
  transform: translateY(-2px);
}

.payment-badge span {
  font-size: 1.2rem;
}

.payment-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.payment-info-card {
  background: var(--brand-card-bg);
  border: 1px solid rgba(107, 47, 160, 0.25);
  border-radius: 14px;
  padding: 24px 20px;
}

.payment-info-card h4 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 14px;
  color: var(--brand-accent);
  margin-bottom: 8px;
}

.payment-info-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* ============================================================
   Security / License Section
   ============================================================ */
.security-section {
  background: linear-gradient(180deg, #0D0620 0%, #130828 100%);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.security-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  background: var(--brand-card-bg);
  border: 1px solid rgba(107, 47, 160, 0.2);
  border-radius: 14px;
  padding: 28px 20px;
  transition: border-color var(--transition);
}

.security-item:hover {
  border-color: rgba(107, 47, 160, 0.55);
}

.security-icon {
  font-size: 2rem;
}

.security-item h4 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 14px;
  color: #FFFFFF;
}

.security-item p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

/* ============================================================
   Info / Text Sections
   ============================================================ */
.info-section {
  background: #0D0620;
}

.info-section-alt {
  background: linear-gradient(180deg, #130828 0%, #0D0620 100%);
}

.info-text-block h2 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.3;
}

.info-text-block h3 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--brand-accent);
  margin-bottom: 10px;
  margin-top: 28px;
}

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

.info-text-block ul {
  margin: 0 0 20px 0;
  padding-left: 4px;
}

.info-text-block ul li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  padding: 6px 0 6px 24px;
  position: relative;
  line-height: 1.6;
  border-bottom: 1px solid rgba(107, 47, 160, 0.15);
}

.info-text-block ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--brand-accent);
  font-weight: 700;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* ============================================================
   Mid-Page CTA Banner
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, #6B2FA0 0%, #4A1870 50%, #2D0F50 100%);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.15), transparent);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner h2 {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #FFFFFF;
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   FAQ Section
   ============================================================ */
.faq-section {
  background: #0D0620;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--brand-card-bg);
  border: 1px solid rgba(107, 47, 160, 0.25);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 20px 24px;
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 14px;
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background var(--transition);
  min-height: 44px;
}

.faq-question:hover {
  background: rgba(107, 47, 160, 0.2);
}

.faq-question::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--brand-accent);
  font-weight: 400;
  flex-shrink: 0;
  line-height: 1;
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

/* ============================================================
   Support Banner
   ============================================================ */
.support-bar {
  background: linear-gradient(135deg, #1A0E2E, #2D1060);
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(107, 47, 160, 0.3);
  border-bottom: 1px solid rgba(107, 47, 160, 0.3);
}

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

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

.support-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--brand-head-font);
  font-weight: 600;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

.support-badge span {
  font-size: 1.1rem;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: #06030F;
  border-top: 1px solid rgba(107, 47, 160, 0.3);
  padding: 60px 0 30px;
}

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

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

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

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

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: #FFFFFF;
}

/* Footer security / trust logos */
.footer-trust-bar {
  border-top: 1px solid rgba(107, 47, 160, 0.2);
  padding-top: 36px;
  margin-top: 12px;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

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

.trust-badge span {
  font-size: 1.1rem;
}

.age-restriction {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: #E53935;
  color: #FFFFFF;
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
}

/* Responsible gambling */
.rg-section {
  text-align: center;
  margin-bottom: 28px;
}

.rg-section p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 12px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

.rg-link {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
  transition: color var(--transition);
}

.rg-link:hover {
  color: #FFFFFF;
}

/* Footer legal links */
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 20px;
}

.footer-legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  padding: 4px 10px;
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: #FFFFFF;
}

.footer-legal .sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 12px;
}

.footer-copyright {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

/* ============================================================
   Legal / Inner Page Styles
   ============================================================ */
.legal-page {
  padding: 120px 0 80px;
  min-height: 80vh;
}

.legal-page h1 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #FFFFFF;
  margin-bottom: 12px;
}

.legal-last-updated {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(107, 47, 160, 0.3);
}

.legal-body h2 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--brand-accent);
  margin: 36px 0 12px;
}

.legal-body h3 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 24px 0 10px;
}

.legal-body p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: 16px;
}

.legal-body ul, .legal-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.legal-body ul {
  list-style: disc;
}

.legal-body ol {
  list-style: decimal;
}

.legal-body li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 8px;
}

.legal-body a {
  color: var(--brand-accent);
  text-decoration: underline;
}

.legal-body a:hover {
  color: #FFE44D;
}

/* ============================================================
   Responsive — Tablet (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

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

  .games-grid {
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  }
}

/* ============================================================
   Responsive — Mobile (max 992px) — Nav breakpoint
   ============================================================ */
@media (max-width: 992px) {
  .main-nav {
    position: relative;
  }

  .main-nav ul {
    display: none;
  }

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

  .main-nav.mobile-nav-active ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    background: var(--brand-header-bg);
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    gap: 4px;
    border-bottom: 2px solid rgba(107, 47, 160, 0.4);
    z-index: 1001;
  }

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

  .header-inner {
    flex-wrap: wrap;
  }

  .header-actions .btn:not(.btn-primary) {
    display: none;
  }
}

/* ============================================================
   Responsive — Mobile (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  .hero-section {
    min-height: 90vh;
    padding: 100px 20px 50px;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stat-divider {
    display: none;
  }

  .section-pad {
    padding: 60px 0;
  }

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

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

  .games-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }

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

  .cta-banner {
    padding: 40px 24px;
  }

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

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

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

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

  .btn-hero {
    width: 100%;
    max-width: 320px;
  }
}

/* ============================================================
   Responsive — Small phones (max 480px)
   ============================================================ */
@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

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

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

  .pill-filters {
    gap: 8px;
  }

  .pill {
    font-size: 12px;
    padding: 7px 14px;
  }

  .hero-stat-value {
    font-size: 1.3rem;
  }
}

/* ============================================================
   Utility Classes
   ============================================================ */
.text-accent { color: var(--brand-accent); }
.text-muted  { color: rgba(255, 255, 255, 0.55); }
.text-center { text-align: center; }
.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; }
.mb-48 { margin-bottom: 48px; }

.divider {
  border: none;
  border-top: 1px solid rgba(107, 47, 160, 0.25);
  margin: 48px 0;
}

/* Focus visible for all interactive elements */
*:focus-visible {
  outline: 2px solid var(--brand-accent);
  outline-offset: 3px;
}