/* ==========================================================================
   JOYJILI PHILIPPINES DESIGN SYSTEM
   Gold-Luxe Obsidian Luxury Theme (Mobile-First 390px -> 1440px)
   Adhering to /website-design-guide specifications
   ========================================================================== */

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

:root {
  /* Surface & Background Hierarchy */
  --bg-dark: #080c16;
  --bg-surface: #0e1728;
  --bg-card: #131f38;
  --bg-card-hover: #192744;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-card: rgba(255, 255, 255, 0.12);
  --border-gold: rgba(245, 158, 11, 0.35);
  
  /* Brand Luxury Palette */
  --gold-primary: #f59e0b;
  --gold-light: #fbbf24;
  --gold-dark: #d97706;
  --gold-gradient: linear-gradient(135deg, #fcd34d 0%, #f59e0b 50%, #d97706 100%);
  
  /* Conversion Emerald CTAs */
  --green-cta: #10b981;
  --green-light: #34d399;
  --green-gradient: linear-gradient(135deg, #34d399 0%, #10b981 60%, #059669 100%);
  
  /* Refined Accent Highlights (Subtle Sky, never harsh cyan) */
  --sky-accent: #38bdf8;
  --sky-gradient: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%);
  --red-accent: #ef4444;
  
  /* Text Contrast Hierarchy */
  --text-main: #f8fafc;
  --text-body: #cbd5e1;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  /* Typography Stacks */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Radii & Elevations */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-gold-glow: 0 0 25px rgba(245, 158, 11, 0.2);
  --shadow-green-cta: 0 4px 18px rgba(16, 185, 129, 0.35);
}

*, *::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: 74px; /* Space for mobile sticky bottom bar */
  background: radial-gradient(circle at 50% 0%, #101c36 0%, var(--bg-dark) 55%);
  background-attachment: fixed;
  min-height: 100vh;
}

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

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

a:hover {
  color: #ffffff;
  text-decoration: none;
}

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

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 12, 22, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 10px 16px;
}

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

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

.brand-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

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

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
  background: rgba(245, 158, 11, 0.12);
  text-decoration: none;
}

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

.btn-login {
  font-family: var(--font-heading);
  color: #f8fafc;
  font-size: 13.5px;
  font-weight: 700;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-login:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
  text-decoration: none;
}

.btn-play {
  font-family: var(--font-heading);
  background: var(--green-gradient);
  color: #080c16;
  font-size: 13.5px;
  font-weight: 800;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  box-shadow: var(--shadow-green-cta);
  transition: all 0.25s ease;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.btn-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.55);
  color: #080c16;
  text-decoration: none;
}

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

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

.breadcrumbs {
  max-width: 1280px;
  margin: 14px auto 0;
  padding: 0 16px;
  font-size: 13px;
  color: var(--text-dim);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.breadcrumbs a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

/* ==========================================================================
   HERO SECTION (Split Hero / Gold-Luxe Treatment)
   ========================================================================== */

.page-hero {
  padding: 24px 16px;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-box {
  background: linear-gradient(135deg, rgba(14, 23, 40, 0.95) 0%, rgba(19, 31, 56, 0.95) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-card), var(--shadow-gold-glow);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gold-light);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.hero-desc {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 20px;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

@media (min-width: 600px) {
  .hero-cta-group {
    flex-direction: row;
    align-items: center;
  }
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green-gradient);
  color: #080c16;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  padding: 14px 26px;
  border-radius: var(--radius-md);
  text-decoration: none;
  box-shadow: var(--shadow-green-cta);
  transition: all 0.25s ease;
  min-height: 48px;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(16, 185, 129, 0.6);
  color: #080c16;
  text-decoration: none;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  color: #f8fafc;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-decoration: none;
  transition: all 0.2s ease;
  min-height: 48px;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
  text-decoration: none;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
  font-size: 13px;
  color: var(--text-muted);
}

.hero-trust-item, .trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-trust-item svg, .trust-item svg {
  color: var(--gold-light);
  flex-shrink: 0;
}

/* Split Hero Artwork Side */
.hero-artwork, .hero-art-side {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-subtle);
  background: #090e1c;
}

.hero-artwork img, .hero-art-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-featured-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(8, 12, 22, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-light);
}

@media (min-width: 992px) {
  .hero-box {
    flex-direction: row;
    align-items: center;
    padding: 36px 36px;
    gap: 36px;
  }
  
  .hero-text-side {
    flex: 1.3;
    min-width: 0;
  }
  
  .hero-artwork, .hero-art-side {
    flex: 0.9;
    max-height: 360px;
  }
}

/* ==========================================================================
   DESKTOP DUAL-COLUMN LAYOUT & STICKY SIDEBAR
   ========================================================================== */

.main-container, .article-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px 48px;
  width: 100%;
}

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

@media (min-width: 992px) {
  .layout-grid {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 36px;
  }
}

@media (min-width: 1200px) {
  .layout-grid {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 40px;
  }
}

.article-body, .article-main {
  min-width: 0;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 992px) {
  .sidebar {
    position: sticky;
    top: 86px;
    align-self: start;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(245, 158, 11, 0.3) transparent;
  }
}

/* Headings (NO ugly cyan sticks - clean and elegant typography) */
.article-body h2 {
  font-family: var(--font-heading);
  font-size: clamp(21px, 2.5vw, 25px);
  font-weight: 800;
  color: #ffffff;
  margin: 38px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* Sub-headings */
.article-body h3 {
  font-family: var(--font-heading);
  font-size: 18.5px;
  font-weight: 700;
  color: #f8fafc;
  margin: 28px 0 12px;
  line-height: 1.35;
}

/* Only content-level editorial h3 get the accent dot, NOT cards or widgets */
.article-body > h3::before,
.article-body section > h3::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-primary);
  margin-right: 8px;
  vertical-align: middle;
}

.game-card-title::before,
.step-title::before,
.widget-title::before,
.card-title::before,
.app-banner-title::before {
  display: none !important;
  content: none !important;
}

.article-body p {
  margin-bottom: 16px;
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.68;
}

.article-body strong {
  color: #ffffff;
}

.article-body ul, .article-body ol {
  margin: 14px 0 20px 24px;
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.65;
}

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

/* ==========================================================================
   SUPPORTED PAYMENT GATEWAYS SHOWCASE (New Card Grid per Design Guide)
   ========================================================================== */

.payment-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0 28px;
}

@media (min-width: 768px) {
  .payment-showcase-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .payment-showcase-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
  }
}

.payment-card-item {
  background: linear-gradient(180deg, #131f38 0%, #0d1629 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.payment-card-item:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 16px rgba(245, 158, 11, 0.15);
}

.payment-logo-container {
  background: #ffffff;
  border-radius: 8px;
  height: 44px;
  width: 100%;
  max-width: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  padding: 4px 10px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.payment-logo-container img {
  max-height: 28px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

.payment-card-name {
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.payment-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
  margin-bottom: 8px;
}

.badge-speed {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.badge-fee {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.payment-card-limits {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.payment-card-action {
  width: 100%;
  padding: 7px 10px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--gold-light);
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
}

.payment-card-action:hover {
  background: var(--gold-gradient);
  color: #080c16;
  border-color: var(--gold-primary);
  text-decoration: none;
}

/* ==========================================================================
   STEP CARDS GRID (3 Simple Steps per Design Guide)
   ========================================================================== */

.step-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 20px 0 28px;
}

@media (min-width: 768px) {
  .step-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

.step-card {
  background: linear-gradient(145deg, #131f38 0%, #0d1629 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  position: relative;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.step-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 158, 11, 0.35);
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--gold-gradient);
  color: #080c16;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 15px;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 16.5px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.55;
  margin: 0;
}

/* ==========================================================================
   ANSWER CAPSULES & CALLOUTS (E-E-A-T & Google AI Overviews)
   ========================================================================== */

.answer-capsule {
  background: rgba(245, 158, 11, 0.06);
  border-left: 3px solid var(--gold-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 14px 18px;
  margin: 18px 0 22px;
  font-size: 14.5px;
  line-height: 1.62;
  color: #f1f5f9;
}

.answer-capsule strong {
  color: var(--gold-light);
}

.expert-insight-box {
  background: linear-gradient(135deg, rgba(19, 31, 56, 0.85) 0%, rgba(13, 22, 41, 0.95) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.6;
}

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

.tldr-box {
  background: rgba(19, 31, 56, 0.9);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 28px;
}

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

.tldr-content {
  font-size: 14.5px;
  color: #f1f5f9;
  line-height: 1.65;
}

.pro-tip {
  background: rgba(16, 185, 129, 0.08);
  border-left: 3px solid var(--green-cta);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 14px 18px;
  margin: 18px 0;
  font-size: 14px;
  color: #e2e8f0;
}

.pro-tip strong {
  color: var(--green-light);
}

.warning-callout {
  background: rgba(239, 68, 68, 0.08);
  border-left: 3px solid var(--red-accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 14px 18px;
  margin: 18px 0;
  font-size: 14px;
  color: #e2e8f0;
}

.warning-callout strong {
  color: var(--red-accent);
}

/* ==========================================================================
   TABLES (Mobile scrollable box with custom styling)
   ========================================================================== */

.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 22px 0 26px;
  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;
  min-width: 480px;
}

thead th {
  background: #0d1527;
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 13px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 0.2px;
}

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

tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.015);
}

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

tbody tr:hover {
  background: rgba(245, 158, 11, 0.04);
}

/* ==========================================================================
   GAME SHOWCASE GRID
   ========================================================================== */

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

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

.game-card-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.game-card-item:hover {
  border-color: rgba(245, 158, 11, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 16px rgba(245, 158, 11, 0.12);
}

.game-card-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: #090e1c;
  overflow: hidden;
}

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

.game-card-item:hover .game-card-thumb img {
  transform: scale(1.04);
}

.game-card-rtp {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(16, 185, 129, 0.95);
  color: #080c16;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.game-card-provider {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(8, 12, 22, 0.9);
  color: #fff;
  font-size: 9.5px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

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

.game-card-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.game-card-feature {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 36px;
}

.game-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.guide-link {
  color: var(--text-muted);
}

.guide-link:hover {
  color: var(--gold-light);
}

.play-link {
  color: var(--green-light);
  font-weight: 800;
}

.play-link:hover {
  color: #ffffff;
}

/* ==========================================================================
   FEATURE CARDS & SPOKE GRID
   ========================================================================== */

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 16px;
}

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

@media (min-width: 900px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #090e1c;
}

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

.card-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(8, 12, 22, 0.88);
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(245, 158, 11, 0.35);
}

.card-content {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 15.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.card-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
  flex: 1;
}

.card-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ==========================================================================
   RESPONSIBLE GAMING & COMPLIANCE BOX
   ========================================================================== */

.responsible-gaming-box {
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 20px;
  margin: 36px 0;
}

.rg-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.rg-links span {
  color: var(--text-dim);
}

.rg-links a {
  color: #e2e8f0;
}

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

/* ==========================================================================
   CONCLUSION & DUAL CTAS (₱50k & ₱100k)
   ========================================================================== */

.conclusion-box {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  margin: 36px 0;
}

.conclusion-title {
  font-family: var(--font-heading);
  font-size: 18.5px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

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

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

.cta-promo-item {
  background: rgba(8, 12, 22, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

.cta-promo-item p {
  font-size: 13.5px;
  margin-bottom: 0;
  color: #e2e8f0;
}

.cta-promo-item a {
  align-self: flex-start;
  background: var(--green-gradient);
  color: #080c16;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 12.5px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.35);
}

.cta-promo-item a:hover {
  color: #080c16;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.6);
}

/* ==========================================================================
   FAQS (Accordion)
   ========================================================================== */

.faq-section {
  margin: 36px 0 24px;
}

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

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

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

.faq-question::after {
  content: "+";
  font-size: 18px;
  color: var(--gold-light);
  transition: transform 0.2s ease;
}

.faq-item.active .faq-question::after {
  content: "−";
  color: var(--green-cta);
}

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

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

/* ==========================================================================
   SIDEBAR & WIDGETS
   ========================================================================== */

.widget {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  margin-bottom: 20px;
}

.widget-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-subtle);
}

.promo-badge-card {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(19, 31, 56, 0.5) 100%);
  border: 1px solid var(--border-gold);
}

.promo-badge-title {
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 900;
  color: var(--gold-light);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.promo-badge-card p {
  font-size: 12.5px;
  color: #cbd5e1;
  margin-bottom: 12px;
  line-height: 1.5;
}

.quick-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quick-links-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #cbd5e1;
  padding: 7px 10px;
  border-radius: 6px;
  background: rgba(19, 31, 56, 0.5);
  transition: all 0.2s ease;
}

.quick-links-list li a:hover {
  background: rgba(245, 158, 11, 0.12);
  color: var(--gold-light);
  text-decoration: none;
}

/* ==========================================================================
   APP BANNER CARD (Mobile-First 390px -> 1440px)
   ========================================================================== */

.app-banner-card {
  background: linear-gradient(135deg, #131f38 0%, #0d1629 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 24px 0 32px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
}

@media (min-width: 768px) {
  .app-banner-card {
    flex-direction: row;
    padding: 30px;
    gap: 32px;
  }
}

.app-banner-img {
  max-width: 180px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-banner-img img {
  max-height: 240px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.6));
}

.app-banner-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-banner-title {
  font-family: var(--font-heading);
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
}

.app-banner-desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 4px;
}

.app-banner-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.app-feature-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
}

.app-banner-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.app-btn-apk {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-gradient);
  color: #080c16;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13.5px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  box-shadow: var(--shadow-green-cta);
  transition: all 0.25s ease;
}

.app-btn-apk:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.55);
  color: #080c16;
}

.app-btn-ios {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13.5px;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.2s ease;
}

.app-btn-ios:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: #050810;
  border-top: 1px solid var(--border-subtle);
  padding: 42px 16px 24px;
  margin-top: 48px;
}

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

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

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

.footer-brand p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-top: 12px;
}

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

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-compliance {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.compliance-text p {
  font-size: 11.5px;
  color: var(--text-dim);
  line-height: 1.6;
}

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

.badge-21 {
  display: inline-block;
  background: var(--red-accent);
  color: #fff;
  font-weight: 900;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 4px;
}

/* ==========================================================================
   MOBILE STICKY BOTTOM BAR (Mobile-First 390px)
   ========================================================================== */

.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(8, 12, 22, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 8px 12px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
}

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

.bottom-cta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  font-weight: 700;
  color: #cbd5e1;
  text-decoration: none;
  padding: 4px 8px;
}

.bottom-cta-item:hover {
  color: var(--gold-light);
  text-decoration: none;
}

.bottom-cta-btn-main {
  background: var(--green-gradient);
  color: #080c16;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 900;
  padding: 10px 26px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: var(--shadow-green-cta);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.bottom-cta-btn-main:hover {
  color: #080c16;
  text-decoration: none;
}
