/* ==========================================================================
   LUCKYGAMEPH OFFICIAL DESIGN SYSTEM
   Theme: Cyber-Emerald Luxe & Frosted Glass (Philippines 2026)
   Independent visual identity adhering to /website-design-guide
   Zero duplicate footprint with sister domains
   ========================================================================== */

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

:root {
  /* Surface & Base (Deep Emerald Obsidian) */
  --bg-dark: #06110f;
  --bg-deep: #030807;
  --bg-surface: #0a1f1b;
  --bg-card: #0e2b25;
  --bg-card-hover: #143831;
  --bg-glass: rgba(14, 43, 37, 0.75);
  
  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-emerald: rgba(0, 230, 118, 0.25);
  --border-gold: rgba(255, 215, 0, 0.35);

  /* Brand Accents (Cyber Emerald & Royal Gold) */
  --emerald-neon: #00e676;
  --emerald-bright: #69f0ae;
  --emerald-dark: #00a854;
  --emerald-gradient: linear-gradient(135deg, #69f0ae 0%, #00e676 50%, #00b0ff 100%);

  --gold-primary: #ffd700;
  --gold-light: #fff176;
  --gold-gradient: linear-gradient(135deg, #fff59d 0%, #ffd700 50%, #ff8f00 100%);

  --cyan-accent: #00e5ff;
  --red-accent: #ff5252;

  /* Typography */
  --text-white: #ffffff;
  --text-main: #f0fdf4;
  --text-body: #cbd5e1;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadows & Glow */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --shadow-emerald: 0 0 25px rgba(0, 230, 118, 0.25);
  --shadow-gold: 0 0 25px rgba(255, 215, 0, 0.25);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  padding-bottom: 76px;
  background: radial-gradient(circle at 50% 0%, #0d2822 0%, var(--bg-dark) 55%),
              linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-deep) 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

a {
  color: var(--emerald-bright);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--text-white);
}

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

/* ==========================================================================
   HEADER — Floating Frosted Pill Nav with Live Ticker
   ========================================================================== */

.top-bar-ticker {
  background: linear-gradient(90deg, #051a16 0%, #0b3028 50%, #051a16 100%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 6px 16px;
  font-size: 11.5px;
  color: var(--text-muted);
}

.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ticker-pulse {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--emerald-bright);
  font-weight: 600;
}

.ticker-dot {
  width: 8px;
  height: 8px;
  background-color: var(--emerald-neon);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--emerald-neon);
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 17, 15, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-emerald);
  padding: 12px 16px;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: none;
  list-style: none;
  align-items: center;
  gap: 22px;
}

@media (min-width: 992px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-body);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--emerald-neon);
  background: rgba(0, 230, 118, 0.08);
}

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

.btn-header-login {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: var(--radius-full);
}

.btn-header-login:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn-header-play {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  color: #03140f;
  background: var(--emerald-gradient);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(0, 230, 118, 0.35);
  letter-spacing: 0.3px;
}

.btn-header-play:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 230, 118, 0.5);
  color: #03140f;
}

/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */

.breadcrumbs {
  max-width: 1200px;
  margin: 14px auto 0 auto;
  padding: 0 16px;
  font-size: 12.5px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.breadcrumbs a {
  color: var(--text-muted);
}

.breadcrumbs a:hover {
  color: var(--emerald-bright);
}

/* ==========================================================================
   HOMEPAGE COMPOSITION: GAME-FIRST APPS & SHELF LAUNCHER (Layout #7 / #3)
   ========================================================================== */

.app-launcher-hero {
  max-width: 1200px;
  margin: 20px auto 30px auto;
  padding: 0 16px;
}

.hero-banner-card {
  position: relative;
  background: linear-gradient(135deg, #09211c 0%, #0d332b 50%, #051613 100%);
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.hero-banner-card::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

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

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.25fr 0.75fr;
  }
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 230, 118, 0.12);
  border: 1px solid rgba(0, 230, 118, 0.3);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--emerald-bright);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.hero-main-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4.5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-white);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.hero-main-title span {
  background: var(--emerald-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 620px;
}

.hero-actions-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.btn-hero-launch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--emerald-gradient);
  color: #03140f;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 20px rgba(0, 230, 118, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-hero-launch:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 230, 118, 0.55);
  color: #03140f;
}

.btn-hero-apk {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.btn-hero-apk:hover {
  background: rgba(255, 255, 255, 0.16);
  color: var(--emerald-bright);
}

.hero-trust-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--text-muted);
}

.metric-item svg {
  color: var(--emerald-neon);
}

.hero-promo-card {
  background: rgba(8, 26, 22, 0.9);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.promo-tag {
  display: inline-block;
  background: var(--gold-gradient);
  color: #1a1000;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 900;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.promo-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--gold-primary);
  margin-bottom: 6px;
}

.promo-desc {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.5;
  margin-bottom: 16px;
}

/* ==========================================================================
   RAPID 3-STEP ONBOARDING LAUNCHER
   ========================================================================== */

.onboarding-steps-band {
  max-width: 1200px;
  margin: 0 auto 36px auto;
  padding: 0 16px;
}

.steps-band-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.step-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: transform 0.2s, border-color 0.2s;
}

.step-card:hover {
  border-color: var(--border-emerald);
  transform: translateY(-2px);
}

.step-num-badge {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--emerald-neon);
  background: rgba(0, 230, 118, 0.12);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-body h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

.step-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ==========================================================================
   CATEGORY FILTER PILLS & GAME SHELF
   ========================================================================== */

.game-shelf-section {
  max-width: 1200px;
  margin: 0 auto 40px auto;
  padding: 0 16px;
}

.shelf-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .shelf-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.shelf-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 6px;
}

.shelf-sub {
  font-size: 14px;
  color: var(--text-muted);
}

.filter-pills-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-body);
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-pill:hover,
.filter-pill.active {
  background: rgba(0, 230, 118, 0.15);
  border-color: var(--emerald-neon);
  color: var(--emerald-bright);
}

/* ==========================================================================
   DESKTOP CONTAINER & READING LAYOUT
   ========================================================================== */

.main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px 48px 16px;
  width: 100%;
}

.layout-grid {
  max-width: 1020px;
  margin: 0 auto;
}

.article-body {
  color: var(--text-body);
  font-size: 15.5px;
  line-height: 1.7;
}

.article-body h2 {
  font-family: var(--font-heading);
  font-size: clamp(21px, 2.5vw, 25px);
  font-weight: 800;
  color: #ffffff;
  margin: 38px 0 16px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 230, 118, 0.2);
  line-height: 1.3;
}

.article-body h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--emerald-bright);
  margin: 26px 0 10px 0;
}

.article-body p {
  margin-bottom: 16px;
}

.article-body ul,
.article-body ol {
  margin: 14px 0 20px 22px;
}

.article-body li {
  margin-bottom: 8px;
}

/* Bento Header Card aliases */
.bento-header-card {
  background: linear-gradient(135deg, #09211c 0%, #0d3028 100%);
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-card);
}

.bento-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

@media (min-width: 600px) {
  .bento-metrics-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.tactical-playbook-section {
  background: rgba(10, 28, 24, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 24px;
  margin: 32px 0;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (min-width: 640px) {
  .game-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

@media (min-width: 1024px) {
  .game-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.game-tile {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.game-tile:hover {
  transform: translateY(-4px);
  border-color: var(--border-emerald);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.game-tile-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: #020807;
  overflow: hidden;
}

.game-tile-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.game-tile:hover .game-tile-thumb img {
  transform: scale(1.05);
}

.tile-badge-rtp {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  color: var(--emerald-neon);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 230, 118, 0.3);
}

.tile-badge-provider {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255, 215, 0, 0.9);
  color: #1a1000;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
}

.game-tile-body {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.game-tile-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

.game-tile-meta {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 12px;
  flex-grow: 1;
}

.game-tile-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.btn-tile-guide {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.btn-tile-guide:hover {
  color: var(--emerald-bright);
}

.btn-tile-play {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  color: #03140f;
  background: var(--emerald-gradient);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   INTERIOR PAGE: BENTO-GRID SPECS & FULL-WIDTH READABILITY
   ========================================================================== */

.interior-container {
  max-width: 960px;
  margin: 20px auto 40px auto;
  padding: 0 16px;
}

.interior-hero-card {
  background: linear-gradient(135deg, #09211c 0%, #0d3028 100%);
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  margin-bottom: 24px;
}

.interior-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--emerald-bright);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.interior-h1 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.8vw, 34px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-white);
  margin-bottom: 12px;
}

.interior-lead {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Bento Quick Facts Grid */
.bento-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

@media (min-width: 600px) {
  .bento-specs-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.bento-item {
  background: rgba(6, 17, 15, 0.7);
  border: 1px solid rgba(0, 230, 118, 0.15);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}

.bento-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.bento-val {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--emerald-bright);
}

/* Quick Jump Pill Links */
.jump-links-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 0;
  margin-bottom: 24px;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.jump-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.jump-link:hover {
  background: rgba(0, 230, 118, 0.15);
  color: var(--emerald-neon);
}

/* ==========================================================================
   ARTICLE BODY & CONTENT MODULES
   ========================================================================== */

.article-content {
  color: var(--text-body);
  font-size: 15.5px;
  line-height: 1.7;
}

.article-content h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-white);
  margin: 36px 0 14px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 230, 118, 0.2);
}

.article-content h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--emerald-bright);
  margin: 24px 0 10px 0;
}

.article-content p {
  margin-bottom: 16px;
}

.article-content ul,
.article-content ol {
  margin: 14px 0 20px 22px;
}

.article-content li {
  margin-bottom: 8px;
}

/* Answer Capsule */
.answer-capsule {
  background: rgba(0, 230, 118, 0.07);
  border-left: 4px solid var(--emerald-neon);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px;
  margin: 16px 0 20px 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-main);
}

.answer-capsule strong {
  color: var(--emerald-bright);
}

/* Expert Insight */
.expert-insight-box {
  background: #09211c;
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 13.5px;
  line-height: 1.6;
}

.expert-insight-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: var(--emerald-neon);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

/* TL;DR */
.tldr-box {
  background: var(--bg-surface);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 28px;
}

.tldr-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.tldr-content {
  font-size: 14px;
  color: var(--text-main);
  line-height: 1.6;
}

/* Callouts */
.pro-tip {
  background: rgba(0, 230, 118, 0.08);
  border-left: 4px solid var(--emerald-neon);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 12px 16px;
  margin: 18px 0;
  font-size: 13.5px;
  color: var(--text-main);
}

.warning-callout {
  background: rgba(255, 82, 82, 0.08);
  border-left: 4px solid var(--red-accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 12px 16px;
  margin: 18px 0;
  font-size: 13.5px;
  color: #ffcdd2;
}

/* Data Table */
.table-wrapper {
  overflow-x: auto;
  margin: 22px 0;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--bg-surface);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  text-align: left;
}

th {
  background: #09211c;
  color: var(--emerald-bright);
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-emerald);
}

td {
  padding: 11px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-body);
}

tr:last-child td {
  border-bottom: none;
}

/* Responsible Gaming */
.responsible-gaming-box {
  background: #071714;
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: var(--radius-md);
  padding: 20px;
  margin: 36px 0;
}

.rg-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--gold-primary);
  margin-bottom: 10px;
}

.responsible-gaming-box p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.rg-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12.5px;
}

.rg-links a {
  color: var(--gold-light);
}

/* Conclusion & Dual CTAs */
.conclusion-box {
  background: linear-gradient(135deg, #09211c 0%, #0d3028 100%);
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-md);
  padding: 22px;
  margin: 36px 0;
}

.conclusion-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 10px;
}

.dual-cta-banner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 18px;
}

@media (min-width: 600px) {
  .dual-cta-banner {
    grid-template-columns: 1fr 1fr;
  }
}

.cta-promo-item {
  background: rgba(6, 17, 15, 0.7);
  border: 1px solid rgba(0, 230, 118, 0.2);
  border-radius: var(--radius-sm);
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

.cta-promo-item p {
  font-size: 12.5px;
  color: var(--text-main);
  margin: 0;
}

.cta-promo-item a {
  display: inline-block;
  text-align: center;
  background: var(--emerald-gradient);
  color: #03140f;
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 800;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
}

/* FAQs */
.faq-section {
  margin: 36px 0;
}

.faq-section h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 18px;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  padding: 14px 18px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "+";
  font-size: 18px;
  color: var(--emerald-bright);
}

.faq-item.active .faq-question::after {
  content: "−";
}

.faq-answer {
  padding: 0 18px 14px 18px;
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.6;
}

/* ==========================================================================
   FOOTER (Directory Band Style)
   ========================================================================== */

.site-footer {
  background: #030a08;
  border-top: 1px solid var(--border-emerald);
  padding: 40px 16px 24px 16px;
  font-size: 13px;
  color: var(--text-muted);
}

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

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

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer-brand p {
  margin-top: 12px;
  line-height: 1.6;
  max-width: 380px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  color: var(--text-muted);
}

.footer-col a:hover {
  color: var(--emerald-bright);
}

.footer-compliance {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .footer-compliance {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.badge-21 {
  background: var(--red-accent);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 4px;
}

/* Sticky Bottom Bar on Mobile */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(6, 17, 15, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-emerald);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

@media (min-width: 992px) {
  .mobile-bottom-bar {
    display: none;
  }
}

.bottom-cta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 600;
}

.bottom-cta-item:hover {
  color: var(--emerald-neon);
}

.bottom-cta-btn-main {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: #03140f;
  background: var(--emerald-gradient);
  padding: 9px 24px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(0, 230, 118, 0.4);
}
