/* ==========================================================================
   GOLDFANCYWIN DESIGN SYSTEM & COMPONENT LIBRARY
   Aesthetic: Modern Flashy Dark Luxury Casino (Gold, Amber, Deep Void & Glass)
   Framework: Vanilla CSS3 Mobile-First with CSS Custom Properties
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-dark: #07090e;
  --bg-surface: #0e121c;
  --bg-card: rgba(18, 24, 38, 0.75);
  --bg-card-hover: rgba(26, 34, 54, 0.85);
  --bg-glass: rgba(14, 18, 28, 0.65);
  
  /* Gold Luxury Accents */
  --gold-primary: #f59e0b;
  --gold-light: #fbbf24;
  --gold-dark: #b45309;
  --gold-glow: rgba(245, 158, 11, 0.35);
  --gold-gradient: linear-gradient(135deg, #fde68a 0%, #f59e0b 50%, #b45309 100%);
  --gold-gradient-hover: linear-gradient(135deg, #fffbeb 0%, #fbbf24 50%, #d97706 100%);

  /* Neon & Action Accents */
  --neon-red: #ef4444;
  --neon-red-glow: rgba(239, 68, 68, 0.35);
  --neon-green: #10b981;
  --neon-green-glow: rgba(16, 185, 129, 0.35);
  --neon-blue: #3b82f6;

  /* Typography Colors */
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-subtle: #64748b;
  --text-gold: #fde68a;

  /* Borders & Shadows */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(245, 158, 11, 0.3);
  --border-gold-bright: rgba(251, 191, 36, 0.6);
  --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 0 25px -3px var(--gold-glow);
  --shadow-gold-lg: 0 0 45px 0px rgba(245, 158, 11, 0.25);

  /* Radius Scale */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Reset & Typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(245, 158, 11, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 85% 65%, rgba(239, 68, 68, 0.04) 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(59, 130, 246, 0.04) 0%, transparent 50%);
  background-attachment: fixed;
}

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

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 9, 14, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-gold);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.4));
}

.site-nav {
  display: none;
}

@media (min-width: 1024px) {
  .site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
  }
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 8px 0;
  letter-spacing: 0.3px;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #000;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(245, 158, 11, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--border-gold);
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--gold-light);
  border-radius: 2px;
  transition: var(--transition);
}

/* ==========================================================================
   FLASHY CASINO HERO CONTAINER (First container of every page)
   ========================================================================== */
.hero-container {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 2px solid var(--border-gold);
  overflow: hidden;
}

/* Casino Ambient Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 9, 14, 0.72) 0%,
    rgba(7, 9, 14, 0.88) 50%,
    rgba(7, 9, 14, 0.98) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  max-width: 820px;
}

.hero-badge-strip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid var(--border-gold);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-badge-strip .pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--neon-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon-green);
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.35); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.hero-title span.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  filter: drop-shadow(0 2px 12px rgba(245, 158, 11, 0.4));
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 720px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Quick Stats Bar in Hero */
.hero-stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

@media (min-width: 768px) {
  .hero-stats-bar {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ==========================================================================
   INTERACTIVE 3x2 GRID BOXES (Strict 3 Columns x 2 Rows with Placecards)
   ========================================================================== */
.section-wrapper {
  padding: 70px 0;
  position: relative;
}

.section-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 36px;
  gap: 16px;
}

@media (min-width: 768px) {
  .section-header {
    flex-direction: row;
    align-items: flex-end;
  }
}

.section-title-wrap h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.section-title-wrap h2 span {
  color: var(--gold-primary);
}

.section-title-wrap p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 600px;
}

/* Filter Tabs */
.grid-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: var(--bg-surface);
  padding: 6px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
}

.tab-btn {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--text-muted);
  border: none;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover {
  color: var(--text-main);
}

.tab-btn.active {
  background: var(--gold-gradient);
  color: #000;
  box-shadow: 0 2px 10px rgba(245, 158, 11, 0.4);
}

/* 3x2 Grid Box Container */
.grid-box-3x2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

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

/* Placecard Component */
.placecard {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.placecard:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold-bright);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}

.placecard-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
}

.placecard-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.placecard-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.placecard-rtp {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(16, 185, 129, 0.9);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}

.placecard-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.placecard-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
  line-height: 1.3;
}

.placecard-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.placecard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}

.placecard-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
}

.placecard-btn {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
  transition: var(--transition);
}

.placecard:hover .placecard-btn {
  background: var(--gold-gradient);
  color: #000;
  border-color: transparent;
}

/* Pagination Component */
.pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

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

.page-btn:hover {
  border-color: var(--border-gold);
  color: var(--gold-light);
}

.page-btn.active {
  background: var(--gold-gradient);
  color: #000;
  border-color: transparent;
  box-shadow: 0 2px 12px rgba(245, 158, 11, 0.4);
}

/* ==========================================================================
   CARD & CONTENT BUNDLES (Jackpot Ticker, Promo Cards, Trust Widgets)
   ========================================================================== */
.jackpot-ticker-card {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(239, 68, 68, 0.12) 100%);
  border: 2px solid var(--border-gold-bright);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  margin-bottom: 50px;
  box-shadow: var(--shadow-gold-lg);
  position: relative;
  overflow: hidden;
}

.jackpot-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.jackpot-amount {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  color: #fff;
  font-family: 'Courier New', monospace;
  text-shadow: 0 0 20px rgba(245, 158, 11, 0.8);
  letter-spacing: 2px;
}

/* E-E-A-T AUTHOR & CREDIBILITY BOX */
.eeat-author-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 40px 0;
  position: relative;
}

@media (min-width: 640px) {
  .eeat-author-card {
    flex-direction: row;
    align-items: center;
  }
}

.author-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.author-avatar-wrap img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  object-fit: cover;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.3);
}

.fact-check-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--neon-green);
  color: #000;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: var(--radius-full);
}

.author-info h4 {
  font-size: 1.15rem;
  color: var(--text-main);
  margin-bottom: 4px;
}

.author-info .author-role {
  font-size: 0.85rem;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 8px;
}

.author-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   ARTICLE & EDITORIAL LAYOUT (Post & Functional Pages)
   ========================================================================== */
.article-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 60px 0;
}

@media (min-width: 1024px) {
  .article-layout {
    grid-template-columns: 2.8fr 1.2fr;
  }
}

.article-body {
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.8;
}

.article-body h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin: 40px 0 16px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-gold);
  letter-spacing: -0.3px;
}

.article-body h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-light);
  margin: 28px 0 12px 0;
}

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

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

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

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.article-body th {
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold-light);
  font-weight: 700;
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border-gold);
}

.article-body td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.95rem;
}

/* Sidebar Styling */
.sidebar-sticky {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-widget {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
}

.sidebar-widget-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 16px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--gold-primary);
  padding-bottom: 8px;
  display: inline-block;
}

/* ==========================================================================
   FOOTER & COMPLIANCE
   ========================================================================== */
.site-footer {
  background: #040508;
  border-top: 2px solid var(--border-gold);
  padding: 70px 0 30px 0;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

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

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

.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

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

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

/* Payment Badges Strip */
.payment-badges-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.badge-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Compliance Bottom Strip */
.footer-compliance {
  border-top: 1px solid var(--border-subtle);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-subtle);
}

.eighteen-plus-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--neon-red);
  color: var(--neon-red);
  font-weight: 900;
  font-size: 0.9rem;
}

/* Mobile Sticky Bottom Nav */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(7, 9, 14, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 9999;
}

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

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.bottom-nav-item.active, .bottom-nav-item:hover {
  color: var(--gold-light);
}

.bottom-nav-icon {
  font-size: 1.2rem;
}

/* ==========================================================================
   BREADCRUMB COMPONENT
   ========================================================================== */
.breadcrumb-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.breadcrumb-nav a {
  color: var(--gold-light);
}

.breadcrumb-nav a:hover {
  text-decoration: underline;
}

.breadcrumb-separator {
  color: var(--text-subtle);
}

.breadcrumb-current {
  color: var(--text-main);
}

/* ==========================================================================
   METADATA STRIP (Published, Updated, Fact-Checked, Reading Time)
   ========================================================================== */
.post-meta-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: var(--text-subtle);
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  color: var(--text-muted);
}

.meta-pill.verified {
  background: rgba(16, 185, 129, 0.15);
  border-color: var(--neon-green);
  color: var(--neon-green);
  font-weight: 700;
}

/* ==========================================================================
   CARD & CONTENT BUNDLE: KEY TAKEAWAYS CALLOUT BOX
   ========================================================================== */
.key-takeaways-box {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(14, 18, 28, 0.85) 100%);
  border: 1px solid var(--border-gold);
  border-left: 4px solid var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin: 32px 0;
  box-shadow: var(--shadow-card);
}

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

.key-takeaways-list {
  list-style: none !important;
  padding-left: 0 !important;
  margin-bottom: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.key-takeaways-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-main);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 0 !important;
}

.key-takeaways-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-primary);
  font-weight: 900;
  font-size: 1.1rem;
}

/* ==========================================================================
   CARD & CONTENT BUNDLE: PROS & CONS
   ========================================================================== */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 36px 0;
}

@media (min-width: 640px) {
  .pros-cons-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pros-card, .cons-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border-subtle);
}

.pros-card {
  border-top: 3px solid var(--neon-green);
}

.cons-card {
  border-top: 3px solid var(--neon-red);
}

.pros-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--neon-green);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cons-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--neon-red);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pros-list, .cons-list {
  list-style: none !important;
  padding-left: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pros-list li {
  position: relative;
  padding-left: 24px;
  color: #cbd5e1;
  font-size: 0.95rem;
  margin-bottom: 0 !important;
}

.pros-list li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--neon-green);
  font-weight: 900;
  font-size: 1.1rem;
}

.cons-list li {
  position: relative;
  padding-left: 24px;
  color: #cbd5e1;
  font-size: 0.95rem;
  margin-bottom: 0 !important;
}

.cons-list li::before {
  content: '−';
  position: absolute;
  left: 0;
  color: var(--neon-red);
  font-weight: 900;
  font-size: 1.1rem;
}

/* ==========================================================================
   CARD & CONTENT BUNDLE: STEP-BY-STEP VISUAL CARDS (Functional Guides)
   ========================================================================== */
.step-card-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 36px 0;
}

.step-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
  transition: var(--transition);
}

@media (min-width: 640px) {
  .step-card {
    flex-direction: row;
    align-items: flex-start;
  }
}

.step-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-card), 0 0 15px rgba(245, 158, 11, 0.15);
}

.step-badge {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #000;
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.step-content {
  flex-grow: 1;
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0 0 8px 0 !important;
}

.step-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px !important;
}

.step-note {
  background: rgba(245, 158, 11, 0.08);
  border-left: 3px solid var(--gold-primary);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--gold-light);
}

/* ==========================================================================
   INTERACTIVE FAQ ACCORDION COMPONENT
   ========================================================================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 40px 0;
}

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

.faq-item:hover, .faq-item.open {
  border-color: var(--border-gold);
}

.faq-question {
  width: 100%;
  padding: 18px 24px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  color: var(--text-main);
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--gold-light);
}

.faq-item.open .faq-question {
  color: var(--gold-light);
  border-bottom: 1px solid var(--border-subtle);
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--gold-primary);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 20px 24px;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

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

/* ==========================================================================
   TABLE OF CONTENTS & SIDEBAR WIDGETS
   ========================================================================== */
.toc-widget {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
}

.toc-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.toc-list {
  list-style: none !important;
  padding-left: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toc-list li a {
  color: var(--text-muted);
  font-size: 0.9rem;
  display: block;
  padding: 4px 0;
  transition: var(--transition);
}

.toc-list li a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.sidebar-cta-box {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.18) 0%, rgba(239, 68, 68, 0.15) 100%);
  border: 2px solid var(--border-gold-bright);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.sidebar-cta-box h4 {
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.sidebar-cta-box p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.sidebar-cta-box .btn {
  width: 100%;
}

/* ==========================================================================
   CATEGORY & SPECS GRID PILLS
   ========================================================================== */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 28px 0;
}

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

.spec-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: center;
}

.spec-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-subtle);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.spec-val {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold-light);
}

/* ==========================================================================
   DIAGNOSTIC & COMPARISON TABLE STYLING
   ========================================================================== */
.diagnostic-table-wrap {
  overflow-x: auto;
  margin: 32px 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.diagnostic-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-surface);
  text-align: left;
}

.diagnostic-table th {
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold-light);
  font-weight: 800;
  padding: 16px 20px;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border-gold);
}

.diagnostic-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-subtle);
  color: #cbd5e1;
  font-size: 0.95rem;
}

.badge-status {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
}

.badge-status.error {
  background: rgba(239, 68, 68, 0.2);
  color: var(--neon-red);
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.badge-status.success {
  background: rgba(16, 185, 129, 0.2);
  color: var(--neon-green);
  border: 1px solid rgba(16, 185, 129, 0.4);
}

/* ==========================================================================
   LANGUAGE SWITCHER SELECTOR (English <-> Bengali)
   ========================================================================== */
.lang-selector {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-gold);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
}

.lang-selector:hover {
  border-color: var(--gold-light);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.3);
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 2px 5px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.lang-btn:hover {
  color: #fff;
}

.lang-btn.active {
  color: var(--gold-light);
  font-weight: 900;
  text-shadow: 0 0 8px rgba(245, 158, 11, 0.6);
}

.lang-divider {
  color: var(--text-subtle);
  font-weight: 400;
  opacity: 0.6;
}

/* ==========================================================================
   404 ERROR & REDIRECT STYLING
   ========================================================================== */
.error-404-container {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  position: relative;
}

.error-404-code {
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 900;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 25px rgba(245, 158, 11, 0.5));
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -2px;
}

.error-404-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.error-404-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 30px auto;
  line-height: 1.7;
}

.error-countdown-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid var(--border-gold);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

/* ================= HOMEPAGE EDITORIAL COMPONENTS ================= */
.editorial-content-section {
  padding: 60px 0;
}

.editorial-callout-card {
  background: linear-gradient(135deg, rgba(26, 32, 48, 0.95) 0%, rgba(14, 18, 28, 0.95) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 24px 0 40px 0;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.editorial-callout-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold-gradient);
}

.category-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 32px 0 48px 0;
}
@media (min-width: 640px) {
  .category-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .category-feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.category-feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.category-feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-glow);
}
.category-feature-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.category-feature-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
  flex-grow: 1;
}
.category-feature-meta {
  font-size: 0.85rem;
  color: var(--gold-light);
  margin-bottom: 14px;
  font-weight: 600;
}
.category-feature-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.category-feature-link:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

/* Functional Guides Grid */
.functional-guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 36px 0;
}
@media (min-width: 768px) {
  .functional-guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .functional-guide-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.functional-guide-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.functional-guide-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.functional-guide-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.functional-guide-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 10px;
}
.functional-guide-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

/* Player Reviews & Testimonials */
.player-reviews-section {
  padding: 60px 0;
  background: rgba(14, 18, 28, 0.6);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.player-review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 32px 0 24px 0;
}
@media (min-width: 768px) {
  .player-review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .player-review-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.player-review-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.player-review-card:hover {
  border-color: var(--border-gold);
}
.review-stars {
  color: var(--gold-primary);
  font-size: 1.1rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.review-author-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 4px;
}
.review-quote {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
  margin-top: 8px;
}
.community-sentiment-box {
  background: rgba(245, 158, 11, 0.08);
  border: 1px dashed var(--border-gold);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-top: 24px;
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.6;
}

/* Strategy Tips Box */
.strategy-tips-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 28px 0;
}
@media (min-width: 768px) {
  .strategy-tips-box {
    grid-template-columns: repeat(3, 1fr);
  }
}
.tip-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
}
.tip-card h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.tip-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Internal Guide Link Silos */
.internal-guide-silo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}
@media (min-width: 640px) {
  .internal-guide-silo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .internal-guide-silo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.internal-guide-silo-link {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.internal-guide-silo-link:hover {
  border-color: var(--border-gold);
  transform: translateX(4px);
  background: rgba(26, 32, 48, 0.9);
}
.internal-guide-silo-link strong {
  color: var(--gold-light);
  font-size: 0.98rem;
  margin-bottom: 4px;
}
.internal-guide-silo-link span {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.4;
}


