/* === 1. CSS Variables & Reset === */
:root {
  --color-primary: #0B3D2E;
  --color-primary-light: #1A5C40;
  --color-accent: #D4A843;
  --color-bg: #F7F5F0;
  --color-text: #2D2D2D;
  --color-surface: #4A7C59;
  --color-border: #E8D5A3;
  --color-text-secondary: #5a5a5a;
  --color-surface-alpha: rgba(74, 124, 89, 0.12);
  --color-success: #2e7d32;
  --color-danger: #c62828;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --h1-size: clamp(2rem, 4vw, 3.25rem);
  --h2-size: clamp(1.5rem, 3vw, 2.25rem);
  --h3-size: clamp(1.15rem, 2vw, 1.5rem);
  --body-size: clamp(1rem, 1.5vw, 1.125rem);
  --small-size: 0.875rem;
  --content-width: 800px;
  --section-gap: clamp(3rem, 6vw, 5rem);
  --component-radius: 6px;
  --component-shadow: 0 1px 4px rgba(0,0,0,0.06), 0 2px 12px rgba(0,0,0,0.04);

    /* --- AUTO-FORCED DARK THEME --- */
    --color-primary: #1A5C40;
    --color-primary-light: #237a54;
    --color-bg: #1a1a18;
    --color-text: #e0ddd6;
    --color-surface: #2a4a34;
    --color-border: #4a4231;
    --color-text-secondary: #a0a0a0;
    --color-surface-alpha: rgba(74, 124, 89, 0.15);
    --component-shadow: 0 1px 4px rgba(0,0,0,0.2), 0 2px 12px rgba(0,0,0,0.15);
}



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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--body-size);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === 2. General Typography === */
h1 { font-family: var(--font-display); font-size: var(--h1-size); font-weight: 700; line-height: 1.15; }
h2 { font-family: var(--font-display); font-size: var(--h2-size); font-weight: 700; line-height: 1.25; margin-bottom: 1.25rem; text-align: left; scroll-margin-top: 2rem; }
h3 { font-family: var(--font-body); font-size: var(--h3-size); font-weight: 600; line-height: 1.35; margin-top: 2.25rem; margin-bottom: 0.75rem; text-align: left; scroll-margin-top: 2rem; }
p { text-align: left; margin-bottom: 1.25rem; }
ul, ol { text-align: left; padding-left: 1.5rem; margin-bottom: 1.25rem; }
li { margin-bottom: 0.4rem; }
strong { font-weight: 600; }
blockquote { border-left: 3px solid var(--color-accent); padding-left: 1.25rem; margin: 1.5rem 0; font-style: italic; color: var(--color-text-secondary); }
a { color: var(--color-surface); text-decoration: underline; text-underline-offset: 2px; transition: color 0.2s; }
a:hover { color: var(--color-accent); }
a:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; border-radius: 2px; }
small { font-size: var(--small-size); }

table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: var(--small-size); }
thead th { background: var(--color-primary); color: #fff; font-weight: 600; text-align: left; padding: 0.75rem 1rem; }
tbody td { padding: 0.65rem 1rem; border-bottom: 1px solid var(--color-border); text-align: left; }
tbody tr:nth-child(even) { background: var(--color-surface-alpha); }

@media (prefers-color-scheme: dark) {
  thead th { background: #0f3525; }
}

/* === 3. Layout — Sections === */
header { margin: 0; padding: 0; }

main { width: 100%; }

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

[data-content]:last-child { padding-bottom: var(--section-gap); }

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

.hero-image { width: 100%; max-width: 100%; height: auto; display: block; margin: 0 auto; }
.article-image { width: 100%; max-width: 100%; height: auto; display: block; margin: 0 auto; border-radius: var(--component-radius); }

/* === 4. Components === */

/* -- info-box -- */
.info-box {
  background: var(--color-surface-alpha);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 var(--component-radius) var(--component-radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
  box-shadow: var(--component-shadow);
}
.info-box p { text-align: left; margin-bottom: 0.5rem; color: var(--color-text); }
.info-box p:last-child { margin-bottom: 0; }

/* -- callout / callout-stat -- */
.callout-stat {
  text-align: center;
  margin: 2rem 0;
  padding: 1.5rem;
}
.callout-stat p:first-child {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.1;
  margin-bottom: 0.35rem;
  text-align: center;
}
.callout-stat p:last-child {
  font-size: var(--small-size);
  color: var(--color-text-secondary);
  text-align: center;
  margin-bottom: 0;
}

.callout {
  border-left: 4px solid var(--color-accent);
  background: transparent;
  padding: 1rem 1.25rem;
  margin: 1.75rem 0;
}
.callout p { text-align: left; color: var(--color-text); margin-bottom: 0; }

/* -- key-takeaway -- */
.key-takeaway {
  border-top: 2px solid var(--color-accent);
  padding-top: 1rem;
  margin: 2rem 0;
}
.key-takeaway p {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--color-text);
  margin-bottom: 0;
}

/* -- fun-fact -- */
.fun-fact {
  position: relative;
  padding-left: 1.5rem;
  margin: 1.5rem 0;
}
.fun-fact::before {
  content: '\2014';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent);
  font-weight: 700;
}
.fun-fact p {
  font-style: italic;
  color: var(--color-text-secondary);
  text-align: left;
  margin-bottom: 0;
}

/* -- glossary-term -- */
.glossary-term {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 1.25rem 0;
}
.glossary-term p { margin-bottom: 0; text-align: left; }
.glossary-term strong {
  font-family: 'Courier New', monospace;
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  font-weight: 600;
}
.glossary-term span, .glossary-term p:not(:first-child) { color: var(--color-text-secondary); }
@media (max-width: 600px) {
  .glossary-term { flex-direction: column; gap: 4px; }
}

/* -- worked-example -- */
.worked-example {
  background: var(--color-surface-alpha);
  padding: 1.5rem 1.75rem;
  border-radius: var(--component-radius);
  margin: 1.75rem 0;
  box-shadow: var(--component-shadow);
}
.worked-example p {
  font-family: 'Courier New', monospace;
  font-size: var(--small-size);
  line-height: 1.8;
  text-align: left;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}
.worked-example p:last-child { margin-bottom: 0; }
.worked-example p strong { color: var(--color-text); }

/* -- comparison / comparison-table -- */
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--color-border);
  border-radius: var(--component-radius);
  overflow: hidden;
  margin: 1.75rem 0;
  box-shadow: var(--component-shadow);
}
.comparison > div {
  background: var(--color-bg);
  padding: 1.25rem;
}
.comparison > div p { text-align: left; color: var(--color-text); margin-bottom: 0.5rem; }
.comparison > div p:last-child { margin-bottom: 0; }
@media (max-width: 600px) {
  .comparison { grid-template-columns: 1fr; }
}

/* -- card-grid -- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin: 1.75rem 0;
}
.card-grid > div {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--component-radius);
  padding: 1.25rem;
  box-shadow: var(--component-shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card-grid > div:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.card-grid > div p { text-align: left; color: var(--color-text); }

/* -- dos-donts -- */
.dos-donts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.75rem 0;
}
.dos-donts > div h4 { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem; }
.dos-donts > div:first-child h4 { color: var(--color-success); }
.dos-donts > div:last-child h4 { color: var(--color-danger); }
.dos-donts ul { padding-left: 1.25rem; }
.dos-donts li { text-align: left; color: var(--color-text); margin-bottom: 0.35rem; font-size: var(--small-size); }
@media (max-width: 600px) {
  .dos-donts { grid-template-columns: 1fr; }
}

/* -- pre-bet-checklist -- */
.pre-bet-checklist {
  margin: 2rem 0;
}
.pre-bet-checklist h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--small-size);
  color: var(--color-accent);
  margin-bottom: 1rem;
}
.pre-bet-checklist ul {
  list-style: none;
  padding-left: 1.75rem;
  border-left: 2px solid var(--color-border);
  position: relative;
}
.pre-bet-checklist li {
  position: relative;
  padding-left: 0.25rem;
  margin-bottom: 0.75rem;
  text-align: left;
  color: var(--color-text);
}
.pre-bet-checklist li::before {
  content: '\2610';
  position: absolute;
  left: -1.65rem;
  color: var(--color-accent);
  background: var(--color-bg);
  padding: 0 2px;
  font-size: 1rem;
}

/* -- at-a-glance -- */
.at-a-glance {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  margin: 1.75rem 0;
}
.at-a-glance > div {
  padding: 1.25rem;
  border-right: 1px solid var(--color-border);
}
.at-a-glance > div:last-child { border-right: none; }
.at-a-glance > div p:first-child {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 700;
  text-align: center;
  color: var(--color-text);
  margin-bottom: 0.35rem;
}
.at-a-glance > div p:last-child {
  font-size: var(--small-size);
  color: var(--color-text-secondary);
  text-align: center;
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .at-a-glance { grid-template-columns: 1fr; }
  .at-a-glance > div { border-right: none; border-bottom: 1px solid var(--color-border); }
  .at-a-glance > div:last-child { border-bottom: none; }
}

/* -- odds-example -- */
.odds-example {
  background: var(--color-primary);
  color: var(--color-bg);
  border-radius: var(--component-radius);
  padding: 1.5rem;
  margin: 1.75rem 0;
  box-shadow: var(--component-shadow);
  text-align: center;
}
.odds-example p { text-align: center; color: var(--color-bg); margin-bottom: 0.5rem; }
.odds-example p:first-child { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--color-accent); margin-bottom: 0.25rem; }
.odds-example p:last-child { margin-bottom: 0; font-size: var(--small-size); }

@media (prefers-color-scheme: dark) {
  .odds-example { background: #0a2e20; color: #e0ddd6; }
  .odds-example p { color: #e0ddd6; }
  .odds-example p:first-child { color: var(--color-accent); }
}

/* -- section-bridge -- */
.section-bridge {
  text-align: center;
  margin: 2.5rem 0 1.5rem;
  position: relative;
}
.section-bridge p {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-accent);
  text-align: center;
  margin-bottom: 0;
  display: inline;
}
.section-bridge::before, .section-bridge::after {
  content: '\2014\2014';
  color: var(--color-border);
  margin: 0 0.75rem;
  vertical-align: middle;
}

/* -- tldr -- */
.tldr {
  background: var(--color-surface-alpha);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 var(--component-radius) var(--component-radius) 0;
  padding: 1.5rem 1.75rem;
  margin-top: 0;
  margin-bottom: 0;
}
.tldr h2 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-text);
}
.tldr ul { padding-left: 1.25rem; }
.tldr li { font-size: var(--small-size); line-height: 1.65; margin-bottom: 0.6rem; text-align: left; color: var(--color-text); }

/* === 5. Hero Section === */
[data-content="hero"] {
  max-width: none;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0;
  background: linear-gradient(160deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  position: relative;
  overflow: hidden;
}
[data-content="hero"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 48px,
      rgba(255,255,255,0.03) 48px,
      rgba(255,255,255,0.03) 50px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 80px,
      rgba(255,255,255,0.02) 80px,
      rgba(255,255,255,0.02) 82px
    );
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 80%);
}
.hero-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6rem) 1.25rem clamp(3rem, 7vw, 5rem);
  position: relative;
  z-index: 1;
}
[data-content="hero"] h1 {
  color: #fff;
  margin-bottom: 1rem;
  max-width: 620px;
}
.hero-subtitle {
  font-family: var(--font-body);
  font-size: var(--small-size);
  color: var(--color-accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.08);
  padding: 0.3rem 0.7rem;
  border-radius: 3px;
}
.hero-badge time { font-weight: 600; color: rgba(255,255,255,0.9); }
.trust-marker {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* === TOC (vertical list) === */
[data-content="toc"] {
  padding-top: calc(var(--section-gap) * 0.6);
}
[data-content="toc"] h2 {
  font-size: clamp(1.1rem, 1.8vw, 1.25rem);
  margin-bottom: 1rem;
}
.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.toc-list > li { margin-bottom: 0.5rem; }
.toc-list > li > a {
  font-weight: 600;
  font-size: var(--body-size);
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s;
}
.toc-list > li > a:hover { color: var(--color-accent); }
.toc-list ul {
  list-style: none;
  padding-left: 1.25rem;
  margin: 0.3rem 0 0.6rem;
}
.toc-list ul li { margin-bottom: 0.25rem; }
.toc-list ul a {
  font-size: var(--small-size);
  font-weight: 400;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.toc-list ul a:hover { color: var(--color-accent); }

/* === FAQ Accordion === */
details {
  border-bottom: 1px solid var(--color-border);
  interpolate-size: allow-keywords;
}
summary {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--body-size);
  padding: 1rem 2rem 1rem 0;
  cursor: pointer;
  position: relative;
  list-style: none;
  color: var(--color-text);
  transition: color 0.2s;
}
summary::-webkit-details-marker { display: none; }
summary::marker { display: none; content: ''; }
summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--color-accent);
  transition: transform 0.3s;
}
details[open] summary::after {
  content: '\2212';
  transform: translateY(-50%) rotate(180deg);
}
summary:hover { color: var(--color-accent); }
summary:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }

::details-content {
  transition: opacity 0.3s ease, block-size 0.3s ease, content-visibility 0.3s allow-discrete;
  opacity: 0;
  block-size: 0;
  overflow: clip;
}
details[open]::details-content {
  opacity: 1;
  block-size: auto;
}
@supports not selector(::details-content) {
  @keyframes fade-in {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
  }
  details[open] > *:not(summary) {
    animation: fade-in 0.3s ease forwards;
  }
}
[data-content="faq"] details > div > p {
  padding: 0 0 1rem;
  color: var(--color-text);
  text-align: left;
}


/* === 6. Media Queries === */
@media (max-width: 768px) {
  :root { --section-gap: 2.5rem; }
  [data-content] { padding-left: 1rem; padding-right: 1rem; }
  .hero-inner { padding-left: 1rem; padding-right: 1rem; }
  table { font-size: 0.8rem; }
  thead th, tbody td { padding: 0.5rem 0.6rem; }
}

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

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

.top-navigation-bar {
    max-width: 950px; /* Optimized width to keep menu centered but separated */
    margin: 0 auto;
    padding: 15px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Pushes logo left and burger/menu right */
}

/* --- LOGO FIXES --- */
.site-logo img {
    max-height: 75px; /* Optimal height for most logos */
    width: auto !important; /* Prevents squishing */
    display: block;
    transition: transform 0.2s ease;
}

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

/* --- DESKTOP MENU --- */
.site-nav--desktop {
    display: none; /* Hidden on mobile by default */
}

@media (min-width: 769px) {
    .site-nav--desktop {
        display: block;
    }
    .mobile-controls {
        display: none; /* Hide burger on desktop */
    }
    
    .menu-desktop {
        display: flex;
        gap: 30px;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .menu-desktop a {
        text-decoration: none;
        color: var(--color-text);
        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);
    }
}

/* --- 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);
    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%; /* Hidden off-screen */
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--color-bg);
    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; /* Slide in */
}

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

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

.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);
    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);
    padding-left: 10px; /* Nice slide effect on hover */
}

/* --- 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); /* Beautiful blur effect */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
    z-index: 998;
}

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

/* =========================================
   4-COLUMN FOOTER (Grand National Theme)
   ========================================= */
.site-footer-4col {
    background-color: #111111; /* Deep dark background */
    color: var(--color-text, #e0ddd6);
    padding: 70px 20px 30px;
    margin-top: 80px;
    font-family: var(--font-body, sans-serif);
    border-top: 3px solid var(--color-accent); /* Gold border from your theme variables */
}

.footer-4col-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

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

@media (min-width: 1024px) {
    .footer-4col-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

/* Gold Titles with Serif Font */
.widget-title {
    color: var(--color-accent); 
    font-family: var(--font-display); /* Using your elegant serif font */
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 0;
    letter-spacing: 0.03em;
}

.widget-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-list li {
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.widget-list a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.widget-list a:hover {
    color: var(--color-accent);
}

/* Gold bullets */
.bullet-list li {
    position: relative;
    padding-left: 18px;
}

.bullet-list li::before {
    content: '•';
    color: var(--color-accent); 
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
    line-height: 1;
}

.clean-list li {
    padding-left: 0;
    padding-bottom: 0.8rem;
}

.clean-list li::before {
    display: none;
}

.footer-4col-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
}

.footer-4col-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    text-align: center;
}

.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--color-accent);
    color: #111;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--component-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 99;
}

.back-to-top-btn.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    background-color: #fff;
    transform: translateY(-5px);
}

body {
  overflow-x: clip;
}