﻿/* extracted verbatim 2026-08-28 estate speed sweep. New content = new filename. */

        /* --- PAGE-LOCAL ALIASES -> mapped to locked design system tokens (Site.Master). Tokens are NEVER redefined here. --- */
        :root {
            --bg-app: var(--void);
            --bg-panel: var(--panel);
            --bg-card: var(--panel-2);
            --border-subtle: var(--line);
            --text-main: var(--ink);
            --text-muted: var(--ink-dim);
            --text-dim: var(--ink-faint);
            --color-primary: var(--action-hi);
            --color-signal: var(--model);
            --color-risk: var(--book);
            --font-ui: var(--ui);
            --font-data: var(--mono);
            --radius-md: 10px;
            --radius-lg: 16px;
        }

        .wrapper { width: 100%; max-width: 1180px; margin: 0 auto; padding: 24px 5% 8px; box-sizing: border-box; }
        .od-a { color: var(--action-hi); text-decoration: none; transition: color .18s; }
        .od-a:hover { color: var(--accent-ink); }

        /* --- BREADCRUMBS --- */
        .breadcrumbs { margin-bottom: 1.25rem; font-size: .72rem; font-family: var(--font-data); color: var(--text-dim); letter-spacing: .06em; text-transform: uppercase; }
        .breadcrumbs a { color: var(--text-dim); text-decoration: none; }
        .breadcrumbs a:hover { color: var(--action-hi); }
        .breadcrumbs .text-signal { color: var(--action-hi); }

        /* --- LEAGUE / SECTION NAV --- */
        .betbetter-nav { display: grid; grid-template-columns: repeat(auto-fit, minmax(132px, 1fr)); gap: 8px; margin-bottom: 1.75rem; padding: 8px; background: var(--bg-panel); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); }
        .nav-btn { display: flex; align-items: center; justify-content: center; min-height: 44px; padding: 10px 12px; background: transparent; color: var(--text-muted); border-radius: 8px; font-size: .85rem; font-weight: 600; border: 1px solid transparent; cursor: pointer; white-space: nowrap; transition: .16s; }
        .nav-btn:hover { background: rgba(70,140,255,.10); color: var(--text-main); }
        .nav-btn.active { background: var(--accent-grad); color: #fff; border-color: var(--card-edge); box-shadow: inset 0 1px 0 rgba(255,255,255,.35); }
        .nav-btn:focus-visible { outline: 2px solid var(--action-hi); outline-offset: 2px; }

        .dropdown-wrapper { position: relative; }
        .dropdown-content { display: none; position: absolute; top: calc(100% + 6px); left: 0; width: 210px; background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); z-index: 50; box-shadow: 0 18px 40px rgba(0,0,0,.55); overflow: hidden; }
        .dropdown-wrapper.active .dropdown-content { display: block; }
        .dropdown-content a { display: block; padding: 12px 16px; border-bottom: 1px solid var(--border-subtle); font-size: .9rem; color: var(--text-muted); text-decoration: none; }
        .dropdown-content a:hover { background: rgba(70,140,255,.08); color: var(--text-main); }
        .dropdown-content a:last-child { border-bottom: none; }

        /* --- HERO --- */
        .od-hero { margin-bottom: 1.25rem; }
        .od-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
        .data-badge { display: inline-flex; align-items: center; gap: 7px; background: rgba(70,140,255,.12); color: var(--accent-ink); font-family: var(--font-data); font-size: .72rem; letter-spacing: .04em; padding: 5px 11px; border-radius: 999px; border: 1px solid var(--card-edge); }
        .data-badge i { color: var(--action-hi); }
        .section-title { font-family: var(--display); font-size: 2.2rem; line-height: 1.08; font-weight: 800; letter-spacing: -.025em; margin: 0 0 .5rem 0; color: var(--text-main); }
        .section-title .hl { color: var(--action-hi); }
        .section-description { font-size: 1.05rem; color: var(--text-muted); max-width: 720px; margin: 0; line-height: 1.6; }

        /* --- DECISION BAR: proof + primary CTA next to the data --- */
        .od-decisionbar { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin: 22px 0 8px; padding: 16px 18px; background: var(--panel); border: 1px solid var(--card-edge); border-radius: var(--radius-lg); box-shadow: 0 20px 42px -24px var(--accent-glow); position: relative; overflow: hidden; }
        .od-decisionbar::after { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; background: radial-gradient(120% 80% at 50% -14%, rgba(70,140,255,.10), transparent 60%); }
        .od-decisionbar > * { position: relative; z-index: 1; }
        .od-decisionbar .od-db-copy { flex: 1 1 240px; min-width: 0; }
        .od-decisionbar .od-db-copy .t { font-family: var(--display); font-weight: 800; font-size: 1.05rem; letter-spacing: -.01em; color: var(--text-main); }
        .od-decisionbar .od-db-copy .s { margin-top: 3px; color: var(--text-muted); font-size: .92rem; line-height: 1.5; }
        .od-decisionbar .od-db-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
        .bb-proof { min-height: 44px; }
        .od-cta { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 44px; background: var(--accent-grad); color: #fff; padding: 12px 20px; border-radius: 12px; font-weight: 700; font-size: .95rem; text-decoration: none; border: 1px solid var(--card-edge); box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 12px 26px -8px var(--accent-glow); transition: .18s; }
        .od-cta:hover { filter: brightness(1.07); transform: translateY(-1px); color: #fff; }
        .od-cta:focus-visible { outline: 2px solid var(--accent-ink); outline-offset: 2px; }

        /* --- TABLE (the data they came for) --- */
        .od-tablehead { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px; margin: 30px 0 12px; }
        .od-tablehead h2 { font-family: var(--display); font-size: 1.35rem; font-weight: 800; letter-spacing: -.015em; margin: 0; color: var(--text-main); }
        .od-tablehead .legend { display: flex; gap: 14px; font-family: var(--font-data); font-size: .72rem; letter-spacing: .04em; color: var(--text-dim); text-transform: uppercase; }
        .od-tablehead .legend .dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 5px; vertical-align: middle; }
        .od-tablehead .legend .dot.model { background: var(--model); box-shadow: 0 0 8px var(--model); }
        .od-tablehead .legend .dot.impl { background: var(--action-hi); }

        .table-container { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--card-edge); border-radius: var(--radius-lg); background: var(--bg-card); box-shadow: 0 20px 42px -24px var(--accent-glow); }
        .game-tips-table { width: 100%; border-collapse: collapse; min-width: 620px; }
        .game-tips-table th, .game-tips-table td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--border-subtle); white-space: nowrap; }
        .game-tips-table th { background-color: var(--bg-panel); color: var(--text-muted); font-weight: 700; position: sticky; top: 0; z-index: 2; font-family: var(--font-data); font-size: .74rem; text-transform: uppercase; letter-spacing: .05em; }
        .game-tips-table th.sticky-col, .game-tips-table td.sticky-col { position: sticky; left: 0; background-color: var(--bg-card); z-index: 3; box-shadow: 2px 0 8px rgba(0,0,0,.22); border-right: 1px solid var(--border-subtle); }
        .game-tips-table th.sticky-col { background-color: var(--bg-panel); z-index: 4; }
        /* mono numerics, money-green model column */
        .game-tips-table td:nth-child(5), .game-tips-table td:nth-child(6), .game-tips-table td:nth-child(7) { font-family: var(--font-data); font-variant-numeric: tabular-nums; }
        .game-tips-table td:nth-child(6) { color: var(--model); font-weight: 600; }
        .game-tips-table td:nth-child(7) { color: var(--action-hi); }
        .game-info-cell { display: flex; flex-direction: column; align-items: flex-start; gap: 5px; }
        .game-time { font-size: .82em; color: var(--text-dim); font-family: var(--font-data); }
        .team-logos { display: flex; align-items: center; gap: 6px; color: var(--text-dim); font-family: var(--font-data); }
        .team-logo { width: 20px; height: 20px; object-fit: contain; }
        .team-names { font-weight: 700; font-size: 1em; color: var(--text-main); }
        .game-tips-table tbody tr:hover { background-color: rgba(70,140,255,.05); }
        .game-tips-table tbody tr:hover .sticky-col { background-color: rgba(70,140,255,.08); }

        .no-tips-card { background: var(--bg-card); border: 1px solid var(--card-edge); border-radius: var(--radius-lg); padding: 44px 24px; text-align: center; margin: 2rem 0; box-shadow: 0 20px 42px -24px var(--accent-glow); }
        .no-tips-card h4 { color: var(--text-main); font-family: var(--display); font-size: 1.4rem; margin: 1rem 0 .5rem; font-weight: 800; }
        .no-tips-card p { color: var(--text-muted); margin-bottom: 1.75rem; }
        .btn-primary-action { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 44px; background: var(--accent-grad); color: #fff; padding: 12px 24px; border-radius: 12px; font-weight: 700; transition: .2s; border: 1px solid var(--card-edge); box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 12px 26px -8px var(--accent-glow); text-decoration: none; }
        .btn-primary-action:hover { transform: translateY(-1px); filter: brightness(1.07); color: #fff; }

        /* --- UPSELL: locked-tease right after the free data --- */
        .od-upsell { margin: 26px 0 8px; padding: 22px; background: var(--panel); border: 1px solid var(--card-edge); border-radius: var(--radius-lg); box-shadow: 0 20px 42px -24px var(--accent-glow); position: relative; overflow: hidden; display: grid; grid-template-columns: 56px 1fr auto; gap: 16px; align-items: center; }
        .od-upsell::after { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; background: radial-gradient(120% 80% at 50% -14%, rgba(70,140,255,.10), transparent 60%); }
        .od-upsell > * { position: relative; z-index: 1; }
        .od-upsell .u-copy .t { font-family: var(--display); font-weight: 800; font-size: 1.25rem; letter-spacing: -.015em; color: var(--text-main); margin: 0; }
        .od-upsell .u-copy .t .hl { color: var(--model); }
        .od-upsell .u-copy .s { margin: 5px 0 0; color: var(--text-muted); font-size: .95rem; line-height: 1.55; }

        /* --- SEO CONTENT (demoted below the core) --- */
        .seo-content { color: var(--text-muted); margin-bottom: 38px; margin-top: 40px; }
        .seo-content h2 { color: var(--text-main); font-family: var(--display); margin-top: 28px; font-size: 1.4rem; font-weight: 800; letter-spacing: -.015em; }
        .seo-content h3 { color: var(--text-main); font-family: var(--display); margin-top: 18px; font-size: 1.1rem; font-weight: 700; letter-spacing: -.01em; }
        .seo-content p { margin-bottom: 14px; line-height: 1.72; }
        .seo-content ul { list-style: none; padding: 0; margin: 0; }
        .seo-content li { margin-bottom: 10px; }
        .seo-content li a { color: var(--action-hi); text-decoration: none; }
        .seo-content li a:hover { color: var(--accent-ink); }
        .seo-content li i { margin-right: 8px; color: var(--action-hi); }
        .seo-divider { margin-top: 52px; padding-top: 8px; border-top: 1px solid var(--border-subtle); }
        .seo-divider-label { font-family: var(--font-data); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text-dim); }
        .seo-card { background: var(--panel-2); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); padding: 18px; margin-top: 14px; }
        .mini-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 14px; }
        .mini-item { border: 1px solid var(--border-subtle); border-radius: 12px; padding: 14px; background: var(--void); }
        .mini-item .k { font-family: var(--font-data); font-size: .72rem; color: var(--action-hi); letter-spacing: .06em; text-transform: uppercase; }
        .mini-item .v { margin-top: 6px; font-weight: 700; color: var(--text-main); }
        .mini-item .s { margin-top: 6px; color: var(--text-muted); font-size: .9rem; line-height: 1.55; }

        /* --- ABOUT / STATS --- */
        .persuasive-stats-container { margin: 48px 0 10px; padding: 22px; border: 1px solid var(--card-edge); border-radius: var(--radius-lg); background: var(--panel); box-shadow: 0 20px 42px -24px var(--accent-glow); }
        .persuasive-title { font-family: var(--display); font-size: 1.45rem; font-weight: 800; margin: 0 0 16px 0; letter-spacing: -.02em; color: var(--text-main); }
        .persuasive-stats-cards-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
        .stat-card { border: 1px solid var(--border-subtle); border-radius: 14px; padding: 16px; background: var(--void); display: grid; grid-template-columns: 44px 1fr; gap: 13px; align-items: start; }
        .stat-icon-container { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: rgba(70,140,255,.12); border: 1px solid var(--card-edge); }
        .stat-icon { color: var(--action-hi); font-size: 18px; }
        .stat-number { display: block; font-family: var(--font-data); font-variant-numeric: tabular-nums; font-size: 1.5rem; font-weight: 700; color: var(--model); letter-spacing: -.01em; }
        .stat-label { display: block; font-family: var(--font-data); font-size: .72rem; color: var(--text-dim); letter-spacing: .06em; text-transform: uppercase; margin-top: 3px; }
        .stat-text { margin: 8px 0 0 0; color: var(--text-muted); line-height: 1.5; font-size: .92rem; }

        /* --- EMAIL SIGNUP --- */
        .full-width-email-signup { background: var(--bg-panel); border-top: 1px solid var(--border-subtle); padding: 56px 5%; margin-top: 72px; }

        @media (max-width: 920px) {
            .section-title { font-size: 1.85rem; }
            .od-upsell { grid-template-columns: 1fr; text-align: left; }
            .mini-grid { grid-template-columns: 1fr; }
            .persuasive-stats-cards-grid { grid-template-columns: 1fr; }
        }

        @media (max-width: 768px) {
            .section-title { font-size: 1.6rem; }
            .betbetter-nav { display: flex; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 12px; }
            .nav-btn { flex: 0 0 auto; padding: 10px 16px; font-size: .82rem; }
            .od-decisionbar { padding: 14px; }
            .od-cta, .bb-proof { width: 100%; }
            .table-container { margin-left: 0; margin-right: 0; }
            .game-tips-table th, .game-tips-table td { padding: 11px 13px; }
            .game-tips-table { min-width: 560px; }
        }

        /* --- MODEL/PREDICTION GATE (presentation-only blur tease for non-subscribers) --- */
        .od-locked .od-gate { filter: blur(5px); -webkit-user-select: none; user-select: none; pointer-events: none; }
        .od-unlock-note { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 14px 0 0; padding: 12px 16px; background: var(--panel); border: 1px solid var(--card-edge); border-radius: var(--radius-md, 10px); color: var(--text-muted); font-size: .92rem; line-height: 1.5; }
        .od-unlock-note .od-lockic { color: var(--model); }
        .od-unlock-note .u-cta { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; background: var(--accent-grad); color: #fff; border: 1px solid var(--card-edge); padding: 9px 16px; border-radius: 10px; font-weight: 700; font-size: .9rem; cursor: pointer; text-decoration: none; min-height: 40px; }
        .od-unlock-note .u-cta:hover { filter: brightness(1.07); }
    