:root {
            /* Core Colors */
            --color-bg: #0a0a0a;
            --color-bg-header: #111111;
            --color-bg-footer: #0d0d0d;
            --color-bg-card: #161616;
            --color-text: #e8e8e8;
            --color-text-muted: #888888;
            --color-accent: #1cc856;
            --color-accent-secondary: #c32222;
            --color-border: #2a2a2a;
            
            /* Semantic Colors */
            --color-success: #1cc856;
            --color-warning: #f59e0b;
            --color-danger: #c32222;
            --color-info: #3b82f6;
            
            /* Typography */
            --font-heading: 'Inter', sans-serif;
            --font-body: 'Source Sans 3', sans-serif;
            --font-mono: 'JetBrains Mono', monospace;
            --font-logo: 'Bebas Neue', sans-serif;
            
            /* Typography Scale */
            --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
            --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
            --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
            --text-lg: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
            --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
            --text-2xl: clamp(1.5rem, 1.25rem + 1.25vw, 2rem);
            --text-3xl: clamp(2rem, 1.5rem + 2.5vw, 3rem);
            --text-4xl: clamp(2.5rem, 2rem + 2.5vw, 4rem);
            
            /* Layout */
            --content-width: 940px;
            --wide-width: 1200px;
            --section-gap: clamp(3rem, 5vw, 5rem);
        }
        
        /* Reset */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: var(--font-body);
            font-size: var(--text-base);
            line-height: 1.7;
            color: var(--color-text);
            background-color: var(--color-bg);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        
        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 700;
            line-height: 1.2;
            color: var(--color-text);
            text-align: left;
        }
        
        h2 {
            font-size: var(--text-2xl);
            margin-top: var(--section-gap);
            margin-bottom: 1.5rem;
            scroll-margin-top: 2rem;
        }
        
        h3 {
            font-size: var(--text-xl);
            margin-top: 2rem;
            margin-bottom: 1rem;
            scroll-margin-top: 2rem;
        }
        
        p {
            margin-bottom: 1.25rem;
            text-align: left;
        }
        
        a {
            color: var(--color-accent);
            text-decoration: none;
            transition: color 0.2s ease;
        }
        
        a:hover {
            color: #25e066;
        }
        
        a:focus {
            outline: 2px solid var(--color-accent);
            outline-offset: 2px;
        }
        
        strong {
            font-weight: 600;
        }
        
        ul, ol {
            margin-bottom: 1.25rem;
            padding-left: 1.5rem;
            text-align: left;
        }
        
        li {
            margin-bottom: 0.5rem;
        }
        
        blockquote {
            border-left: 3px solid var(--color-accent);
            padding-left: 1.5rem;
            margin: 1.5rem 0;
            font-style: italic;
            color: var(--color-text-muted);
        }
        
        /* Tables */
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: var(--text-sm);
        }
        
        th, td {
            padding: 0.75rem 1rem;
            text-align: left;
            border-bottom: 1px solid var(--color-border);
        }
        
        th {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: var(--text-xs);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--color-text-muted);
            background-color: var(--color-bg-card);
        }
        
        tbody tr:hover {
            background-color: rgba(28, 200, 86, 0.05);
        }
        
        /* Figures */
        figure {
            margin: 1.5em auto;
            max-width: 100%;
        }
        
        figure img {
            display: block;
            max-width: 100%;
            height: auto;
        }
        
        figcaption {
            font-size: var(--text-sm);
            color: var(--color-text-muted);
            text-align: center;
            margin-top: 0.75rem;
        }
        
        /* Layout - Sections */
        [data-content] {
            max-width: var(--content-width);
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }
        
        main {
            width: 100%;
        }
        
        article {
            padding-bottom: var(--section-gap);
        }
        
        /* Header */
        .site-header {
            background-color: var(--color-bg-header);
            padding: 1rem 1.5rem;
            position: relative;
            z-index: 100;
        }
        
        .header-inner {
            max-width: var(--wide-width);
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }
        
        .site-logo img {
            display: block;
            width: 180px;
            height: auto;
        }
        
        .header-meta {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .trust-marker {
            font-size: var(--text-xs);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--color-text-muted);
        }
        
        .date-badge {
            font-size: var(--text-xs);
            color: var(--color-text-muted);
            background-color: var(--color-bg-card);
            padding: 0.35rem 0.75rem;
            border-radius: 4px;
            border: 1px solid var(--color-border);
        }
        
        /* Hero Section */
        [data-content="hero"] {
            max-width: 100%;
            width: 100vw;
            padding: clamp(3rem, 8vw, 6rem) 1.5rem;
            background: var(--color-bg);
            text-align: center;
            position: relative;
        }
        
        [data-content="hero"] > * {
            position: relative;
            z-index: 1;
        }
        
        .hero-category {
            font-family: var(--font-heading);
            font-size: var(--text-xs);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--color-accent);
            margin-bottom: 1rem;
            display: block;
        }
        
        .hero-title {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: var(--text-4xl);
            color: var(--color-text);
            max-width: var(--content-width);
            margin: 0 auto 1.5rem;
            text-align: center;
        }
        
        .hero-byline {
            font-size: var(--text-sm);
            color: var(--color-text-muted);
            margin-bottom: 2rem;
            text-align: center;
        }
        
        .hero-byline span {
            color: var(--color-text);
        }
        
        [data-content="hero"] figure {
            max-width: var(--content-width);
            margin: 0 auto 2rem;
            position: relative;
            z-index: 1;
        }
        
        [data-content="hero"] figure img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }
        
        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background-color: var(--color-accent);
            color: #0a0a0a;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: var(--text-sm);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            padding: 0.875rem 1.75rem;
            border-radius: 4px;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        
        .hero-cta:hover {
            color: #0a0a0a;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(28, 200, 86, 0.3);
        }
        
        /* TL;DR Section */
        .tldr {
            background-color: var(--color-bg-card);
            border-left: 3px solid var(--color-accent);
            padding: 1.5rem 2rem;
            margin-top: 2rem;
            margin-bottom: 2rem;
            border-radius: 0 6px 6px 0;
        }
        
        .tldr h2 {
            font-size: var(--text-lg);
            margin-top: 0;
            margin-bottom: 1rem;
            color: var(--color-text);
        }
        
        .tldr ul {
            margin-bottom: 0;
        }
        
        .tldr li {
            color: var(--color-text-muted);
        }
        
        /* TOC - Vertical List */
        [data-content="toc"] {
            background-color: var(--color-bg-card);
            border: 1px solid var(--color-border);
            border-radius: 6px;
            padding: 1.5rem 2rem;
            margin-top: 2rem;
            margin-bottom: var(--section-gap);
        }
        
        .toc-title {
            font-family: var(--font-heading);
            font-size: var(--text-sm);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--color-text-muted);
            margin-bottom: 1rem;
        }
        
        .toc-list {
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
            column-count: 2;
            column-gap: 2rem;
        }
        
        .toc-list > li {
            break-inside: avoid;
            margin-bottom: 0.75rem;
        }
        
        .toc-list > li > a {
            font-weight: 600;
            color: var(--color-text);
            font-size: var(--text-base);
        }
        
        .toc-list > li > a:hover {
            color: var(--color-accent);
        }
        
        .toc-sublist {
            list-style: none;
            padding-left: 1rem;
            margin-top: 0.5rem;
            margin-bottom: 0;
        }
        
        .toc-sublist li {
            margin-bottom: 0.35rem;
        }
        
        .toc-sublist a {
            font-size: var(--text-sm);
            color: var(--color-text-muted);
        }
        
        .toc-sublist a:hover {
            color: var(--color-accent);
        }
        
        /* Components - Info Box */
        .info-box {
            background-color: var(--color-bg-card);
            border: 1px solid var(--color-border);
            border-radius: 6px;
            padding: 1.5rem;
            margin: 1.5rem 0;
        }
        
        .info-box p {
            text-align: left;
            color: var(--color-text);
        }
        
        .info-box p:last-child {
            margin-bottom: 0;
        }
        
        /* Components - Odds Example */
        .odds-example {
            background-color: var(--color-bg-card);
            border: 1px solid var(--color-accent);
            border-radius: 6px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            text-align: center;
        }
        
        .odds-example p {
            text-align: center;
            color: var(--color-text);
        }
        
        .odds-example p:first-child {
            font-family: var(--font-heading);
            font-weight: 700;
            color: var(--color-accent);
            margin-bottom: 0.5rem;
        }
        
        .odds-example .odds-value {
            font-family: var(--font-mono);
            font-size: var(--text-2xl);
            font-weight: 500;
            color: var(--color-text);
        }
        
        /* Components - Callout */
        .callout {
            border-left: 3px solid var(--color-info);
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            background-color: rgba(59, 130, 246, 0.05);
        }
        
        .callout p {
            text-align: left;
            color: var(--color-text);
            margin-bottom: 0;
        }
        
        /* Components - Card Grid */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        
        .card-grid .card {
            background-color: var(--color-bg-card);
            border: 1px solid var(--color-border);
            border-radius: 6px;
            padding: 1.5rem;
        }
        
        .card-grid .card p {
            text-align: left;
            color: var(--color-text);
        }
        
        /* Components - Comparison */
        .comparison {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        
        .comparison > div {
            background-color: var(--color-bg-card);
            border-radius: 6px;
            padding: 1.5rem;
        }
        
        .comparison > div p {
            text-align: left;
            color: var(--color-text);
        }
        
        .comparison > div:first-child {
            border: 1px solid var(--color-success);
        }
        
        .comparison > div:last-child {
            border: 1px solid var(--color-danger);
        }
        
        /* Components - Key Takeaway */
        .key-takeaway {
            border-top: 2px solid var(--color-accent);
            padding-top: 1rem;
            margin: 2rem 0;
        }
        
        .key-takeaway p {
            font-family: var(--font-heading);
            font-size: var(--text-xl);
            font-weight: 600;
            color: var(--color-text);
            text-align: left;
            margin-bottom: 0;
        }
        
        /* Components - Fun Fact */
        .fun-fact {
            position: relative;
            padding-left: 1.5rem;
            margin: 1.5rem 0;
        }
        
        .fun-fact::before {
            content: '—';
            position: absolute;
            left: 0;
            color: var(--color-accent);
            font-weight: 700;
        }
        
        .fun-fact p {
            font-style: italic;
            color: var(--color-text-muted);
            text-align: left;
            margin-bottom: 0;
        }
        
        /* Components - Glossary Term */
        .glossary-term {
            display: flex;
            align-items: baseline;
            gap: 12px;
            margin: 1rem 0;
        }
        
        .glossary-term .term {
            font-family: var(--font-mono);
            color: var(--color-accent);
            text-decoration: underline;
            text-underline-offset: 3px;
            white-space: nowrap;
        }
        
        .glossary-term .definition {
            color: var(--color-text-muted);
        }
        
        /* Components - Dos and Donts */
        .dos-donts {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        
        .dos-donts .do-column {
            background-color: var(--color-bg-card);
            border: 1px solid var(--color-success);
            border-radius: 6px;
            padding: 1.5rem;
        }
        
        .dos-donts .dont-column {
            background-color: var(--color-bg-card);
            border: 1px solid var(--color-danger);
            border-radius: 6px;
            padding: 1.5rem;
        }
        
        .dos-donts h4 {
            font-size: var(--text-sm);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 1rem;
        }
        
        .dos-donts .do-column h4 {
            color: var(--color-success);
        }
        
        .dos-donts .dont-column h4 {
            color: var(--color-danger);
        }
        
        .dos-donts ul {
            margin-bottom: 0;
        }
        
        .dos-donts li {
            color: var(--color-text);
            text-align: left;
        }
        
        /* Components - Pre-bet Checklist */
        .pre-bet-checklist {
            margin: 1.5rem 0;
        }
        
        .pre-bet-checklist h4 {
            font-family: var(--font-heading);
            font-size: var(--text-sm);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--color-accent);
            margin-bottom: 1rem;
        }
        
        .pre-bet-checklist ul {
            list-style: none;
            padding-left: 1.5rem;
            border-left: 2px solid var(--color-border);
            margin-bottom: 0;
        }
        
        .pre-bet-checklist li {
            position: relative;
            padding-left: 1rem;
            color: var(--color-text);
            text-align: left;
        }
        
        .pre-bet-checklist li::before {
            content: '☐';
            position: absolute;
            left: -1.75rem;
            color: var(--color-accent);
            background-color: var(--color-bg);
            padding: 0 2px;
        }
        
        /* Components - At a Glance */
        .at-a-glance {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            margin: 1.5rem 0;
            background-color: var(--color-bg-card);
            border: 1px solid var(--color-border);
            border-radius: 6px;
            overflow: hidden;
        }
        
        .at-a-glance > div {
            padding: 1.5rem;
            text-align: center;
            border-right: 1px solid var(--color-border);
        }
        
        .at-a-glance > div:last-child {
            border-right: none;
        }
        
        .at-a-glance h4 {
            font-family: var(--font-heading);
            font-size: var(--text-lg);
            margin-bottom: 0.5rem;
            text-align: center;
        }
        
        .at-a-glance p {
            font-size: var(--text-sm);
            color: var(--color-text-muted);
            margin-bottom: 0;
            text-align: center;
        }
        
        /* Components - Worked Example */
        .worked-example {
            background-color: var(--color-bg-card);
            border: 1px solid var(--color-border);
            border-radius: 6px;
            padding: 2rem;
            margin: 1.5rem 0;
        }
        
        .worked-example h4 {
            font-size: var(--text-base);
            margin-bottom: 1rem;
        }
        
        .worked-example .step {
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--color-border);
        }
        
        .worked-example .step:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .worked-example code {
            font-family: var(--font-mono);
            color: var(--color-accent);
        }
        
        .worked-example .result {
            font-family: var(--font-mono);
            font-size: var(--text-lg);
            color: var(--color-success);
            font-weight: 500;
        }
        
        .worked-example p {
            text-align: left;
            color: var(--color-text);
        }
        
        /* Components - Section Bridge */
        .section-bridge {
            text-align: center;
            margin: 2rem 0;
            position: relative;
        }
        
        .section-bridge::before,
        .section-bridge::after {
            content: '·  ·  ·';
            color: var(--color-accent);
            opacity: 0.5;
            font-size: var(--text-sm);
        }
        
        .section-bridge p {
            display: inline;
            font-style: italic;
            color: var(--color-accent);
            margin: 0 1rem;
            text-align: center;
        }
        
        /* Components - Player Stats Card */
        .player-stats-card {
            background-color: var(--color-bg-card);
            border: 1px solid var(--color-border);
            border-radius: 6px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            overflow-x: auto;
        }
        
        .player-stats-card p:first-child {
            font-family: var(--font-heading);
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .player-stats-card table {
            margin: 0;
        }
        
        /* Components - Tournament Bracket */
        .tournament-bracket {
            background-color: var(--color-bg-card);
            border: 1px solid var(--color-border);
            border-radius: 6px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            overflow-x: auto;
        }
        
        .tournament-bracket table {
            margin: 0;
        }
        
        /* Components - Live Betting Timer */
        .live-betting-timer {
            background-color: var(--color-bg-card);
            border-left: 3px solid var(--color-warning);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 6px 6px 0;
        }
        
        .live-betting-timer p:first-child {
            font-family: var(--font-heading);
            font-weight: 700;
            color: var(--color-warning);
            margin-bottom: 1rem;
        }
        
        .live-betting-timer ul {
            margin-bottom: 0;
        }
        
        .live-betting-timer li {
            color: var(--color-text);
        }
        
        /* Components - German Tax Calculator */
        .german-tax-calculator {
            background-color: var(--color-bg-card);
            border: 1px solid var(--color-border);
            border-radius: 6px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            overflow-x: auto;
        }
        
        .german-tax-calculator p:first-child {
            font-family: var(--font-heading);
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .german-tax-calculator table {
            margin: 0;
        }
        
        .german-tax-calculator td:last-child {
            font-family: var(--font-mono);
        }
        
        /* Components - Responsible Gaming Notice */
        .responsible-gaming-notice {
            background-color: rgba(195, 34, 34, 0.1);
            border: 1px solid var(--color-danger);
            border-radius: 6px;
            padding: 1.5rem;
            margin: 1.5rem 0;
        }
        
        .responsible-gaming-notice p:first-child {
            font-family: var(--font-heading);
            font-weight: 700;
            color: var(--color-danger);
            margin-bottom: 0.75rem;
        }
        
        .responsible-gaming-notice ul {
            margin-bottom: 1rem;
        }
        
        .responsible-gaming-notice li {
            color: var(--color-text);
        }
        
        .responsible-gaming-notice p:last-child {
            margin-bottom: 0;
            color: var(--color-text-muted);
            font-style: italic;
        }
        
        /* Components - Author Bio */
        .author-bio {
            width: 100%;
            border-top: 1px solid var(--color-border);
            padding-top: 1rem;
            margin-top: 2rem;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            font-size: 0.8rem;
            color: var(--color-text-muted);
            font-style: italic;
            text-align: center;
        }
        
        /* FAQ Section */
        [data-content="faq"] details {
            border-bottom: 1px solid var(--color-border);
            padding: 1rem 0;
        }
        
        [data-content="faq"] details:last-of-type {
            border-bottom: none;
        }
        
        [data-content="faq"] summary {
            cursor: pointer;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: var(--text-base);
            color: var(--color-text);
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-right: 1.5rem;
            position: relative;
        }
        
        [data-content="faq"] summary::-webkit-details-marker {
            display: none;
        }
        
        [data-content="faq"] summary::after {
            content: '+';
            position: absolute;
            right: 0;
            font-size: var(--text-xl);
            color: var(--color-accent);
            transition: transform 0.3s ease;
        }
        
        [data-content="faq"] details[open] summary::after {
            transform: rotate(45deg);
        }
        
        [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;
            padding-top: 1rem;
        }
        
        [data-content="faq"] details p {
            color: var(--color-text-muted);
        }
        
        /* Back to Top */
        .back-to-top {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            font-size: var(--text-sm);
            color: var(--color-text-muted);
            margin-top: 2rem;
            transition: color 0.2s ease;
            text-align: center;
        }
        
        .back-to-top:hover {
            color: var(--color-accent);
        }
        
        /* Footer */
        .site-footer {
            background-color: var(--color-bg-footer);
            border-top: 1px solid var(--color-border);
            padding: clamp(3rem, 6vw, 4rem) 1.5rem 2rem;
            margin-top: var(--section-gap);
        }
        
        .footer-inner {
            max-width: var(--wide-width);
            margin: 0 auto;
        }
        
        .footer-columns {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .footer-column h4 {
            font-family: var(--font-heading);
            font-size: var(--text-xs);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--color-text-muted);
            margin-bottom: 1rem;
        }
        
        .footer-column p,
        .footer-column li {
            font-size: 0.8125rem;
            color: var(--color-text-muted);
            line-height: 1.6;
        }
        
        .footer-column ul {
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
        }
        
        .footer-column li {
            margin-bottom: 0.5rem;
        }
        
        .footer-column a {
            color: var(--color-text-muted);
        }
        
        .footer-column a:hover {
            color: var(--color-accent);
        }
        
        .footer-bottom {
            border-top: 1px solid var(--color-border);
            padding-top: 1.5rem;
            text-align: center;
        }
        
        .footer-bottom p {
            font-size: 0.75rem;
            color: var(--color-text-muted);
            margin-bottom: 0.5rem;
        }
        
        .footer-bottom p:last-child {
            margin-bottom: 0;
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            [data-content] {
                padding-left: 1rem;
                padding-right: 1rem;
            }
            
            .header-inner {
                flex-wrap: wrap;
            }
            
            .header-meta {
                order: 2;
                width: 100%;
                justify-content: flex-start;
            }
            
            .toc-list {
                column-count: 1;
            }
            
            .comparison,
            .dos-donts {
                grid-template-columns: 1fr;
            }
            
            .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;
            }
            
            .glossary-term {
                flex-direction: column;
                gap: 4px;
            }
            
            .footer-columns {
                grid-template-columns: 1fr 1fr;
            }
            
            table {
                display: block;
                overflow-x: auto;
            }
        }
        
        @media (max-width: 480px) {
            .footer-columns {
                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;
}




.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;
  }
}

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


.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;
}


.site-header_inner,
.top-navigation-bar {
    max-width: 1200px !important;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap !important;
}

.menu-desktop,
.site-header nav ul {
    display: flex;
    gap: 15px !important; 
    flex-wrap: nowrap !important;
}

.menu-desktop a,
.site-header nav a {
    font-size: 14px !important; 
    padding: 5px 8px !important; 
    white-space: nowrap !important; 
}