/* ================================================
   PG Soft Nigeria – PG Soft Official Design Theme
   Inspired by pgsoft.com: deep space dark, violet
   purple accents, glassmorphism, neon glow effects
   ================================================ */

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

:root {
  /* PG Soft Brand Colours */
  --pg-purple:        #7C3AED;
  --pg-purple-light:  #9D4EDD;
  --pg-purple-bright: #A855F7;
  --pg-pink:          #EC4899;
  --pg-magenta:       #D946EF;
  --pg-gold:          #F59E0B;
  --pg-gold-light:    #FCD34D;
  --pg-teal:          #06B6D4;

  /* Gradient definitions */
  --grad-primary:   linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
  --grad-dark:      linear-gradient(180deg, #0D0B1F 0%, #130F2E 100%);
  --grad-card:      linear-gradient(145deg, rgba(124,58,237,0.18) 0%, rgba(236,72,153,0.08) 100%);
  --grad-hero:      linear-gradient(135deg, #0A0818 0%, #1A0A3C 40%, #2D0E5A 70%, #1A0A3C 100%);
  --grad-btn:       linear-gradient(135deg, #7C3AED 0%, #D946EF 100%);
  --grad-btn-hover: linear-gradient(135deg, #6D28D9 0%, #C026D3 100%);

  /* Background layers */
  --bg-base:    #0D0B1F;
  --bg-surface: #130F2E;
  --bg-card:    #1C1640;
  --bg-card2:   #221A4A;
  --bg-input:   #2A2060;

  /* Text */
  --text-primary:  #FFFFFF;
  --text-secondary: rgba(255,255,255,0.72);
  --text-muted:    rgba(255,255,255,0.45);
  --text-dim:      rgba(255,255,255,0.28);

  /* Borders */
  --border:        rgba(124,58,237,0.25);
  --border-light:  rgba(255,255,255,0.08);
  --border-purple: rgba(124,58,237,0.45);

  /* Glow / shadows */
  --glow-purple:   0 0 30px rgba(124,58,237,0.35), 0 0 60px rgba(124,58,237,0.15);
  --glow-pink:     0 0 20px rgba(236,72,153,0.3);
  --shadow-card:   0 4px 24px rgba(0,0,0,0.45), 0 1px 0 rgba(255,255,255,0.04) inset;
  --shadow-hover:  0 8px 40px rgba(124,58,237,0.4), 0 4px 16px rgba(0,0,0,0.5);

  /* Radius */
  --radius:    14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Misc */
  --font:       'Inter', 'Segoe UI', Arial, sans-serif;
  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
  --header-h:   64px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.65;
  min-height: 100vh;
  /* Subtle grid noise texture */
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(124,58,237,0.18) 0%, transparent 60%);
}

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

a { color: var(--pg-purple-bright); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--pg-pink); text-decoration: none; }

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

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: rgba(13,11,31,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid var(--border-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 12px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--grad-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  color: #fff;
  box-shadow: 0 0 16px rgba(124,58,237,0.5);
  letter-spacing: -0.5px;
}

.logo-text {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.3px;
}
.logo-text span { 
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-sub { font-size: 10px; color: var(--text-muted); font-weight: 400; letter-spacing: 0.3px; }

.primary-nav { display: flex; align-items: center; gap: 2px; }
.primary-nav a {
  color: var(--text-secondary);
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.2px;
}
.primary-nav a:hover,
.primary-nav a.active {
  color: #fff;
  background: rgba(124,58,237,0.18);
}

.nav-cta {
  background: var(--grad-btn) !important;
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  margin-left: 8px;
  box-shadow: 0 0 20px rgba(124,58,237,0.4) !important;
  letter-spacing: 0.2px;
  transition: var(--transition) !important;
}
.nav-cta:hover {
  background: var(--grad-btn-hover) !important;
  box-shadow: 0 0 30px rgba(124,58,237,0.6) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: var(--grad-hero);
  padding: 72px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Animated orb glows */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 40%, rgba(124,58,237,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 75% 60%, rgba(236,72,153,0.16) 0%, transparent 55%),
    radial-gradient(ellipse 40% 30% at 50% 100%, rgba(217,70,239,0.12) 0%, transparent 50%);
  pointer-events: none;
}

/* Subtle grid overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; }

.hero h1 {
  font-size: clamp(26px, 5.5vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.hero h1 em {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none !important;
  border: none;
  letter-spacing: 0.2px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--grad-btn);
  color: #fff;
  box-shadow: 0 0 24px rgba(124,58,237,0.4);
}
.btn-primary:hover {
  background: var(--grad-btn-hover);
  color: #fff;
  box-shadow: 0 0 36px rgba(124,58,237,0.6);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: var(--pg-purple-bright);
  background: rgba(124,58,237,0.15);
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm { padding: 8px 18px; font-size: 12.5px; }

.btn-green {
  background: linear-gradient(135deg, #059669 0%, #10B981 100%);
  color: #fff;
  box-shadow: 0 0 16px rgba(16,185,129,0.3);
}
.btn-green:hover {
  background: linear-gradient(135deg, #047857 0%, #059669 100%);
  color: #fff;
  box-shadow: 0 0 24px rgba(16,185,129,0.5);
  transform: translateY(-1px);
}

/* Dark-surface outline variant (for light card backgrounds) */
.btn-outline-dark {
  background: transparent;
  color: var(--pg-purple);
  border: 1.5px solid var(--border-purple);
}
.btn-outline-dark:hover {
  background: rgba(124,58,237,0.08);
  color: var(--pg-purple-bright);
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: linear-gradient(90deg, rgba(124,58,237,0.35) 0%, rgba(217,70,239,0.25) 50%, rgba(124,58,237,0.35) 100%);
  border-top: 1px solid var(--border-purple);
  border-bottom: 1px solid var(--border-purple);
  padding: 18px 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(124,58,237,0.12) 0%, transparent 70%);
}

.stats-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.stat-item { text-align: center; color: #fff; }
.stat-number {
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 3px;
  font-weight: 500;
}

/* ============================================================
   SECTION WRAPPERS
   ============================================================ */
.section { padding: 56px 0; }
.section-alt {
  background: rgba(19,15,46,0.7);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.section-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.section-title-wrap { margin-bottom: 28px; }
.section-sub { font-size: 14px; color: var(--text-muted); }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 12px;
  flex-wrap: wrap;
}
.view-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--pg-purple-bright);
  white-space: nowrap;
}
.view-all:hover { color: var(--pg-pink); }

/* ============================================================
   FILTER BAR
   ============================================================ */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.filter-btn {
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  background: rgba(124,58,237,0.06);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--pg-purple-bright);
  color: #fff;
  background: rgba(124,58,237,0.2);
  box-shadow: 0 0 12px rgba(124,58,237,0.2);
}

/* ============================================================
   GAME CARDS
   ============================================================ */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(182px, 1fr));
  gap: 16px;
}

.game-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
}
.game-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-card);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
  z-index: 0;
}
.game-card:hover {
  border-color: var(--border-purple);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.game-card:hover::before { opacity: 1; }

.game-thumb {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(145deg, #1C1640 0%, #2D1670 50%, #1A0A3C 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  position: relative;
  overflow: hidden;
}
.game-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(124,58,237,0.25) 0%, transparent 60%);
}

.game-thumb-inner { text-align: center; position: relative; z-index: 1; }
.game-thumb-label { font-size: 10px; color: rgba(255,255,255,0.5); margin-top: 4px; font-weight: 500; letter-spacing: 0.5px; }

.rtp-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
  color: var(--pg-gold-light);
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 5px;
  border: 1px solid rgba(245,158,11,0.3);
  z-index: 2;
  letter-spacing: 0.3px;
}

.game-card-body {
  padding: 12px 13px 13px;
  position: relative;
  z-index: 1;
}

.game-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 7px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.1px;
}

.game-meta { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 9px; }

.badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.badge-high   { background: rgba(217,70,239,0.18); color: #E879F9; border: 1px solid rgba(217,70,239,0.3); }
.badge-medium { background: rgba(245,158,11,0.15); color: #FCD34D; border: 1px solid rgba(245,158,11,0.25); }
.badge-low    { background: rgba(6,182,212,0.15);  color: #22D3EE; border: 1px solid rgba(6,182,212,0.25); }
.badge-new    { background: var(--grad-primary); color: #fff; border: none; }

.game-card-btns { display: flex; gap: 6px; }
.game-card-btns .btn { flex: 1; font-size: 12px; padding: 7px 8px; text-align: center; justify-content: center; }

/* ============================================================
   CASINO CARDS
   ============================================================ */
.casino-list { display: flex; flex-direction: column; gap: 16px; }

.casino-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  padding: 22px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.casino-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--grad-primary);
}
.casino-card:hover {
  border-color: var(--border-purple);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.casino-rank {
  font-size: 30px;
  font-weight: 900;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 36px;
  line-height: 1;
}

.casino-logo {
  width: 80px;
  min-width: 80px;
  height: 80px;
  background: linear-gradient(145deg, var(--bg-card2), #311870);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  font-weight: 700;
  border: 1px solid var(--border);
}

.casino-info { flex: 1; min-width: 0; }
.casino-name { font-size: 17px; font-weight: 800; margin-bottom: 4px; color: var(--text-primary); }
.casino-bonus { font-size: 15px; font-weight: 700; margin-bottom: 4px; background: var(--grad-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.casino-bonus-detail { font-size: 13px; color: var(--text-muted); margin-bottom: 9px; }

.casino-features { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.casino-features li {
  font-size: 11.5px;
  background: rgba(124,58,237,0.12);
  border: 1px solid var(--border);
  padding: 3px 9px;
  border-radius: 4px;
  color: var(--text-secondary);
}
.casino-features li::before { content: '✓ '; color: #10B981; }
.casino-btns { display: flex; gap: 8px; flex-wrap: wrap; }

/* ============================================================
   RTP TABLE
   ============================================================ */
.rtp-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border-light); }

table { width: 100%; border-collapse: collapse; font-size: 14px; }
thead {
  background: linear-gradient(90deg, #1C1640 0%, #2D1670 100%);
  border-bottom: 1px solid var(--border-purple);
}
thead th {
  padding: 13px 16px;
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--text-secondary);
  font-weight: 700;
}

tbody tr { border-bottom: 1px solid var(--border-light); transition: background var(--transition); }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: rgba(124,58,237,0.08); }
tbody td { padding: 12px 16px; color: var(--text-secondary); }
tbody td:first-child { color: var(--text-primary); font-weight: 600; }

.rtp-val {
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   CATEGORY CARDS
   ============================================================ */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }

.cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-card);
  opacity: 0;
  transition: opacity var(--transition);
}
.cat-card:hover {
  border-color: var(--border-purple);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  text-decoration: none;
}
.cat-card:hover::before { opacity: 1; }

.cat-icon { font-size: 34px; margin-bottom: 10px; position: relative; z-index: 1; }
.cat-name { font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 5px; position: relative; z-index: 1; letter-spacing: -0.2px; }
.cat-desc { font-size: 12px; color: var(--text-muted); line-height: 1.4; position: relative; z-index: 1; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 3px; }

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-card);
  transition: border-color var(--transition);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 20px;
  text-align: left;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background var(--transition);
  font-family: var(--font);
}
.faq-question:hover { background: rgba(124,58,237,0.08); }

.faq-icon { color: var(--pg-purple-bright); font-size: 20px; flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open { border-color: var(--border-purple); }
.faq-item.open .faq-question { background: rgba(124,58,237,0.1); }

.faq-answer { display: none; padding: 0 20px 16px; font-size: 14px; color: var(--text-secondary); line-height: 1.75; }
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  background: rgba(19,15,46,0.8);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 13px;
}
.breadcrumb ol { list-style: none; display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }
.breadcrumb li { display: flex; align-items: center; gap: 6px; color: var(--text-muted); }
.breadcrumb li:not(:last-child)::after { content: '›'; color: var(--text-dim); }
.breadcrumb a { color: var(--pg-purple-bright); }
.breadcrumb a:hover { color: var(--pg-pink); }
.breadcrumb li:last-child { color: var(--text-secondary); }

/* ============================================================
   GAME HERO (individual game page top)
   ============================================================ */
.game-hero {
  background: linear-gradient(135deg, #0A0818 0%, #1A0A3C 50%, #2D0E5A 100%);
  padding: 36px 0;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}
.game-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 20% 50%, rgba(124,58,237,0.2) 0%, transparent 60%);
  pointer-events: none;
}

.game-hero-inner { display: flex; gap: 28px; align-items: flex-start; position: relative; z-index: 1; }

.game-big-thumb {
  width: 150px;
  min-width: 150px;
  height: 150px;
  background: linear-gradient(145deg, #1C1640, #311870);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 70px;
  border: 1px solid var(--border-purple);
  box-shadow: 0 0 30px rgba(124,58,237,0.25);
}

.game-hero-info { flex: 1; }
.game-hero-info h1 {
  font-size: clamp(22px, 4vw, 34px);
  color: #fff;
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.game-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.tag {
  background: rgba(255,255,255,0.07);
  color: var(--text-secondary);
  font-size: 12px;
  padding: 4px 11px;
  border-radius: 4px;
  border: 1px solid var(--border-light);
  font-weight: 500;
}
.tag-rtp {
  background: rgba(245,158,11,0.15);
  color: var(--pg-gold-light);
  border-color: rgba(245,158,11,0.3);
  font-weight: 700;
}

.game-sa-tip {
  background: rgba(124,58,237,0.12);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  backdrop-filter: blur(6px);
}
.game-sa-tip strong { color: var(--pg-gold-light); }

/* ============================================================
   GAME PAGE LAYOUT
   ============================================================ */
.game-layout {
  display: grid;
  grid-template-columns: 1fr 288px;
  gap: 28px;
  align-items: start;
  padding: 32px 0;
}

.game-stats-box {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  overflow: hidden;
  position: sticky;
  top: calc(var(--header-h) + 12px);
}

.stats-box-title {
  background: linear-gradient(90deg, #1C1640, #2D1670);
  color: #fff;
  padding: 13px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border-bottom: 1px solid var(--border-purple);
}

.stats-box-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 16px;
  border-bottom: 1px solid var(--border-light);
  font-size: 13px;
}
.stats-box-row:last-child { border-bottom: none; }
.stats-box-label { color: var(--text-muted); font-size: 12px; }
.stats-box-val { font-weight: 700; color: var(--text-primary); }
.stats-box-cta { padding: 16px; display: flex; flex-direction: column; gap: 8px; }

.game-content h2 {
  font-size: 20px;
  font-weight: 800;
  margin: 28px 0 12px;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}
.game-content h3 { font-size: 16px; font-weight: 700; margin: 20px 0 8px; color: var(--text-primary); }
.game-content p {
  font-size: 15px;
  line-height: 1.78;
  margin-bottom: 14px;
  color: var(--text-secondary);
}

/* ============================================================
   PLAY CTA BLOCK
   ============================================================ */
.play-cta-block {
  background: linear-gradient(135deg, #1C1640 0%, #2D1670 100%);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius);
  padding: 22px;
  margin: 28px 0;
}
.play-cta-block h3 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 14px; }

.play-cta-casino {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  gap: 12px;
}
.play-cta-casino:last-child { border-bottom: none; padding-bottom: 0; }
.play-cta-casino-info { flex: 1; }
.play-cta-casino-name { color: #fff; font-weight: 700; font-size: 14px; }
.play-cta-casino-bonus {
  font-size: 12.5px;
  font-weight: 600;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   RELATED SLOTS
   ============================================================ */
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }

/* ============================================================
   QUICKLINKS
   ============================================================ */
.quicklinks-block {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 18px;
  margin-top: 16px;
}

.quicklinks-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quicklinks-block a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition);
  font-weight: 500;
}
.quicklinks-block a:last-child { border-bottom: none; }
.quicklinks-block a:hover { color: var(--pg-purple-bright); }
.quicklinks-block a::before { content: '→'; color: var(--pg-purple-bright); font-weight: 700; }

/* ============================================================
   PROVIDER INFO GRID
   ============================================================ */
.provider-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0; }

.info-box {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 18px;
  transition: var(--transition);
}
.info-box:hover { border-color: var(--border-purple); }

.info-box-label {
  font-size: 10.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.8px;
  margin-bottom: 5px;
  font-weight: 600;
}
.info-box-val {
  font-size: 18px;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}

/* ============================================================
   PAGE CONTENT (provider, casinos, faq body)
   ============================================================ */
.page-content { max-width: 840px; }

.page-content h2 {
  font-size: 20px;
  font-weight: 800;
  margin: 32px 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-primary);
  letter-spacing: -0.3px;
  position: relative;
}
.page-content h2::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 40px; height: 2px;
  background: var(--grad-primary);
  border-radius: 2px;
}

.page-content h3 { font-size: 17px; font-weight: 700; margin: 20px 0 8px; color: var(--text-primary); }
.page-content p { font-size: 15px; line-height: 1.78; margin-bottom: 14px; color: var(--text-secondary); }
.page-content ul, .page-content ol { margin: 10px 0 14px 20px; font-size: 15px; line-height: 1.75; color: var(--text-secondary); }
.page-content li { margin-bottom: 7px; }
.page-content strong { color: var(--text-primary); }

/* ============================================================
   ARTICLES
   ============================================================ */
.article-header {
  background: linear-gradient(135deg, #0A0818 0%, #1A0A3C 50%, #2D0E5A 100%);
  padding: 40px 0;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}
.article-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 30% 50%, rgba(124,58,237,0.18) 0%, transparent 60%);
}
.article-header > * { position: relative; z-index: 1; }

.article-meta { font-size: 12.5px; color: var(--text-muted); margin-bottom: 12px; }
.article-meta span { margin-right: 14px; font-weight: 500; }
.article-header h1 {
  font-size: clamp(20px, 4vw, 36px);
  color: #fff;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.toc {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 24px 0;
}
.toc-title {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-primary);
}
.toc ol { margin-left: 18px; }
.toc li { font-size: 14px; margin-bottom: 5px; }
.toc a { color: var(--pg-purple-bright); }
.toc a:hover { color: var(--pg-pink); }

.article-layout {
  display: grid;
  grid-template-columns: 1fr 264px;
  gap: 32px;
  align-items: start;
  padding: 36px 0;
}
.article-sidebar { position: sticky; top: calc(var(--header-h) + 12px); }

.article-layout > article h2 {
  font-size: 19px;
  font-weight: 800;
  margin: 28px 0 12px;
  color: var(--text-primary);
  letter-spacing: -0.3px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--border-light);
  position: relative;
}
.article-layout > article h2::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 36px; height: 2px;
  background: var(--grad-primary);
}
.article-layout > article p,
.article-layout > article li { font-size: 15px; line-height: 1.78; color: var(--text-secondary); margin-bottom: 12px; }
.article-layout > article ul,
.article-layout > article ol { margin-left: 20px; margin-bottom: 14px; }
.article-layout > article strong { color: var(--text-primary); }

/* ============================================================
   SIDEBAR BOXES
   ============================================================ */
.sidebar-box {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 14px;
}

.sidebar-box-title {
  background: linear-gradient(90deg, #1C1640, #2D1670);
  border-bottom: 1px solid var(--border-purple);
  color: #fff;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.sidebar-box-content { padding: 12px 14px; }
.sidebar-box-content a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  padding: 7px 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition);
  font-weight: 500;
}
.sidebar-box-content a:last-child { border-bottom: none; }
.sidebar-box-content a:hover { color: var(--pg-purple-bright); }

/* ============================================================
   BONUS CARDS
   ============================================================ */
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-primary);
}
.bonus-card:hover {
  border-color: var(--border-purple);
  box-shadow: 0 8px 32px rgba(124,58,237,0.2);
}

.bonus-casino-name { font-size: 16px; font-weight: 800; margin-bottom: 4px; color: var(--text-primary); }
.bonus-headline {
  font-size: 22px;
  font-weight: 900;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}
.bonus-detail { font-size: 13.5px; color: var(--text-muted); margin-bottom: 8px; }
.bonus-terms { font-size: 11.5px; color: var(--text-dim); margin-top: 8px; }

.bonus-badges { display: flex; gap: 6px; flex-wrap: wrap; margin: 8px 0; }
.bonus-badge {
  background: rgba(124,58,237,0.12);
  border: 1px solid var(--border);
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 4px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ============================================================
   NOTICE / DISCLAIMER
   ============================================================ */
.resp-notice {
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin: 20px 0;
  line-height: 1.65;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #080616;
  border-top: 1px solid var(--border-light);
  color: var(--text-secondary);
}

.footer-disclaimer {
  font-size: 12px;
  color: var(--text-dim);
  padding: 20px 0 16px;
  line-height: 1.65;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 0;
}

.footer-main { padding: 40px 0 28px; }

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 28px; }

.footer-col h4 {
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: var(--text-muted);
  font-size: 13px;
  text-decoration: none;
  transition: color var(--transition);
  font-weight: 500;
}
.footer-col ul li a:hover { color: var(--pg-purple-bright); }

.footer-brand-desc { font-size: 13px; line-height: 1.65; margin: 10px 0 16px; color: var(--text-muted); }

.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badge {
  background: rgba(124,58,237,0.12);
  border: 1px solid var(--border);
  padding: 5px 11px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding: 16px 0;
  font-size: 12px;
  color: var(--text-dim);
}
.footer-bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* ============================================================
   404 PAGE
   ============================================================ */
.page-404 {
  text-align: center;
  padding: 100px 20px;
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page-404 .err-num {
  font-size: 108px;
  font-weight: 900;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  filter: drop-shadow(0 0 40px rgba(124,58,237,0.5));
}
.page-404 h1 { font-size: 26px; font-weight: 800; margin: 14px 0 16px; color: var(--text-primary); }
.page-404 p { color: var(--text-muted); margin-bottom: 28px; font-size: 16px; }

/* ============================================================
   INLINE STYLE OVERRIDES — keep dark-theme for any inline
   styles added by the generator
   ============================================================ */
[style*="color:var(--text-muted)"],
[style*="color: var(--text-muted)"] { color: var(--text-muted) !important; }

[style*="color:#333"] { color: var(--text-secondary) !important; }

/* Generator uses inline color:#333 for some content text */
p, li { color: inherit; }

/* Stats box inline val color fix */
.stats-box-val[style*="color:var(--pg-orange)"] {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Inline style color:var(--pg-orange) → purple gradient */
[style*="color:var(--pg-orange)"] { color: var(--pg-purple-bright) !important; }

/* "View All" link default */
a.view-all, .view-all { color: var(--pg-purple-bright); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .game-layout        { grid-template-columns: 1fr; }
  .game-stats-box     { position: static; }
  .article-layout     { grid-template-columns: 1fr; }
  .article-sidebar    { position: static; }
  .footer-grid        { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }

  .primary-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(13,11,31,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 12px;
    gap: 2px;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    z-index: 199;
  }
  .primary-nav.open { display: flex; }
  .hamburger         { display: flex; }

  .game-hero-inner   { flex-direction: column; }
  .casino-card       { flex-direction: column; }
  .casino-logo       { width: 60px; min-width: 60px; height: 60px; }
  .related-grid      { grid-template-columns: repeat(2, 1fr); }
  .provider-info-grid{ grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr; }
  .stats-inner       { gap: 14px; }
  .stat-number       { font-size: 20px; }

  .hero { padding: 48px 0 40px; }
}

@media (max-width: 480px) {
  .game-grid    { grid-template-columns: repeat(2, 1fr); }
  .cat-grid     { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .hero         { padding: 40px 0 32px; }
  .hero h1      { letter-spacing: -0.5px; }
}
