:root {
  --bg-page: #fafaf8;
  --bg-header: #ffffff;
  --bg-footer: #1c1c1e;
  --text-primary: #1a1a1a;
  --text-secondary: #6b7280;
  --accent: #19e56e;
  --accent-deep: #0fa84e;
  --border: #d4d4d8;
  --surface: #ffffff;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-logo: 'Bebas Neue', sans-serif;
  --content-width: 940px;
  --section-gap: 3.5rem;
  --h1-size: clamp(1.75rem, 2.5vw + 1rem, 2.5rem);
  --h2-size: clamp(1.35rem, 2vw + 0.8rem, 1.85rem);
  --h3-size: clamp(1.1rem, 1.5vw + 0.6rem, 1.4rem);
  --body-size: 1.125rem;
  --mono-size: 0.9rem;
  --radius: 6px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 2px 8px rgba(0,0,0,0.08);
  --accent-bg-light: rgba(25, 229, 110, 0.06);
  --accent-bg-medium: rgba(25, 229, 110, 0.1);
  --danger: #dc2626;
  --success: #16a34a;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--body-size);
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
}

/* ===== GENERAL TYPOGRAPHY ===== */

p { margin-bottom: 1.25em; text-align: left; }
p:last-child { margin-bottom: 0; }

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    color: #1a1a1a !important;
}

h1 {
  color: #000000;
}

h2 {
  font-size: var(--h2-size);
  margin-bottom: 1.25rem;
  color: #000000;
}

h3 {
  font-size: var(--h3-size);
  margin-bottom: 1rem;
  scroll-margin-top: 2rem;
}

h1 {
  color: #000000;
}

a {
  color: var(--accent-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}
a:hover { color: var(--accent); }
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

strong { font-weight: 700; }
em { font-style: italic; }

ul, ol {
  margin-bottom: 1.25em;
  padding-left: 1.5em;
  text-align: left;
}
li { margin-bottom: 0.4em; }

blockquote {
  border-left: 3px solid var(--accent);
  padding: 0.75em 1.25em;
  margin: 1.5em 0;
  color: var(--text-secondary);
  font-style: italic;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: 0.95rem;
}
thead { border-bottom: 2px solid var(--border); }
th {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.75em 1em;
  text-align: left;
  color: var(--text-secondary);
}
td {
  padding: 0.75em 1em;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

figure {
  margin: 1.5em auto;
}
figure img {
  display: block;
  max-width: 100%;
  height: auto;
}
figcaption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.5em;
}

/* ===== LAYOUT ===== */

main { width: 100%; }

[data-content] {
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--section-gap);
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

[data-content] h2 {
  scroll-margin-top: 2rem;
}

/* ===== COMPONENTS ===== */

.info-box {
  background: var(--accent-bg-light);
  border: 1px solid rgba(25, 229, 110, 0.15);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5em 0;
  box-shadow: var(--shadow-sm);
}
.info-box p {
  text-align: left;
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.65;
}

.callout {
  border-left: 4px solid var(--accent);
  background: var(--surface);
  padding: 1.25rem 1.5rem;
  margin: 1.5em 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-sm);
}
.callout p {
  text-align: left;
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.65;
}

.key-takeaway {
  border-top: 2px solid var(--accent);
  padding-top: 1rem;
  margin: 2em 0;
}
.key-takeaway p {
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-primary);
}

.fun-fact {
  position: relative;
  padding-left: 1.5rem;
  margin: 1.5em 0;
}
.fun-fact::before {
  content: "\2014";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}
.fun-fact p {
  text-align: left;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.65;
}

.glossary-term {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 1.25em 0;
}
.glossary-term p {
  text-align: left;
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
.glossary-term strong {
  font-family: var(--font-mono);
  font-size: var(--mono-size);
  color: var(--accent-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  flex-shrink: 0;
}

.odds-example {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin: 1.5em 0;
  box-shadow: var(--shadow-md);
  overflow-x: auto;
}
.odds-example table { margin: 0; }
.odds-example th {
  background: var(--bg-page);
  font-size: 0.8rem;
}
.odds-example td {
  font-family: var(--font-mono);
  font-size: var(--mono-size);
}

.comparison {
  margin: 1.5em 0;
  overflow-x: auto;
}
.comparison table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.comparison th {
  background: var(--bg-page);
}

.dos-donts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.5em 0;
}
.dos-donts > div:first-child {
  border-left: 3px solid var(--success);
  padding-left: 1.25rem;
}
.dos-donts > div:last-child {
  border-left: 3px solid var(--danger);
  padding-left: 1.25rem;
}
.dos-donts p {
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75em;
}
.dos-donts ul { padding-left: 1.25em; }
.dos-donts li {
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.6;
}

.pre-bet-checklist {
  margin: 1.5em 0;
}
.pre-bet-checklist > p {
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-deep);
  margin-bottom: 0.75em;
}
.pre-bet-checklist ul {
  list-style: none;
  padding-left: 1.75rem;
  border-left: 2px solid var(--border);
}
.pre-bet-checklist li {
  position: relative;
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.65;
  padding: 0.3em 0;
}
.pre-bet-checklist li::before {
  content: "\2610";
  position: absolute;
  left: -1.6rem;
  color: var(--accent-deep);
  background: var(--bg-page);
  font-size: 1rem;
}

.at-a-glance {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0;
  margin: 1.5em 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.at-a-glance > div {
  padding: 1.25rem 1rem;
  text-align: center;
  border-right: 1px solid var(--border);
}
.at-a-glance > div:last-child { border-right: none; }
.at-a-glance p {
  text-align: center;
  margin-bottom: 0.25em;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--text-secondary);
}
.at-a-glance p:first-child {
  text-align: center;
}
.at-a-glance strong {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-primary);
  display: block;
  margin-bottom: 0.15em;
}

.worked-example {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin: 1.5em 0;
  box-shadow: var(--shadow-md);
}
.worked-example p {
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.65;
}
.worked-example strong {
  font-family: var(--font-mono);
  font-size: var(--mono-size);
}
.worked-example hr {
  border: none;
  border-top: 1px dashed var(--border);
  margin: 1em 0;
}

.section-bridge {
  text-align: center;
  margin: 2.5em 0;
  position: relative;
  font-style: italic;
  color: var(--accent-deep);
  font-size: 0.95rem;
}
.section-bridge::before,
.section-bridge::after {
  content: "\00B7\00B7\00B7";
  color: var(--border);
  letter-spacing: 0.5em;
  margin: 0 0.75em;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin: 1.5em 0;
}
.card-grid > div {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.card-grid p { text-align: left; font-size: 0.95rem; }

.tldr {
  background: var(--surface);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-sm);
}
.tldr h2 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}
.tldr ul {
  text-align: left;
  margin-bottom: 0;
}
.tldr li {
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 0.6em;
}
.tldr li:last-child { margin-bottom: 0; }

.author-bio {
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-style: italic;
}

/* ===== HEADER ===== */

.site-header {
  background: var(--bg-header);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}
.site-logo img {
  display: block;
  width: 180px;
  height: auto;
}
.header-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-trust {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-weight: 700;
}
.header-date {
  font-size: 0.7rem;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  background: var(--bg-page);
  padding: 0.25em 0.6em;
  border-radius: 3px;
  border: 1px solid var(--border);
}

/* ===== HERO ===== */

[data-content="hero"] {
  max-width: 100%;
  width: 100%;
  background: var(--bg-page);
  padding: 3rem 1.25rem 2.5rem;
  text-align: center;
  margin-bottom: var(--section-gap);
}
[data-content="hero"] > * {
  position: relative;
  z-index: 1;
}
[data-content="hero"] .hero-rubric {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-deep);
  margin-bottom: 1rem;
}
[data-content="hero"] h1 {
  font-size: var(--h1-size);
  max-width: var(--content-width);
  margin: 0 auto 1rem;
  text-align: center;
  line-height: 1.15;
}
[data-content="hero"] .hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 0.75rem;
  text-align: center;
  letter-spacing: 0.01em;
}
[data-content="hero"] .hero-byline {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin: 0 auto 1.5rem;
  text-align: center;
}
[data-content="hero"] figure {
  max-width: var(--content-width);
  margin: 0 auto;
}
[data-content="hero"] figure img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 0 auto;
}
[data-content="hero"] .hero-cta {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.6em 1.5em;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  background: var(--accent);
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
[data-content="hero"] .hero-cta:hover {
  background: var(--accent-deep);
  color: #fff;
  transform: translateY(-1px);
}

/* ===== TOC ===== */

[data-content="toc"] {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-sm);
}
[data-content="toc"] .toc-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  text-align: left;
}
[data-content="toc"] .toc-grid {
  column-count: 2;
  column-gap: 2rem;
}
[data-content="toc"] .toc-group {
  break-inside: avoid;
  margin-bottom: 0.75em;
}
[data-content="toc"] .toc-group a {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  margin-bottom: 0.3em;
  transition: color 0.2s ease;
}
[data-content="toc"] .toc-group a:hover { color: var(--accent-deep); }
[data-content="toc"] .toc-sub {
  list-style: none;
  padding-left: 1rem;
  margin: 0;
}
[data-content="toc"] .toc-sub li { margin-bottom: 0.2em; }
[data-content="toc"] .toc-sub a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-secondary);
}
[data-content="toc"] .toc-sub a:hover { color: var(--accent-deep); }

/* ===== FAQ ===== */

[data-content="faq"] details {
  border-bottom: 1px solid var(--border);
  padding: 0;
  interpolate-size: allow-keywords;
}
[data-content="faq"] details:last-of-type { border-bottom: none; }

[data-content="faq"] summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 1em 0;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  list-style: none;
  transition: color 0.2s ease;
}
[data-content="faq"] summary::-webkit-details-marker { display: none; }
[data-content="faq"] summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--accent-deep);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}
[data-content="faq"] details[open] summary::after {
  content: "\2212";
  transform: rotate(180deg);
}
[data-content="faq"] summary:hover { color: var(--accent-deep); }

[data-content="faq"] details::details-content {
  opacity: 0;
  block-size: 0;
  overflow: hidden;
  transition: opacity 0.35s ease, block-size 0.35s ease, content-visibility 0.35s ease allow-discrete;
}
[data-content="faq"] details[open]::details-content {
  opacity: 1;
  block-size: auto;
}

@supports not selector(::details-content) {
  [data-content="faq"] details > div {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease;
  }
  [data-content="faq"] details[open] > div {
    max-height: 500px;
    opacity: 1;
  }
}

[data-content="faq"] details div {
  padding-bottom: 1em;
}
[data-content="faq"] details div p {
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ===== BACK TO TOP ===== */

.back-to-top {
  display: block;
  text-align: center;
  margin: 2rem auto;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}
.back-to-top:hover { color: var(--accent-deep); }

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

.site-footer {
  background: var(--bg-footer);
  color: #a1a1aa;
  padding: 3rem 1.5rem 1.5rem;
  font-size: 0.78rem;
  line-height: 1.65;
}
.footer-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #e4e4e7;
  margin-bottom: 0.75rem;
  text-align: left;
}
.footer-col p {
  text-align: left;
  color: #a1a1aa;
  margin-bottom: 0.5em;
  font-size: 0.78rem;
}
.footer-col a {
  color: #a1a1aa;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--accent); }
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col li {
  margin-bottom: 0.35em;
  text-align: left;
}
.footer-bottom {
  max-width: 960px;
  margin: 2rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid #3f3f46;
  text-align: center;
  color: #71717a;
  font-size: 0.72rem;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  [data-content] {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  [data-content="hero"] {
    padding: 2rem 1rem 2rem;
  }
  .dos-donts {
    grid-template-columns: 1fr;
  }
  .at-a-glance {
    grid-template-columns: 1fr 1fr;
  }
  .at-a-glance > div {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .at-a-glance > div:nth-child(odd) {
    border-right: 1px solid var(--border);
  }
  .at-a-glance > div:nth-last-child(-n+2):nth-child(odd),
  .at-a-glance > div:last-child {
    border-bottom: none;
  }
  [data-content="toc"] .toc-grid {
    column-count: 1;
  }
  .glossary-term {
    flex-direction: column;
    gap: 4px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .comparison { overflow-x: auto; }
  .odds-example { overflow-x: auto; }
  .site-header {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .header-meta { gap: 0.5rem; }
}

@media (max-width: 480px) {
  .at-a-glance {
    grid-template-columns: 1fr;
  }
  .at-a-glance > div {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .at-a-glance > div:last-child { border-bottom: none; }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   UNIVERSAL DESKTOP & MOBILE MENU + LOGO
   ========================================= */

/* Header Base */
.site-header {
    background-color: var(--color-bg, #121212);
    border-bottom: 1px solid var(--color-border, #333333);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Mobile defaults for navigation bar */
.top-navigation-bar {
    width: 100%;
    margin: 0 auto;
    padding: 15px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Fixes */
.site-logo img {
    max-height: 55px; 
    width: auto !important; 
    display: block;
    transition: transform 0.2s ease;
}

.site-logo img:hover {
    transform: scale(1.02);
}

/* Desktop Menu */
.site-nav--desktop {
    display: none; 
}

/* Desktop Grid Layout: Logo left, Menu center */
@media (min-width: 1024px) {
    .top-navigation-bar {
        max-width: 100%;
        padding: 15px 40px; 
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }
    
    .site-logo {
        grid-column: 1;
        justify-self: start; 
        margin: 0;
    }

    .site-nav--desktop {
        display: block;
        grid-column: 2;
        justify-self: center; 
    }

    .mobile-controls {
        display: none; 
    }
    
    .menu-desktop {
        display: flex;
        gap: 30px;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .menu-desktop a {
        text-decoration: none;
        color: var(--color-text, #ffffff);
        font-family: var(--font-body, sans-serif);
        font-weight: 500;
        font-size: 16px;
        transition: color 0.2s ease;
    }
    
    .menu-desktop a:hover {
        color: var(--color-accent, #eab308);
    }
}

/* Mobile Burger Button */
.burger {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 5px;
    z-index: 1000;
}

.burger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--color-text, #ffffff);
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 2px;
}

/* Burger Animation to X */
.burger.is-active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.burger.is-active span:nth-child(2) {
    opacity: 0;
}
.burger.is-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Slider */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%; 
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--color-bg, #121212);
    box-shadow: -5px 0 20px rgba(0,0,0,0.5);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
    padding: 60px 30px;
}

.mobile-menu.is-open {
    right: 0; 
}

.mobile-menu__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 36px;
    line-height: 1;
    color: var(--color-text, #ffffff);
    cursor: pointer;
    transition: color 0.2s ease;
}

.mobile-menu__close:hover {
    color: var(--color-accent, #eab308);
}

.menu-mobile {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.menu-mobile a {
    text-decoration: none;
    color: var(--color-text, #ffffff);
    font-size: 20px;
    font-family: var(--font-display, sans-serif);
    font-weight: 600;
    display: block;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.menu-mobile a:hover {
    color: var(--color-accent, #eab308);
    padding-left: 10px; 
}

/* Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px); 
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
    z-index: 998;
}

.mobile-menu-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

#crumbs {
    padding: 10px 0;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
    text-align: center; 
}

#crumbs a {
    text-decoration: none;
    color: #0073aa; 
}

#crumbs a:hover {
    text-decoration: underline;
}

#crumbs .current {
    font-weight: bold;
    color: rgb(15, 12, 12);
}



.site-footer h3, 
.site-footer .footer-col h3 {
    color: #fdfffe !important;
}