/* ========================================
           CSS VARIABLES & RESET
           ======================================== */
        :root {
            /* Backgrounds */
            --bg-page: #fafafa;
            --bg-header: #ffffff;
            --bg-footer: #1a1a1a;
            --bg-card: #ffffff;
            
            /* Text */
            --text-primary: #1a1a1a;
            --text-secondary: #4a4a4a;
            --text-muted: #6b6b6b;
            --text-inverse: #ffffff;
            
            /* Brand */
            --accent: #600514;
            --accent-hover: #7a0a1f;
            --accent-light: #f5e6e8;
            --secondary: #2563eb;
            --secondary-light: #eff6ff;
            
            /* Borders */
            --border: #e5e5e5;
            --border-strong: #d4d4d4;
            
            /* Semantic */
            --success: #16a34a;
            --success-light: #f0fdf4;
            --warning: #ca8a04;
            --warning-light: #fefce8;
            --error: #dc2626;
            --error-light: #fef2f2;
            
            /* Typography */
            --font-heading: 'Barlow Condensed', sans-serif;
            --font-body: 'Inter', sans-serif;
            --font-mono: 'JetBrains Mono', monospace;
            --font-logo: 'Oswald', sans-serif;
            --heading-weight: 700;
            --h1-size: clamp(2.5rem, 5vw, 4rem);
            --h2-size: clamp(1.75rem, 3vw, 2.5rem);
            --h3-size: clamp(1.25rem, 2vw, 1.75rem);
            --body-size: 1.125rem;
            --body-weight: 400;
            --body-weight-bold: 600;
            --line-height: 1.7;
            --mono-size: 0.9375rem;
            
            /* Layout */
            --content-width: 940px;
            --section-gap: 4rem;
            --header-height: 72px;
        }
        
        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            margin: 0;
            padding: 0;
            font-family: var(--font-body);
            font-size: var(--body-size);
            font-weight: var(--body-weight);
            line-height: var(--line-height);
            color: var(--text-primary);
            background-color: var(--bg-page);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        
        /* ========================================
           TYPOGRAPHY - Global
           ======================================== */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: var(--heading-weight);
            line-height: 1.2;
            margin: 0 0 1rem 0;
            text-align: left;
        }
        
        h2 {
            font-size: var(--h2-size);
            margin-top: 0;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
            scroll-margin-top: 2rem;
        }
        
        h3 {
            font-size: var(--h3-size);
            margin-top: 2rem;
            margin-bottom: 1rem;
            color: #fafdff;
            scroll-margin-top: 2rem;
        }
        
        p {
            margin: 0 0 1.25rem 0;
            text-align: left;
        }
        
        ul, ol {
            margin: 0 0 1.25rem 0;
            padding-left: 1.5rem;
        }
        
        li {
            margin-bottom: 0.5rem;
            text-align: left;
        }
        
        a {
            color: var(--accent);
            text-decoration: underline;
            text-underline-offset: 3px;
            transition: color 0.2s ease;
        }
        
        a:hover {
            color: var(--accent-hover);
        }
        
        a:focus {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }
        
        strong {
            font-weight: var(--body-weight-bold);
        }
        
        blockquote {
            margin: 1.5rem 0;
            padding: 1rem 1.5rem;
            border-left: 3px solid var(--accent);
            background: var(--accent-light);
            font-style: italic;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.95rem;
        }
        
        th, td {
            padding: 0.75rem 1rem;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }
        
        th {
            font-weight: var(--body-weight-bold);
            background: var(--bg-card);
            color: var(--text-primary);
        }
        
        figure {
            margin: 1.5rem auto;
            max-width: 100%;
        }
        
        figure img {
            display: block;
            max-width: 100%;
            height: auto;
        }
        
        figcaption {
            text-align: center;
            font-size: 0.875rem;
            color: var(--text-muted);
            margin-top: 0.5rem;
        }
        
        /* ========================================
           LAYOUT - Sections
           ======================================== */
     
        
        .header-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .site-logo img {
            height: 40px;
            width: auto;
            display: block;
        }
        
        .header-meta {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .trust-marker {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-muted);
            font-weight: var(--body-weight-bold);
        }
        
        .date-badge {
            font-size: 0.75rem;
            color: var(--text-secondary);
            background: var(--bg-page);
            padding: 0.35rem 0.75rem;
            border-radius: 4px;
            border: 1px solid var(--border);
        }
        
        main {
            width: 100%;
        }
        
        [data-content] {
            max-width: var(--content-width);
            margin-left: auto;
            margin-right: auto;
            padding: 0 1.5rem;
            margin-bottom: var(--section-gap);
        }
        
        /* ========================================
           HERO SECTION
           ======================================== */
        [data-content="hero"] {
            max-width: 100%;
            width: 100vw;
            padding: 5rem 1.5rem 4rem;
            text-align: center;
            background-color: var(--bg-page);
            background-image: 
                radial-gradient(ellipse 80% 50% at 50% 0%, rgba(96, 5, 20, 0.06) 0%, transparent 60%),
                linear-gradient(90deg, var(--border) 1px, transparent 1px),
                linear-gradient(180deg, var(--border) 1px, transparent 1px);
            background-size: 100% 100%, 60px 60px, 60px 60px;
            background-position: center top, 0 0, 0 0;
            margin-bottom: var(--section-gap);
        }
        
        [data-content="hero"] .hero-rubric {
            position: relative;
            z-index: 1;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--accent);
            font-weight: var(--body-weight-bold);
            margin-bottom: 1.5rem;
            text-align: center;
        }
        
        [data-content="hero"] h1 {
            position: relative;
            z-index: 1;
            font-size: var(--h1-size);
            max-width: 900px;
            margin: 0 auto 1.5rem;
            text-align: center;
            color: var(--text-primary);
        }
        
        [data-content="hero"] .hero-subtitle {
            position: relative;
            z-index: 1;
            font-size: 1.125rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto 1rem;
            text-align: center;
            font-style: italic;
        }
        
        [data-content="hero"] .hero-byline {
            position: relative;
            z-index: 1;
            font-size: 0.875rem;
            color: var(--text-muted);
            margin-bottom: 2rem;
            text-align: center;
        }
        
        [data-content="hero"] figure {
            position: relative;
            z-index: 1;
            max-width: var(--content-width);
            margin: 2rem auto;
        }
        
        [data-content="hero"] figure img {
            border-radius: 8px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        }
        
        .hero-cta {
            position: relative;
            z-index: 1;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 2rem;
            padding: 0.875rem 1.75rem;
            background: var(--accent);
            color: var(--text-inverse);
            text-decoration: none;
            font-weight: var(--body-weight-bold);
            font-size: 0.9375rem;
            border-radius: 6px;
            transition: background 0.2s ease, transform 0.2s ease;
        }
        
        .hero-cta:hover {
            background: var(--accent-hover);
            color: var(--text-inverse);
            transform: translateY(-2px);
        }
        
        /* ========================================
           TL;DR SECTION
           ======================================== */
        .tldr[data-content="tldr"] {
            background: var(--bg-card);
            border-left: 4px solid var(--accent);
            padding: 1.5rem 2rem;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
            margin-top: -2rem;
            margin-bottom: var(--section-gap);
        }
        
        .tldr[data-content="tldr"] h2 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
            color: var(--accent);
        }
        
        .tldr[data-content="tldr"] ul {
            margin: 0;
            padding-left: 1.25rem;
        }
        
        .tldr[data-content="tldr"] li {
            margin-bottom: 0.75rem;
            color: var(--text-secondary);
        }
        
        /* ========================================
           TABLE OF CONTENTS - Accordion
           ======================================== */
        [data-content="toc"] {
            margin-bottom: var(--section-gap);
        }
        
        .toc-accordion {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .toc-accordion summary {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 1.5rem;
            font-family: var(--font-heading);
            font-weight: var(--heading-weight);
            font-size: 1.125rem;
            color: var(--text-primary);
            cursor: pointer;
            list-style: none;
            transition: background 0.2s ease;
        }
        
        .toc-accordion summary::-webkit-details-marker {
            display: none;
        }
        
        .toc-accordion summary::after {
            content: '+';
            font-size: 1.25rem;
            font-weight: 400;
            color: var(--accent);
            transition: transform 0.3s ease;
        }
        
        .toc-accordion[open] summary::after {
            transform: rotate(45deg);
        }
        
        .toc-accordion summary:hover {
            background: var(--accent-light);
        }
        
        .toc-accordion > div {
            overflow: hidden;
            max-height: 0;
            opacity: 0;
            transition: max-height 0.35s ease, opacity 0.3s ease;
        }
        
        .toc-accordion[open] > div {
            max-height: 600px;
            opacity: 1;
        }
        
        .toc-list {
            padding: 0 1.5rem 1.5rem;
            margin: 0;
            list-style: none;
        }
        
        .toc-list li {
            margin-bottom: 0.25rem;
        }
        
        .toc-list a {
            display: block;
            padding: 0.5rem 0;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.95rem;
            border-bottom: 1px solid transparent;
            transition: color 0.2s ease, border-color 0.2s ease;
        }
        
        .toc-list a:hover {
            color: var(--accent);
            border-bottom-color: var(--accent-light);
        }
        
        .toc-list ul {
            list-style: none;
            padding-left: 1.25rem;
            margin: 0.25rem 0 0.5rem;
        }
        
        .toc-list ul a {
            font-size: 0.875rem;
            color: var(--text-muted);
        }
        
        /* ========================================
           COMPONENTS - info-box
           ======================================== */
        .info-box {
            background: var(--accent-light);
            border-left: 4px solid var(--accent);
            padding: 1.25rem 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 6px 6px 0;
        }
        
        .info-box p {
            margin: 0;
            color: var(--text-primary);
        }
        
        /* ========================================
           COMPONENTS - callout
           ======================================== */
        .callout {
            background: var(--bg-card);
            border: 1px solid var(--border-strong);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        }
        
        .callout p {
            margin: 0;
            color: var(--text-primary);
        }
        
        /* ========================================
           COMPONENTS - key-takeaway
           ======================================== */
        .key-takeaway {
            border-top: 2px solid var(--accent);
            padding-top: 1rem;
            margin: 2rem 0;
        }
        
        .key-takeaway p {
            font-family: var(--font-heading);
            font-size: 1.25rem;
            font-weight: var(--heading-weight);
            color: var(--text-primary);
            margin: 0;
        }
        
        /* ========================================
           COMPONENTS - fun-fact
           ======================================== */
        .fun-fact {
            position: relative;
            padding-left: 1.5rem;
            margin: 1.5rem 0;
        }
        
        .fun-fact::before {
            content: '—';
            position: absolute;
            left: 0;
            top: 0;
            color: var(--accent);
            font-weight: var(--heading-weight);
        }
        
        .fun-fact p {
            font-style: italic;
            color: var(--text-secondary);
            margin: 0;
        }
        
        /* ========================================
           COMPONENTS - glossary-term
           ======================================== */
        .glossary-term {
            display: flex;
            align-items: baseline;
            gap: 0.75rem;
            margin: 1.25rem 0;
        }
        
        .glossary-term strong {
            font-family: var(--font-mono);
            font-size: var(--mono-size);
            color: var(--accent);
            text-decoration: underline;
            text-underline-offset: 3px;
            flex-shrink: 0;
        }
        
        .glossary-term p {
            margin: 0;
            color: var(--text-secondary);
        }
        
        /* ========================================
           COMPONENTS - odds-example
           ======================================== */
        .odds-example {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 8px;
            overflow: hidden;
            margin: 1.5rem 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        }
        
        .odds-example table {
            margin: 0;
        }
        
        .odds-example th {
            background: var(--accent);
            color: var(--text-inverse);
            font-family: var(--font-heading);
            font-size: 0.8125rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        
        .odds-example td {
            font-family: var(--font-mono);
            font-size: var(--mono-size);
            text-align: center;
        }
        
        .odds-example td:first-child {
            font-family: var(--font-body);
            font-weight: var(--body-weight-bold);
            text-align: left;
        }
        
        /* ========================================
           COMPONENTS - spread-visual
           ======================================== */
        .spread-visual {
            background: var(--secondary-light);
            border: 1px solid var(--secondary);
            border-radius: 8px;
            padding: 1.5rem;
            margin: 1.5rem 0;
        }
        
        .spread-visual p {
            margin: 0 0 0.75rem;
        }
        
        .spread-visual p:first-child {
            font-weight: var(--body-weight-bold);
            color: var(--secondary);
        }
        
        .spread-visual ul {
            margin: 0.75rem 0 0;
            padding-left: 1.25rem;
        }
        
        .spread-visual li {
            margin-bottom: 0.5rem;
        }
        
        /* ========================================
           COMPONENTS - ats-trend
           ======================================== */
        .ats-trend {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 8px;
            overflow: hidden;
            margin: 1.5rem 0;
        }
        
        .ats-trend table {
            margin: 0;
        }
        
        .ats-trend th {
            background: var(--text-primary);
            color: var(--text-inverse);
            font-family: var(--font-heading);
            font-size: 0.8125rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        
        .ats-trend td {
            font-family: var(--font-mono);
            font-size: var(--mono-size);
            text-align: center;
        }
        
        .ats-trend td:first-child {
            font-family: var(--font-body);
            text-align: left;
        }
        
        /* ========================================
           COMPONENTS - stat-card
           ======================================== */
        .stat-card {
            background: var(--bg-card);
            border: 1px solid var(--accent-light);
            border-radius: 8px;
            padding: 1.25rem 1.5rem;
            margin: 1rem 0;
            text-align: center;
        }
        
        .stat-card p:first-child {
            font-family: var(--font-mono);
            font-size: 2rem;
            font-weight: var(--heading-weight);
            color: var(--accent);
            margin: 0 0 0.25rem;
            text-align: center;
        }
        
        .stat-card p:last-child {
            font-size: 0.875rem;
            color: var(--text-muted);
            margin: 0;
            text-align: center;
        }
        
        /* ========================================
           COMPONENTS - at-a-glance
           ======================================== */
        .at-a-glance {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1px;
            background: var(--border);
            border: 1px solid var(--border);
            border-radius: 8px;
            overflow: hidden;
            margin: 1.5rem 0;
        }
        
        .at-a-glance > div {
            background: var(--bg-card);
            padding: 1.25rem;
            text-align: center;
        }
        
        .at-a-glance p:first-child {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            color: var(--accent);
            margin: 0 0 0.25rem;
            text-align: center;
        }
        
        .at-a-glance p:last-child {
            font-size: 0.8125rem;
            color: var(--text-muted);
            margin: 0;
            text-align: center;
        }
        
        /* ========================================
           COMPONENTS - comparison
           ======================================== */
        .comparison {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 8px;
            overflow: hidden;
            margin: 1.5rem 0;
        }
        
        .comparison table {
            margin: 0;
        }
        
        .comparison th {
            background: var(--bg-page);
            font-family: var(--font-heading);
            font-size: 0.875rem;
        }
        
        .comparison td:first-child {
            font-weight: var(--body-weight-bold);
            color: var(--text-primary);
        }
        
        /* ========================================
           COMPONENTS - dos-donts
           ======================================== */
        .dos-donts {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        
        .dos-donts > div {
            padding: 1.5rem;
            border-radius: 8px;
        }
        
        .dos-donts > div:first-child {
            background: var(--success-light);
            border: 1px solid var(--success);
        }
        
        .dos-donts > div:last-child {
            background: var(--error-light);
            border: 1px solid var(--error);
        }
        
        .dos-donts > div:first-child p:first-child {
            color: var(--success);
            font-weight: var(--body-weight-bold);
            margin-bottom: 1rem;
        }
        
        .dos-donts > div:last-child p:first-child {
            color: var(--error);
            font-weight: var(--body-weight-bold);
            margin-bottom: 1rem;
        }
        
        .dos-donts ul {
            margin: 0;
            padding-left: 1.25rem;
        }
        
        .dos-donts li {
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }
        
        /* ========================================
           COMPONENTS - pre-bet-checklist
           ======================================== */
        .pre-bet-checklist {
            margin: 1.5rem 0;
        }
        
        .pre-bet-checklist > p:first-child {
            font-family: var(--font-heading);
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--accent);
            margin-bottom: 1rem;
        }
        
        .pre-bet-checklist ul {
            margin: 0;
            padding-left: 0;
            list-style: none;
            border-left: 2px solid var(--border);
            padding-left: 1.5rem;
        }
        
        .pre-bet-checklist li {
            position: relative;
            margin-bottom: 0.75rem;
            padding-left: 0.5rem;
        }
        
        .pre-bet-checklist li::before {
            content: '\2610';
            position: absolute;
            left: -1.75rem;
            color: var(--accent);
            background: var(--bg-page);
            padding: 0 2px;
        }
        
        /* ========================================
           COMPONENTS - worked-example
           ======================================== */
        .worked-example {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 1.5rem;
            margin: 1.5rem 0;
        }
        
        .worked-example p {
            font-family: var(--font-mono);
            font-size: var(--mono-size);
        }
        
        .worked-example p:first-child {
            font-family: var(--font-heading);
            font-size: 1rem;
            color: var(--accent);
            margin-bottom: 1rem;
        }
        
        /* ========================================
           COMPONENTS - section-bridge
           ======================================== */
        .section-bridge {
            text-align: center;
            font-style: italic;
            color: var(--accent);
            margin: 2rem 0;
            position: relative;
        }
        
        .section-bridge::before,
        .section-bridge::after {
            content: '···';
            display: inline-block;
            margin: 0 0.75rem;
            color: var(--border-strong);
        }
        
        /* ========================================
           COMPONENTS - author-bio
           ======================================== */
        .author-bio {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
            color: var(--text-secondary);
            font-style: italic;
            border-top: 1px solid var(--border);
            padding-top: 1rem;
            margin-top: 2rem;
        }
        
        /* ========================================
           FAQ SECTION
           ======================================== */
        [data-content="faq"] details {
            border-bottom: 1px solid var(--border);
        }
        
        [data-content="faq"] details:first-of-type {
            border-top: 1px solid var(--border);
        }
        
        [data-content="faq"] summary {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem 0;
            font-weight: var(--body-weight-bold);
            color: var(--text-primary);
            cursor: pointer;
            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;
            font-weight: 400;
            color: var(--accent);
            flex-shrink: 0;
            margin-left: 1rem;
            transition: transform 0.3s ease;
        }
        
        [data-content="faq"] details[open] summary::after {
            transform: rotate(45deg);
        }
        
        [data-content="faq"] summary:hover {
            color: var(--accent);
        }
        
        [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 p {
            padding-bottom: 1.25rem;
            color: var(--text-secondary);
        }
        
        /* ========================================
           BACK TO TOP
           ======================================== */
        .back-to-top {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 3rem;
            padding: 0.75rem 1.25rem;
            background: var(--bg-card);
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.875rem;
            border: 1px solid var(--border);
            border-radius: 6px;
            transition: all 0.2s ease;
        }
        
        .back-to-top:hover {
            background: var(--accent-light);
            color: var(--accent);
            border-color: var(--accent);
        }
        
        /* ========================================
           FOOTER
           ======================================== */
        footer {
            background: var(--bg-footer);
            color: var(--text-inverse);
            padding: 3rem 1.5rem 1.5rem;
            margin-top: var(--section-gap);
        }
        
        .footer-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }
        
        .footer-col h4 {
            font-family: var(--font-heading);
            font-size: 0.8125rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-inverse);
            margin-bottom: 1rem;
            opacity: 0.9;
        }
        
        .footer-col p,
        .footer-col li {
            font-size: 0.8125rem;
            color: rgba(255,255,255,0.7);
            line-height: 1.6;
        }
        
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-col li {
            margin-bottom: 0.5rem;
        }
        
        .footer-col a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.2s ease;
        }
        
        .footer-col a:hover {
            color: var(--text-inverse);
        }
        
        .footer-bottom {
            max-width: 1200px;
            margin: 2rem auto 0;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .footer-bottom p {
            font-size: 0.75rem;
            color: rgba(255,255,255,0.5);
            margin: 0;
        }
        
        /* ========================================
           RESPONSIVE - Mobile
           ======================================== */
        @media (max-width: 768px) {
            :root {
                --section-gap: 3rem;
            }
            
            [data-content] {
                padding: 0 1rem;
            }
            
            [data-content="hero"] {
                padding: 3rem 1rem 2.5rem;
            }
            
            .header-inner {
                padding: 0 1rem;
            }
            
            .trust-marker {
                display: none;
            }
            
            .at-a-glance {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .dos-donts {
                grid-template-columns: 1fr;
            }
            
            .glossary-term {
                flex-direction: column;
                gap: 0.25rem;
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            table {
                display: block;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }
        }
        
        @media (max-width: 480px) {
            .at-a-glance {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .site-logo img {
                height: 32px;
            }
        }

/* =========================================
   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;
}




.sitemap-main{
  max-width: 900px;
  margin: 0 auto;
  padding: 24px;
}

.sitemap-title{
  margin: 0 0 8px;
  text-align: center;
}

.sitemap-subtitle{
  margin: 0 0 24px;
  text-align: center;
  opacity: 0.75;
}

.sitemap-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.sitemap-link{
  display: block;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  text-decoration: none;
}

.sitemap-link:hover{
  border-color: rgba(255,255,255,0.2);
}

/* ===== Universal hub (NO body_class needed) ===== */

main.hub-children-main{
  padding-bottom: 48px;
}

/* Article wrapper */
main.hub-children-main .hub-children-article{
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* Header */
main.hub-children-main .hub-children-header{
  text-align: center;
  margin-top: 24px;
  margin-bottom: 24px;
}

main.hub-children-main .hub-children-title{
  margin: 0 0 10px;
}

main.hub-children-main .hub-children-intro{
  max-width: 900px;
  margin: 0 auto;
  opacity: .9;
}

/* Grid */
main.hub-children-main .hub-children-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 12px;
}

/* Card */
main.hub-children-main .hub-children-card{
  display: block;
  text-decoration: none;
}

main.hub-children-main .hub-children-card__media{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
  transition: transform .22s ease, box-shadow .22s ease;
}

main.hub-children-main .hub-children-card:hover .hub-children-card__media{
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.28);
}

/* Image */
main.hub-children-main .hub-children-card__img{
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
}

/* Overlay */
main.hub-children-main .hub-children-card__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.08) 0%,
    rgba(0,0,0,0.42) 55%,
    rgba(0,0,0,0.70) 100%
  );
}

/* Text */
main.hub-children-main .hub-children-card__content{
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
}

main.hub-children-main .hub-children-card__title{
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 6px 18px rgba(0,0,0,.55);
}

/* Responsive */
@media (max-width: 1024px){
  main.hub-children-main .hub-children-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 640px){
  main.hub-children-main .hub-children-grid{
    grid-template-columns: 1fr;
  }
}

.home main > *:not([data-content="hero"]):not(.cl-header):not(header):not(.cl-hero),
.home main article > *:not([data-content="hero"]):not(.cl-header):not(header):not(.cl-hero) {
    max-width: var(--content-max-width, 940px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    box-sizing: border-box !important;
}

.home main iframe,
.home main article iframe {
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    transform: none !important;
    width: 100% !important;
}

#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(0, 0, 0);
}



