:root {
            --accent: #F5620F;
            --secondary: #1D428A;
            --bg-page: #FAFAFA;
            --bg-header: #FFFFFF;
            --bg-footer: #1A1A1A;
            --text-primary: #1A1A1A;
            --text-secondary: #6B7280;
            --border: #E5E7EB;
            --success: #10B981;
            --warning: #F59E0B;
            --error: #EF4444;
            --content-width: 940px;
            --section-gap: 4rem;
            --font-heading: 'Bebas Neue', sans-serif;
            --font-body: 'Inter', sans-serif;
            --font-mono: 'JetBrains Mono', monospace;
            --font-logo: 'Oswald', sans-serif;
            --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
            --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
            --radius-sm: 4px;
            --radius-md: 8px;
            --radius-lg: 12px;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: var(--font-body);
            font-size: clamp(1rem, 2vw, 1.125rem);
            line-height: 1.7;
            color: var(--text-primary);
            background-color: var(--bg-page);
        }

     
        .header-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }

        .site-logo img {
            display: block;
            height: 40px;
            width: auto;
        }

        .header-meta {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .header-badge {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .header-badge time {
            color: var(--text-primary);
            font-weight: 600;
        }

        .trust-marker {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--accent);
            font-weight: 600;
        }

        /* Main */
        main {
            width: 100%;
        }

        article {
            width: 100%;
        }

        /* Hero Section */
        [data-content="hero"] {
            padding: 4rem 1.5rem 3rem;
            text-align: center;
            background: linear-gradient(135deg, #FAFAFA 0%, #F3F4F6 100%);
            position: relative;
            overflow: hidden;
        }

        [data-content="hero"]::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 60% 50% at 70% 30%, rgba(245, 98, 15, 0.06) 0%, transparent 60%);
            pointer-events: none;
        }

        [data-content="hero"]::after {
            content: '';
            position: absolute;
            inset: 0;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 40px,
                rgba(229, 231, 235, 0.3) 40px,
                rgba(229, 231, 235, 0.3) 41px
            );
            pointer-events: none;
            opacity: 0.5;
        }

        [data-content="hero"] > * {
            position: relative;
            z-index: 1;
        }

        .hero-category {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--accent);
            font-weight: 600;
            margin: 0 auto 1rem;
            text-align: center;
            display: block;
            width: 100%;
        }

        [data-content="hero"] h1 {
            font-family: var(--font-heading);
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 700;
            line-height: 1.1;
            color: var(--text-primary);
            margin: 0 auto 1rem;
            max-width: 900px;
            text-align: center;
        }

        .hero-subtitle {
            font-size: 1.125rem;
            color: var(--text-secondary);
            margin: 0 auto 1.5rem;
            max-width: 600px;
            text-align: center;
        }

        .hero-byline {
            font-size: 0.875rem;
            color: var(--text-secondary);
            margin: 0 auto 2rem;
            text-align: center;
        }

        .hero-byline strong {
            color: var(--text-primary);
        }

        [data-content="hero"] figure {
            margin: 0 auto;
            max-width: var(--content-width);
            position: relative;
            z-index: 1;
        }

        [data-content="hero"] figure img {
            display: block;
            max-width: 100%;
            height: auto;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            margin: 0 auto;
        }

        .hero-cta {
            margin-top: 2rem;
            text-align: center;
        }

        .btn-primary {
            display: inline-block;
            background: var(--accent);
            color: #FFFFFF;
            font-family: var(--font-body);
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: none;
            padding: 0.875rem 2rem;
            border-radius: var(--radius-sm);
            transition: all 0.2s ease;
        }

        .btn-primary:hover {
            background: #D4540D;
            transform: translateY(-1px);
        }

        .btn-primary:focus {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        /* Content sections */
        [data-content] {
            max-width: var(--content-width);
            margin-left: auto;
            margin-right: auto;
            padding: 0 1.5rem;
        }

        [data-content] > * {
            max-width: 100%;
        }

        [data-content="hero"] {
            max-width: none;
        }

        /* Nested sections inherit parent width */
        [data-content] [data-content] {
            max-width: 100%;
            padding: 0;
            margin-left: 0;
            margin-right: 0;
        }

        section[data-content] {
            margin-top: var(--section-gap);
            margin-bottom: var(--section-gap);
        }

        /* Ensure all paragraphs have same width */
        section[data-content] p,
        section[data-content] > p {
            max-width: 100%;
            width: 100%;
        }

        /* Typography */
        h1, h2, h3 {
            font-family: var(--font-heading);
            font-weight: 700;
            line-height: 1.2;
            color: var(--text-primary);
            text-align: left;
        }

        h2 {
            font-size: clamp(1.5rem, 4vw, 2.25rem);
            margin: 2.5rem 0 1.25rem;
            scroll-margin-top: 5rem;
        }

        h3 {
            font-size: clamp(1.25rem, 3vw, 1.5rem);
            margin: 2rem 0 1rem;
            scroll-margin-top: 5rem;
            color: #e8d1d1;
        }

        p {
            margin: 0 0 1.5em;
            text-align: left;
        }

        ul, ol {
            margin: 0 0 1.5em;
            padding-left: 1.5em;
            text-align: left;
        }

        li {
            margin-bottom: 0.5em;
        }

        strong {
            font-weight: 600;
        }

        blockquote {
            margin: 1.5em 0;
            padding: 1.25rem 1.5rem;
            border-left: 3px solid var(--accent);
            background: rgba(245, 98, 15, 0.03);
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
        }

        blockquote p:last-child {
            margin-bottom: 0;
        }

        /* Figures */
        figure {
            margin: 1.5em auto;
        }

        figure img {
            display: block;
            max-width: 100%;
            height: auto;
        }

        figcaption {
            text-align: center;
            font-size: 0.875rem;
            color: var(--text-secondary);
            margin-top: 0.75rem;
        }

        .article-image {
            border-radius: var(--radius-md);
        }

        /* Tables */
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5em 0;
            font-size: 0.9rem;
        }

        th, td {
            padding: 0.75rem 1rem;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }

        th {
            background: var(--bg-header);
            font-weight: 600;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--text-secondary);
        }

        tbody tr:hover {
            background: rgba(245, 98, 15, 0.02);
        }

        /* TL;DR Component */
        .tldr {
            background: rgba(245, 98, 15, 0.03);
            border-left: 3px solid var(--accent);
            padding: 1.5rem 2rem;
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
            margin-top: 2rem;
            margin-bottom: 2rem;
        }

        .tldr h2 {
            font-size: 1.125rem;
            margin: 0 0 1rem;
            color: var(--accent);
            text-transform: none;
            letter-spacing: normal;
        }

        .tldr ul {
            margin: 0;
            padding-left: 1.25rem;
        }

        .tldr li {
            margin-bottom: 0.75em;
            color: var(--text-primary);
        }

        .tldr li:last-child {
            margin-bottom: 0;
        }

        /* TOC Accordion */
        [data-content="toc"] {
            margin-top: 2.5rem;
            margin-bottom: var(--section-gap);
        }

        .toc-accordion {
            background: var(--bg-header);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
        }

        .toc-accordion summary {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 1.25rem;
            font-family: var(--font-heading);
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--text-primary);
            cursor: pointer;
            list-style: none;
            transition: background 0.15s ease;
        }

        .toc-accordion summary::-webkit-details-marker {
            display: none;
        }

        .toc-accordion summary::after {
            content: '+';
            font-size: 1.25rem;
            color: var(--accent);
            font-weight: 400;
            transition: transform 0.2s ease;
        }

        .toc-accordion[open] summary::after {
            content: '−';
        }

        .toc-accordion summary:hover {
            background: rgba(245, 98, 15, 0.02);
        }

        .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: 2000px;
            opacity: 1;
            overflow: visible;
        }

        .toc-list {
            padding: 0 1.25rem 1.25rem;
            margin: 0;
            list-style: none;
        }

        .toc-list li {
            margin: 0;
        }

        .toc-list > li {
            border-top: 1px solid var(--border);
        }

        .toc-list > li:first-child {
            border-top: none;
        }

        .toc-list a {
            display: block;
            padding: 0.625rem 0;
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.15s ease;
        }

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

        .toc-sublist {
            list-style: none;
            padding-left: 1rem;
            margin: 0;
        }

        .toc-sublist a {
            font-size: 0.9rem;
            font-weight: 400;
            color: var(--text-secondary);
            padding: 0.375rem 0;
        }

        .toc-sublist a:hover {
            color: var(--accent);
        }

        /* Info Box */
        .info-box {
            background: var(--bg-header);
            border: 1px solid var(--border);
            border-left: 3px solid var(--secondary);
            padding: 1.25rem 1.5rem;
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
            margin: 1.5em 0;
            box-shadow: var(--shadow-sm);
        }

        .info-box p {
            margin: 0;
            text-align: left;
        }

        .info-box p + p {
            margin-top: 1em;
        }

        /* Odds Example */
        .odds-example {
            background: var(--text-primary);
            color: #FFFFFF;
            padding: 1.5rem 2rem;
            border-radius: var(--radius-md);
            margin: 1.5em 0;
            box-shadow: var(--shadow-md);
        }

        .odds-example p {
            text-align: center;
            color: #FFFFFF;
            margin: 0;
        }

        .odds-example .odds-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: rgba(255,255,255,0.7);
            margin-bottom: 0.5rem;
        }

        .odds-example .odds-value {
            font-family: var(--font-mono);
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent);
        }

        .odds-example .odds-desc {
            font-size: 0.875rem;
            color: rgba(255,255,255,0.8);
            margin-top: 0.75rem;
        }

        /* Callout */
        .callout {
            background: rgba(29, 66, 138, 0.05);
            border-left: 3px solid var(--secondary);
            padding: 1.25rem 1.5rem;
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
            margin: 1.5em 0;
        }

        .callout p {
            margin: 0;
            text-align: left;
        }

        /* Card Grid */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin: 1.5em 0;
        }

        .card-grid .card {
            background: var(--bg-header);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 1.25rem;
            box-shadow: var(--shadow-sm);
            transition: box-shadow 0.2s ease;
        }

        .card-grid .card:hover {
            box-shadow: var(--shadow-md);
        }

        .card-grid .card h4 {
            font-family: var(--font-heading);
            font-size: 1rem;
            margin: 0 0 0.5rem;
            color: var(--text-primary);
        }

        .card-grid .card p {
            font-size: 0.875rem;
            color: var(--text-secondary);
            margin: 0;
            text-align: left;
        }

        /* Comparison */
        .comparison {
            margin: 1.5em 0;
            overflow-x: auto;
        }

        .comparison table {
            min-width: 100%;
        }

        /* Trend Card */
        .trend-card {
            background: linear-gradient(135deg, var(--accent) 0%, #D4540D 100%);
            color: #FFFFFF;
            padding: 1.5rem 2rem;
            border-radius: var(--radius-md);
            margin: 1.5em 0;
            box-shadow: var(--shadow-md);
        }

        .trend-card p {
            margin: 0;
            text-align: left;
            color: #FFFFFF;
        }

        /* Key Takeaway */
        .key-takeaway {
            border-top: 2px solid var(--accent);
            padding-top: 1rem;
            margin: 2em 0;
        }

        .key-takeaway p {
            font-family: var(--font-heading);
            font-size: 1.25rem;
            line-height: 1.4;
            margin: 0;
            text-align: left;
        }

        /* Fun Fact */
        .fun-fact {
            position: relative;
            padding-left: 1.5rem;
            margin: 1.5em 0;
        }

        .fun-fact::before {
            content: '—';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: 700;
        }

        .fun-fact p {
            font-style: italic;
            color: var(--text-secondary);
            margin: 0;
            text-align: left;
        }

        /* Glossary Term */
        .glossary-term {
            display: flex;
            align-items: baseline;
            gap: 0.75rem;
            margin: 1em 0;
        }

        .glossary-term .term {
            font-family: var(--font-mono);
            color: var(--accent);
            text-decoration: underline;
            text-underline-offset: 3px;
            white-space: nowrap;
        }

        .glossary-term .definition {
            color: var(--text-secondary);
        }

        /* Dos and Don'ts */
        .dos-donts {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 1.5em 0;
        }

        .dos-donts .do-column,
        .dos-donts .dont-column {
            padding: 1.25rem;
            border-radius: var(--radius-md);
        }

        .dos-donts .do-column {
            background: rgba(16, 185, 129, 0.05);
            border: 1px solid rgba(16, 185, 129, 0.2);
        }

        .dos-donts .dont-column {
            background: rgba(239, 68, 68, 0.05);
            border: 1px solid rgba(239, 68, 68, 0.2);
        }

        .dos-donts h4 {
            font-family: var(--font-heading);
            font-size: 1rem;
            margin: 0 0 0.75rem;
        }

        .dos-donts .do-column h4 {
            color: var(--success);
        }

        .dos-donts .dont-column h4 {
            color: var(--error);
        }

        .dos-donts ul {
            margin: 0;
            padding-left: 1.25rem;
        }

        .dos-donts li {
            font-size: 0.9rem;
        }

        /* Pre-bet Checklist */
        .pre-bet-checklist {
            margin: 1.5em 0;
        }

        .pre-bet-checklist h4 {
            font-family: var(--font-heading);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--accent);
            font-size: 0.875rem;
            margin: 0 0 1rem;
        }

        .pre-bet-checklist ul {
            list-style: none;
            padding-left: 1.5rem;
            margin: 0;
            border-left: 2px solid var(--border);
        }

        .pre-bet-checklist li {
            position: relative;
            padding-left: 0.5rem;
            margin-bottom: 0.75em;
        }

        .pre-bet-checklist li::before {
            content: '☐';
            position: absolute;
            left: -1.25rem;
            color: var(--accent);
            background: var(--bg-page);
            padding: 0 0.25rem;
        }

        /* At a Glance */
        .at-a-glance {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            margin: 1.5em 0;
            background: var(--bg-header);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            overflow: hidden;
        }

        .at-a-glance .glance-item {
            padding: 1.25rem;
            border-right: 1px solid var(--border);
        }

        .at-a-glance .glance-item:last-child {
            border-right: none;
        }

        .at-a-glance h4 {
            font-family: var(--font-heading);
            font-size: 1.25rem;
            margin: 0 0 0.5rem;
            color: var(--accent);
            text-align: center;
        }

        .at-a-glance p {
            font-size: 0.875rem;
            color: var(--text-secondary);
            margin: 0;
            text-align: center;
        }

        /* Worked Example */
        .worked-example {
            background: rgba(245, 98, 15, 0.03);
            padding: 1.5rem 2rem;
            border-radius: var(--radius-md);
            margin: 1.5em 0;
        }

        .worked-example h4 {
            font-family: var(--font-heading);
            font-size: 1rem;
            margin: 0 0 1rem;
            color: var(--text-primary);
        }

        .worked-example .step {
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed var(--border);
        }

        .worked-example .step:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .worked-example code {
            font-family: var(--font-mono);
            background: var(--bg-header);
            padding: 0.125rem 0.375rem;
            border-radius: var(--radius-sm);
            font-size: 0.9em;
        }

        .worked-example .result {
            font-family: var(--font-mono);
            font-size: 1.125rem;
            color: var(--accent);
            font-weight: 600;
        }

        /* Section Bridge */
        .section-bridge {
            text-align: center;
            margin: 2.5rem 0;
            font-style: italic;
            color: var(--accent);
            position: relative;
        }

        .section-bridge::before,
        .section-bridge::after {
            content: '·';
            margin: 0 0.75rem;
            color: var(--border);
        }

        /* Quote Block */
        .quote-block {
            margin: 1.5em 0;
            padding: 0;
        }

        .quote-block blockquote {
            margin: 0;
            padding: 0;
            border: none;
            background: none;
            font-style: italic;
        }

        .quote-block .quote-author {
            margin-top: 1rem;
            font-size: 0.875rem;
            color: var(--text-secondary);
        }

        .quote-block .quote-author strong {
            color: var(--text-primary);
        }

        /* Stat Highlight */
        .stat-highlight {
            background: linear-gradient(135deg, var(--secondary) 0%, #152E66 100%);
            color: #FFFFFF;
            padding: 2rem;
            border-radius: var(--radius-md);
            margin: 1.5em 0;
            text-align: center;
            box-shadow: var(--shadow-md);
        }

        .stat-highlight .stat-number {
            font-family: var(--font-mono);
            font-size: 3rem;
            font-weight: 700;
            color: #FFFFFF;
            display: block;
            line-height: 1;
        }

        .stat-highlight .stat-label {
            font-size: 0.875rem;
            color: rgba(255,255,255,0.8);
            margin-top: 0.5rem;
            display: block;
        }

        .stat-highlight .stat-source {
            font-size: 0.75rem;
            color: rgba(255,255,255,0.6);
            margin-top: 1rem;
            display: block;
        }

        /* Source Badge */
        .source-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--bg-header);
            border: 1px solid var(--border);
            padding: 0.375rem 0.75rem;
            border-radius: var(--radius-sm);
            font-size: 0.75rem;
            color: var(--text-secondary);
        }

        .source-badge strong {
            color: var(--text-primary);
        }

        /* Responsible Gaming Notice */
        .responsible-gaming-notice {
            background: rgba(245, 158, 11, 0.08);
            border: 1px solid rgba(245, 158, 11, 0.3);
            border-radius: var(--radius-md);
            padding: 1.25rem 1.5rem;
            margin: 1.5em 0;
        }

        .responsible-gaming-notice p {
            margin: 0;
            font-size: 0.9rem;
            text-align: left;
        }

        .responsible-gaming-notice p + p {
            margin-top: 0.75rem;
        }

        .responsible-gaming-notice strong {
            color: var(--warning);
        }

        /* Author Bio */
        .author-bio {
            display: block;
            text-align: center;
            padding-top: 1rem;
            margin-top: 2rem;
            border-top: 1px solid var(--border);
            font-size: 0.8rem;
            color: var(--text-secondary);
            font-style: italic;
        }

        /* FAQ Accordion */
        [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;
            align-items: center;
            justify-content: space-between;
            padding: 1.25rem 0;
            font-weight: 600;
            cursor: pointer;
            list-style: none;
            transition: color 0.15s ease;
        }

        [data-content="faq"] summary::-webkit-details-marker {
            display: none;
        }

        [data-content="faq"] summary::after {
            content: '+';
            font-size: 1.25rem;
            color: var(--accent);
            font-weight: 400;
            transition: transform 0.2s ease;
        }

        [data-content="faq"] details[open] summary::after {
            content: '−';
        }

        [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);
        }

        /* Footer */
        footer {
            background: var(--bg-footer);
            color: rgba(255,255,255,0.8);
            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-column h4 {
            font-family: var(--font-heading);
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #FFFFFF;
            margin: 0 0 1rem;
        }

        .footer-column p {
            font-size: 0.8rem;
            line-height: 1.6;
            color: rgba(255,255,255,0.6);
            margin: 0 0 0.75em;
            text-align: left;
        }

        .footer-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-column li {
            margin-bottom: 0.5em;
        }

        .footer-column a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 0.8rem;
            transition: color 0.15s ease;
        }

        .footer-column a:hover {
            color: var(--accent);
        }

        .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;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-copyright {
            font-size: 0.75rem;
            color: rgba(255,255,255,0.5);
        }

        .footer-disclaimer {
            font-size: 0.7rem;
            color: rgba(255,255,255,0.4);
            max-width: 500px;
            text-align: right;
        }

        .footer-logo img {
            height: 28px;
            width: auto;
            filter: brightness(0) invert(1);
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            [data-content] {
                padding-left: 1rem;
                padding-right: 1rem;
            }

            [data-content="hero"] {
                padding: 3rem 1rem 2rem;
            }

            .header-inner {
                flex-wrap: wrap;
            }

            .header-meta {
                flex-wrap: wrap;
                gap: 0.5rem;
            }

            .dos-donts {
                grid-template-columns: 1fr;
            }

            .at-a-glance {
                grid-template-columns: 1fr;
            }

            .at-a-glance .glance-item {
                border-right: none;
                border-bottom: 1px solid var(--border);
            }

            .at-a-glance .glance-item:last-child {
                border-bottom: none;
            }

            .glossary-term {
                flex-direction: column;
                gap: 0.25rem;
            }

            /* Tablas con scroll horizontal */
            .comparison {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                margin-left: -1rem;
                margin-right: -1rem;
                padding-left: 1rem;
                padding-right: 1rem;
            }

            .comparison table {
                min-width: 500px;
            }
            
            .odds-table {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                margin-left: -1rem;
                margin-right: -1rem;
                padding-left: 1rem;
                padding-right: 1rem;
            }
            
            .odds-table table {
                min-width: 450px;
            }

            /* TOC en móvil - sin recorte */
            .toc-accordion summary {
                padding: 0.875rem 1rem;
            }

            .toc-accordion > div {
                max-height: none !important;
                overflow: visible !important;
            }

            .toc-accordion[open] > div {
                max-height: none !important;
            }

            .toc-list {
                padding: 0 1rem 1rem;
            }

            .toc-accordion ul {
                padding-left: 0;
            }

            .toc-accordion li {
                word-wrap: break-word;
                overflow-wrap: break-word;
            }

            .toc-accordion a {
                word-wrap: break-word;
                overflow-wrap: break-word;
                hyphens: auto;
                font-size: 0.9rem;
                line-height: 1.4;
            }

            .toc-sublist {
                padding-left: 0.75rem;
            }

            .toc-sublist a {
                font-size: 0.85rem;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-disclaimer {
                text-align: center;
            }

            .stat-highlight .stat-number {
                font-size: 2.25rem;
            }

            .card-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .header-badge {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.25rem;
            }
        }

        /* Focus styles for accessibility */
        a:focus,
        button:focus,
        summary:focus {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        /* Print styles */
        @media print {
            header, footer, .toc-accordion, .hero-cta {
                display: none;
            }

            [data-content="hero"] {
                background: none;
                padding: 1rem 0;
            }

            body {
                font-size: 12pt;
            }
        }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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




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

header,
.top-navigation-bar {
    background-color: #ffffff !important;
    border-bottom: 1px solid #e2e8f0 !important;
}

.menu-desktop a,
.site-header a,
.top-navigation-bar a,
.site-title,
.site-logo {
    color: #111827 !important;
    font-weight: 500;
}

.menu-desktop a:hover,
.site-header a:hover {
    color: #dc2626 !important; 
}

.burger span {
    background-color: #111827 !important;
}

.cl-hero img,
.content-article img,
img.article-image,
img.wp-post-image {
    max-width: 100%;
    width: 100%;
    height: auto !important; /* Forces height to scale proportionally with width */
    object-fit: cover; /* Prevents any remaining distortion */
    border-radius: 8px; /* Optional: adds modern rounded corners */
    display: block;
    margin: 0 auto;
}