/* ==========================================================================
   888Pph BRAND DESIGN SYSTEM & TOKENS (CSS VARIABLES)
   Philippine iGaming Affiliate Portal - High-Impact Mobile-First Styling
   ========================================================================== */

:root {
  /* Brand Palette - 888 Gold, Emerald Jade, Electric Amber & Dark Velvet */
  --brand-primary: #f59e0b;       /* Vivid Gold / Amber */
  --brand-primary-light: #fbbf24; /* Warm Gold Highlight */
  --brand-primary-dark: #b45309;  /* Deep Antique Bronze */
  --brand-accent-green: #10b981;  /* Emerald Jade Green */
  --brand-accent-glow: #34d399;   /* Mint Green Glow */
  --brand-crimson: #ef4444;       /* Alert Crimson */
  --brand-purple: #8b5cf6;        /* Electric Violet Accent */

  /* Dark Theme Surfaces */
  --bg-main: #07090e;             /* Deepest Midnight Black */
  --bg-surface: #0f141f;          /* Elevated Surface Card */
  --bg-surface-elevated: #182030; /* Higher Tier Card / Popover */
  --bg-surface-hover: #1f2a3f;    /* Interactive Hover State */
  --border-subtle: rgba(245, 158, 11, 0.18);
  --border-medium: rgba(245, 158, 11, 0.35);
  --border-highlight: rgba(251, 191, 36, 0.65);

  /* Typography Colors */
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --text-gold: #fbbf24;
  --text-green: #34d399;

  /* Typography Scales */
  --font-family-display: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-family-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Radius & Shadows */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-card: 0 10px 25px -5px rgba(0, 0, 0, 0.6), 0 0 15px rgba(245, 158, 11, 0.08);
  --shadow-neon: 0 0 20px rgba(245, 158, 11, 0.35), 0 0 40px rgba(16, 185, 129, 0.15);

  /* Transitions */
  --transition-fast: 0.18s ease-in-out;
  --transition-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset & Mobile-First Box Model */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-family-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background-color: var(--bg-main);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.12) 0%, transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
  background-attachment: fixed;
}

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

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

/* ==========================================================================
   LAYOUT CONTAINERS & FLASHY BACKGROUND PATTERNS
   ========================================================================== */

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.section-container {
  position: relative;
  padding: 3.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

/* Casino Vibe Animated Gradients & Flashy Texture Overlays */
.bg-flashy-casino-1 {
  background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.18), transparent 50%),
              radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.14), transparent 50%),
              linear-gradient(180deg, #090d15 0%, #06080d 100%);
  position: relative;
}

.bg-flashy-casino-1::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(245, 158, 11, 0.15) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.35;
  pointer-events: none;
}

.bg-flashy-casino-2 {
  background: linear-gradient(135deg, rgba(24, 32, 48, 0.9) 0%, rgba(15, 20, 31, 0.95) 100%),
              radial-gradient(ellipse at center, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
  position: relative;
}

.bg-flashy-casino-3 {
  background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 70%),
              linear-gradient(180deg, #0a0e17 0%, #05070a 100%);
  position: relative;
}

/* First Container of each page: Hero with Casino-Themed Image / Vector Backdrop */
.hero-container {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  padding: 4.5rem 0 3.5rem 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-bottom: 2px solid var(--border-medium);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 9, 14, 0.75) 0%, rgba(7, 9, 14, 0.92) 80%, var(--bg-main) 100%),
              radial-gradient(circle at center, rgba(245, 158, 11, 0.18) 0%, transparent 75%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  text-align: center;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid var(--border-subtle);
  color: var(--brand-primary-light);
  font-size: 0.825rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.2);
}

.hero-title {
  font-size: 2.15rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-title span.brand-glow {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-lead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-container {
    min-height: 520px;
    padding: 6rem 0 4.5rem 0;
  }
}

/* ==========================================================================
   HEADER TEMPLATE (Category Tabs Only Navigation)
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 23, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}

/* Official 888Pph Brand Logo */
.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.35rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.brand-logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  border-radius: var(--radius-md);
  color: #000000;
  font-weight: 900;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.brand-logo-text {
  background: linear-gradient(180deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-logo-accent {
  color: var(--brand-primary);
  -webkit-text-fill-color: var(--brand-primary);
}

/* Category Hub Tabs Only */
.nav-category-tabs {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  overflow-x: auto;
  white-space: nowrap;
  padding: 0.4rem 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.nav-category-tabs::-webkit-scrollbar {
  display: none;
}

.category-tab-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.95rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: var(--radius-full);
  background: transparent;
  border: 1px solid transparent;
  transition: all var(--transition-fast);
}

.category-tab-item:hover {
  color: #ffffff;
  background: rgba(245, 158, 11, 0.1);
  border-color: var(--border-subtle);
}

.category-tab-item.active {
  color: #000000;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  font-weight: 700;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 14px rgba(245, 158, 11, 0.35);
}

.tab-icon {
  font-size: 1rem;
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.1rem;
}

@media (max-width: 991px) {
  .header-inner {
    height: 60px;
  }
  .nav-category-tabs {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(10, 14, 23, 0.97);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0.65rem 1rem;
    gap: 0.5rem;
  }
}

/* ==========================================================================
   BUTTONS & INTERACTIVE ELEMENTS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  text-align: center;
}

.btn-primary-gold {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  color: #0b0f17;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-primary-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(245, 158, 11, 0.55);
  background: linear-gradient(135deg, #fde68a 0%, #fbbf24 100%);
  color: #000000;
}

.btn-secondary-emerald {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary-emerald:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-medium);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(245, 158, 11, 0.12);
  border-color: var(--brand-primary);
  color: var(--brand-primary-light);
  transform: translateY(-2px);
}

/* ==========================================================================
   INTERACTIVE 3x2 GRID BOXES & PLACECARDS (With Media & Status Badges)
   ========================================================================== */

.grid-3x2-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (min-width: 640px) {
  .grid-3x2-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Premium Placecard with Media Background & Hover Zoom */
.placecard-casino {
  position: relative;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.placecard-casino:hover {
  transform: translateY(-6px);
  border-color: var(--border-highlight);
  box-shadow: 0 16px 32px -8px rgba(0, 0, 0, 0.75), var(--shadow-neon);
}

.placecard-media {
  position: relative;
  height: 180px;
  overflow: hidden;
  background-color: #131b2a;
}

.placecard-media img,
.placecard-media .media-canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.placecard-casino:hover .placecard-media img,
.placecard-casino:hover .placecard-media .media-canvas {
  transform: scale(1.08);
}

.placecard-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  background: rgba(7, 9, 14, 0.85);
  backdrop-filter: blur(6px);
  color: var(--brand-primary-light);
  border: 1px solid var(--border-subtle);
}

.placecard-rtp {
  position: absolute;
  bottom: 12px;
  right: 12px;
  padding: 0.25rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  background: rgba(16, 185, 129, 0.9);
  color: #000000;
}

.placecard-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.placecard-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--brand-primary);
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.placecard-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.placecard-desc {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.placecard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.placecard-action {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-primary-light);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.placecard-casino:hover .placecard-action {
  color: #ffffff;
}

/* ==========================================================================
   TABS & PAGINATION COMPONENT
   ========================================================================== */

.tabs-controller {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 2rem 0;
}

.tab-btn {
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tab-btn:hover {
  color: #ffffff;
  border-color: var(--border-medium);
}

.tab-btn.active {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #000000;
  font-weight: 700;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.3);
}

.pagination-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
}

.page-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 0.85rem;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.page-nav-btn:hover {
  background: var(--bg-surface-elevated);
  color: #ffffff;
  border-color: var(--brand-primary);
}

.page-nav-btn.active {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #000000;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.4);
}

/* ==========================================================================
   INTERACTIVE CARDS, ACCORDIONS & LIST BUNDLES
   ========================================================================== */

/* Summary Box */
.summary-box {
  background: linear-gradient(135deg, rgba(24, 32, 48, 0.85) 0%, rgba(15, 20, 31, 0.95) 100%);
  border: 1px solid var(--border-medium);
  border-left: 5px solid var(--brand-primary);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 1.75rem 0;
  box-shadow: var(--shadow-card);
}

.summary-box-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-primary-light);
  margin-bottom: 0.85rem;
}

.summary-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.summary-list li {
  font-size: 0.925rem;
  color: var(--text-main);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.summary-list li::before {
  content: "✦";
  color: var(--brand-primary);
  font-size: 0.85rem;
  margin-top: 0.2rem;
}

/* Technical Specification Table */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  margin: 1.75rem 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
}

.data-table-casino {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

.data-table-casino th {
  background: #151c2c;
  color: var(--brand-primary-light);
  font-weight: 700;
  padding: 0.95rem 1.25rem;
  border-bottom: 2px solid var(--border-medium);
  text-transform: uppercase;
  font-size: 0.775rem;
  letter-spacing: 0.05em;
}

.data-table-casino td {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-main);
}

.data-table-casino tr:last-child td {
  border-bottom: none;
}

.data-table-casino tr:hover td {
  background: rgba(245, 158, 11, 0.04);
}

/* FAQ Accordion Component */
.faq-accordion-group {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.75rem 0;
}

.faq-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-card:hover {
  border-color: var(--border-medium);
}

.faq-header {
  padding: 1.15rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 700;
  color: #ffffff;
  font-size: 1rem;
}

.faq-header span.faq-icon {
  font-size: 1.2rem;
  color: var(--brand-primary);
  transition: transform var(--transition-fast);
}

.faq-body {
  padding: 0 1.35rem 1.25rem 1.35rem;
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* Reviews / Testimonial Persona Cards */
.persona-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: var(--shadow-card);
}

.persona-rating {
  color: var(--brand-primary);
  font-size: 1.15rem;
  letter-spacing: 0.15em;
}

.persona-name {
  font-weight: 700;
  color: #ffffff;
  font-size: 0.95rem;
}

.persona-location {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.persona-quote {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   FOOTER TEMPLATE (E-E-A-T, 21+ Mandate & Silo Routing)
   ========================================================================== */

.site-footer {
  margin-top: auto;
  background: #05070a;
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 2rem 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

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

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.badge-21plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--brand-crimson);
  color: var(--brand-crimson);
  font-weight: 900;
  font-size: 1.15rem;
  box-shadow: 0 0 14px rgba(239, 68, 68, 0.25);
  margin-bottom: 0.5rem;
}

.footer-col-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  position: relative;
  display: inline-block;
}

.footer-col-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 24px;
  height: 2px;
  background: var(--brand-primary);
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links-list a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-links-list a:hover {
  color: var(--brand-primary-light);
  transform: translateX(3px);
}

.footer-disclaimer-box {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(15, 20, 31, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text-dim);
  margin-bottom: 2rem;
}

.footer-bottom-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.825rem;
  color: var(--text-dim);
}

@media (min-width: 768px) {
  .footer-bottom-bar {
    flex-direction: row;
  }
}

/* ==========================================================================
   BREADCRUMB NAVIGATION (Visual UI & Semantic Breadcrumbs)
   ========================================================================== */

.breadcrumb-nav {
  padding: 0.85rem 0;
  background: rgba(10, 14, 23, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
  z-index: 10;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
}

.breadcrumb-item {
  display: inline-flex;
  align-items: center;
  color: var(--text-dim);
}

.breadcrumb-link {
  color: var(--brand-primary-light);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.15s ease, text-shadow 0.15s ease;
}

.breadcrumb-link:hover {
  color: #fbbf24;
  text-decoration: underline;
  text-shadow: 0 0 8px rgba(245, 158, 11, 0.4);
}

.breadcrumb-separator {
  margin: 0 0.45rem;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
  user-select: none;
}

.breadcrumb-current {
  color: var(--text-main);
  font-weight: 600;
  max-width: 480px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 640px) {
  .breadcrumb-current {
    max-width: 220px;
  }
}

/* ==========================================================================
   E-E-A-T TRUST & EDITORIAL PRINCIPLE STYLING
   ========================================================================== */

.eeat-trust-bar {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(10, 14, 23, 0.98) 100%);
  border-top: 1px solid rgba(245, 158, 11, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.75rem 0;
  position: relative;
  overflow: hidden;
}

.eeat-trust-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.8), transparent);
}

.eeat-container {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.eeat-author-profile {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
}

.eeat-avatar-wrapper {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, rgba(15, 23, 42, 0.8) 100%);
  border: 2px solid var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.25);
}

.eeat-avatar-img {
  width: 38px;
  height: auto;
  object-fit: contain;
}

.eeat-author-info {
  flex: 1;
}

.eeat-author-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.35rem;
}

.eeat-reviewed-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.eeat-author-name {
  color: var(--brand-primary-light);
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  transition: color 0.15s ease;
}

.eeat-author-name:hover {
  color: #fbbf24;
  text-decoration: underline;
}

.eeat-badge-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #34d399;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
}

.eeat-author-bio {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.eeat-pillars-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}

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

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

.eeat-pillar-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 1rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.eeat-pillar-card:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 158, 11, 0.3);
}

.eeat-pillar-icon {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
  padding-top: 0.15rem;
}

.eeat-pillar-content strong {
  display: block;
  font-size: 0.9rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.eeat-pillar-content p {
  font-size: 0.785rem;
  color: var(--text-dim);
  line-height: 1.45;
  margin: 0;
}

.eeat-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.825rem;
  color: var(--text-dim);
}

.eeat-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.eeat-meta-item a {
  color: var(--brand-primary-light);
  text-decoration: underline;
}

.eeat-meta-item a:hover {
  color: #fbbf24;
}
