/* ==========================================================================
   Jaya9 Bangladesh (okjaya9.com) — Official Design System & Stylesheet (2026)
   Theme: Luxury Dark Casino with Vibrant Gold & Emerald Accents
   Mobile-First Responsive Architecture with Sticky Bottom App Navigation
   ========================================================================== */

:root {
  --bg-primary: #090c12;
  --bg-secondary: #111622;
  --bg-card: #161d2c;
  --bg-card-hover: #1f293d;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(245, 166, 35, 0.35);
  
  --color-gold: #f5a623;
  --color-gold-hover: #ffb834;
  --color-gold-glow: rgba(245, 166, 35, 0.25);
  --color-emerald: #10b981;
  --color-cyan: #06b6d4;
  --color-crimson: #ef4444;
  
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --text-sub: #6b7280;
  
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Noto Sans Bengali";
  --container-max: 1200px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 25px rgba(245, 166, 35, 0.2);
}

/* ----------------- Bilingual Language Toggle Rules ----------------- */
html[lang="bn-BD"] .lang-en {
  display: none !important;
}
html[lang="bn-BD"] .lang-bn {
  display: block;
}
html[lang="bn-BD"] span.lang-bn,
html[lang="bn-BD"] a.lang-bn {
  display: inline !important;
}
html[lang="bn-BD"] span.lang-en,
html[lang="bn-BD"] a.lang-en {
  display: none !important;
}

html[lang="en-US"] .lang-bn {
  display: none !important;
}
html[lang="en-US"] .lang-en {
  display: block;
}
html[lang="en-US"] span.lang-en,
html[lang="en-US"] a.lang-en {
  display: inline !important;
}
html[lang="en-US"] span.lang-bn,
html[lang="en-US"] a.lang-bn {
  display: none !important;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-family);
  line-height: 1.6;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 74px; /* Space for sticky bottom mobile nav */
  overflow-x: hidden;
  width: 100%;
}

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

/* ----------------- Layout Container ----------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* ----------------- Header & Navbar ----------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 12, 18, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.75rem 0;
}

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

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo-img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--border-gold);
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--color-gold);
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.desktop-nav {
  display: none;
}

@media (min-width: 992px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
  }
}

.nav-link {
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  text-decoration: none;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-gold);
  background: rgba(245, 166, 35, 0.1);
  text-decoration: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Bilingual Language Switcher Button */
.lang-switcher-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border-gold);
  color: var(--color-gold);
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-switcher-btn:hover {
  background: var(--color-gold);
  color: #000;
  box-shadow: 0 0 12px var(--color-gold-glow);
}

.btn-header-cta {
  background: linear-gradient(135deg, #f5a623 0%, #d97706 100%);
  color: #0b0e14;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 10px rgba(245, 166, 35, 0.3);
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-header-cta:hover {
  filter: brightness(1.1);
  text-decoration: none;
  color: #000;
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  cursor: pointer;
}

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

/* ----------------- Breadcrumb Navigation ----------------- */
.breadcrumb-wrapper {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.65rem 0;
  font-size: 0.85rem;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  color: var(--text-muted);
}

.breadcrumb-list li+li::before {
  content: "/";
  margin-right: 0.5rem;
  color: var(--text-sub);
}

.breadcrumb-list a {
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumb-list a:hover {
  color: var(--color-gold);
}

.breadcrumb-list li:last-child {
  color: var(--color-gold);
  font-weight: 600;
}

/* ----------------- Hero & Banner Section ----------------- */
.page-hero {
  padding: 2.5rem 0 2rem;
  background: linear-gradient(180deg, rgba(22, 29, 44, 0.6) 0%, rgba(9, 12, 18, 0.95) 100%);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 2rem;
}

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

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

.hero-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--color-gold);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 1.85rem;
  line-height: 1.25;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.45rem;
  }
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.btn-cta-primary {
  background: linear-gradient(135deg, #f5a623 0%, #d97706 100%);
  color: #0b0e14;
  font-weight: 800;
  font-size: 1rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn-cta-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  text-decoration: none;
  color: #000;
}

.btn-cta-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--border-gold);
  color: var(--color-gold);
  text-decoration: none;
}

.hero-meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-gold);
}

.hero-image-wrap img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero-image-wrap:hover img {
  transform: scale(1.03);
}

/* ----------------- TL;DR Summary Box ----------------- */
.tldr-box {
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.08) 0%, rgba(16, 185, 129, 0.05) 100%);
  border: 1px solid var(--border-gold);
  border-left: 5px solid var(--color-gold);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}

.tldr-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.tldr-content {
  color: var(--text-main);
  font-size: 0.95rem;
  line-height: 1.7;
}

.tldr-list {
  margin-top: 0.75rem;
  padding-left: 1.25rem;
}

.tldr-list li {
  margin-bottom: 0.4rem;
}

/* ----------------- Main Content Structure ----------------- */
.content-wrapper {
  padding: 1rem 0 3rem;
}

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

.article-body h2 {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text-main);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 0.5rem;
  position: relative;
}

.article-body h2::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--color-gold);
}

.article-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.article-body p {
  margin-bottom: 1.25rem;
}

.article-body ul, .article-body ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.article-body li {
  margin-bottom: 0.5rem;
}

/* Answer Capsule Callout */
.answer-capsule {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--color-emerald);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.35rem;
  margin: 1.5rem 0;
}

/* In-Article Visual Figures */
.article-figure {
  margin: 2rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-figure:hover {
  box-shadow: 0 10px 25px -5px rgba(245, 166, 35, 0.2);
}

.figure-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #090c12;
  overflow: hidden;
}

.figure-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.article-figure:hover .figure-img {
  transform: scale(1.02);
}

.figure-caption {
  padding: 0.85rem 1.25rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  background: rgba(18, 24, 38, 0.8);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.4;
}

.figure-caption-icon {
  color: var(--color-gold);
  font-weight: bold;
}

.answer-capsule-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-emerald);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
}

.answer-capsule-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.5;
}

/* ----------------- Responsive Data Tables ----------------- */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  margin: 1.75rem 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  -webkit-overflow-scrolling: touch;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
  min-width: 580px;
  background: var(--bg-card);
}

.data-table th {
  background: #111827;
  color: var(--color-gold);
  font-weight: 700;
  padding: 0.85rem 1rem;
  border-bottom: 2px solid var(--border-gold);
  white-space: nowrap;
}

.data-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
  color: #d1d5db;
}

.data-table tbody tr:hover {
  background: var(--bg-card-hover);
}

.badge-status-fast {
  background: rgba(16, 185, 129, 0.15);
  color: var(--color-emerald);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.75rem;
}

.badge-status-low {
  background: rgba(245, 166, 35, 0.15);
  color: var(--color-gold);
  border: 1px solid var(--border-gold);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.75rem;
}

/* ----------------- Spoke Directory Grid (Category Hubs) ----------------- */
.spoke-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 2rem 0;
}

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

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

.spoke-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.spoke-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-card);
  text-decoration: none;
}

.spoke-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.spoke-card:hover .spoke-card-title {
  color: var(--color-gold);
}

.spoke-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.spoke-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--color-gold);
  font-weight: 700;
  border-top: 1px solid var(--border-subtle);
  padding-top: 0.75rem;
}

/* ----------------- Contextual Official Payment Badge Strip ----------------- */
.official-payments-strip {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin: 2rem 0;
}

.payments-strip-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.85rem;
  text-align: center;
}

.payments-logos-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.payment-official-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.payment-official-link:hover {
  border-color: var(--border-gold);
  color: var(--color-gold);
  text-decoration: none;
  transform: translateY(-1px);
}

.payment-official-link img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.payment-official-link .official-tag {
  font-size: 0.7rem;
  color: var(--color-emerald);
  background: rgba(16, 185, 129, 0.1);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
}

/* ----------------- FAQ Accordion ----------------- */
.faq-section {
  margin: 2.5rem 0;
}

.faq-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1.25rem;
}

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

.faq-question {
  padding: 1rem 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--color-gold);
  font-weight: 800;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
  content: "−";
}

.faq-answer {
  padding: 0 1.25rem 1.15rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border-subtle);
  padding-top: 0.75rem;
}

/* ----------------- E-E-A-T Author & Audit Box ----------------- */
.author-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-gold);
  object-fit: cover;
  flex-shrink: 0;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
}

.author-role {
  font-size: 0.8rem;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

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

/* ----------------- Responsible Gaming Disclaimer ----------------- */
.responsible-gaming-card {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin: 2rem 0;
}

.responsible-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-crimson);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.responsible-text {
  font-size: 0.85rem;
  color: #d1d5db;
  line-height: 1.6;
}

/* ----------------- Footer ----------------- */
.site-footer {
  background: #05070a;
  border-top: 1px solid var(--border-subtle);
  padding: 3rem 0 2rem;
  margin-top: auto;
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

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

.footer-col-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

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

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-sub);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ----------------- Sticky Bottom App Navigation (Mobile) ----------------- */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(9, 12, 18, 0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 64px;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.5);
}

@media (min-width: 992px) {
  .mobile-bottom-nav {
    display: none;
  }
  body {
    padding-bottom: 0;
  }
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 700;
  text-decoration: none;
  flex: 1;
  height: 100%;
  gap: 0.2rem;
  transition: color 0.2s ease;
}

.bottom-nav-item svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

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

.bottom-nav-item.highlight {
  color: #0b0e14;
  position: relative;
  top: -8px;
}

.bottom-nav-item.highlight .icon-circle {
  background: linear-gradient(135deg, #f5a623 0%, #d97706 100%);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(245, 166, 35, 0.4);
}

.bottom-nav-item.highlight .icon-circle svg {
  stroke: #0b0e14;
}

/* ----------------- Mobile Drawer Menu ----------------- */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--bg-secondary);
  z-index: 1000;
  border-left: 1px solid var(--border-gold);
  padding: 1.5rem;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.7);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1rem;
}

.drawer-close {
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

.drawer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.drawer-nav-link {
  color: var(--text-main);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0.5rem 0;
  display: block;
}

.drawer-nav-link:hover {
  color: var(--color-gold);
}

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
