:root,[data-theme="dark"]{
--bpo-bg:#0F1923;--bpo-bg-mid:#1A2733;--bpo-bg-light:#243447;--bpo-bg-card:#1E2D3D;
--bpo-blue:#224376;--bpo-red:#E83F44;--bpo-red-glow:rgba(232,63,68,.15);
--bpo-green:#2ECC71;--bpo-green-dim:rgba(46,204,113,.12);--bpo-orange:#FF6F20;
--bpo-white:#FFFFFF;--bpo-text:#C8D6E5;--bpo-text-dim:#7F8FA4;--bpo-heading:#FFFFFF;
--bpo-border:rgba(255,255,255,.06);--bpo-border-light:rgba(255,255,255,.10);
--bpo-odd-bg:#1E2D3D;--bpo-odd-hover:rgba(232,63,68,.08);--bpo-odd-text:#FFFFFF;
--bpo-nav-bg:#0F1923;--bpo-strip-bg:#1A2733;--bpo-foot-bg:#0F1923;
--bpo-toggle-bg:#243447;--bpo-toggle-dot:#FFFFFF;--bpo-icon-sun:#7F8FA4;--bpo-icon-moon:#F5A623;
--font-display:'Space Grotesk',sans-serif;--font-body:'DM Sans',sans-serif;
--radius:10px;--radius-sm:6px;--shadow:0 2px 8px rgba(0,0,0,.25);--ease:.18s ease;
}
[data-theme="light"]{
--bpo-bg:#F0F2F5;--bpo-bg-mid:#FFFFFF;--bpo-bg-light:#E8ECF0;--bpo-bg-card:#FFFFFF;
--bpo-text:#475467;--bpo-text-dim:#8896A6;--bpo-heading:#101828;
--bpo-border:#E0E4EA;--bpo-border-light:#D0D5DD;
--bpo-odd-bg:#F6F7FA;--bpo-odd-hover:rgba(232,63,68,.06);--bpo-odd-text:#101828;
--bpo-nav-bg:#FFFFFF;--bpo-strip-bg:#FFFFFF;--bpo-foot-bg:#1A2733;
--bpo-toggle-bg:#D0D5DD;--bpo-icon-sun:#F5A623;--bpo-icon-moon:#8896A6;
--shadow:0 1px 3px rgba(16,24,40,.06);
}
*{box-sizing:border-box;margin:0;padding:0}
html{overflow-x:clip;max-width:100vw}
body{font-family:var(--font-body);background:var(--bpo-bg);color:var(--bpo-text);-webkit-font-smoothing:antialiased;overflow-x:clip;max-width:100vw;transition:background .3s,color .3s}
a{color:var(--bpo-text);text-decoration:none;transition:color var(--ease)}a:hover{color:var(--bpo-heading)}
h1,h2,h3,h4,h5,h6{font-family:var(--font-display);color:var(--bpo-heading);font-weight:700}

/* ── NAV ── */
.bpo-nav{background:var(--bpo-nav-bg);border-bottom:1px solid var(--bpo-border);padding:0;position:sticky;top:0;z-index:1050;transition:background .3s}
[data-theme="light"] .bpo-nav{box-shadow:0 1px 4px rgba(0,0,0,.06)}
.bpo-nav .container-xl{display:flex;align-items:center}
.bpo-nav__brand{font-family:var(--font-display);font-weight:700;font-size:18px;color:var(--bpo-heading);padding:14px 0;white-space:nowrap;margin-right:28px;letter-spacing:-.02em}
.bpo-nav__brand em{font-style:normal;color:var(--bpo-red)}
.bpo-nav__links{display:flex;align-items:center;flex:1;overflow:visible}
.bpo-nav__link{font-family:var(--font-display);font-size:12.5px;font-weight:600;text-transform:uppercase;letter-spacing:.04em;color:var(--bpo-text-dim);padding:16px 14px;white-space:nowrap;border-bottom:2px solid transparent;transition:all var(--ease)}
.bpo-nav__link:hover{color:var(--bpo-heading)}.bpo-nav__link.active{color:var(--bpo-heading);border-bottom-color:var(--bpo-red)}
.bpo-nav__right{display:flex;align-items:center;gap:10px;margin-left:auto;flex-shrink:0}

/* ── Settings cog dropdown ── */
.bpo-settings{position:relative}
.bpo-settings__btn{width:34px;height:34px;border-radius:50%;background:var(--bpo-bg-mid);border:1px solid var(--bpo-border-light);color:var(--bpo-text-dim);display:flex;align-items:center;justify-content:center;font-size:15px;cursor:pointer;transition:all var(--ease)}
.bpo-settings__btn:hover{color:var(--bpo-heading);border-color:var(--bpo-text-dim)}
.bpo-settings__btn.active{color:var(--bpo-heading);border-color:var(--bpo-red);background:var(--bpo-red-glow)}
.bpo-settings__dropdown{position:absolute;top:calc(100% + 10px);right:0;background:var(--bpo-bg-mid);border:1px solid var(--bpo-border-light);border-radius:var(--radius);padding:8px;min-width:200px;box-shadow:0 8px 32px rgba(0,0,0,.35);z-index:2000;display:none}
.bpo-settings__dropdown.open{display:block;animation:fadeDown .15s ease}
@keyframes fadeDown{from{opacity:0;transform:translateY(-6px)}to{opacity:1;transform:none}}
.bpo-settings__label{font-family:var(--font-display);font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.06em;color:var(--bpo-text-dim);padding:4px 8px 6px;display:block}
.bpo-settings__row{display:flex;align-items:center;justify-content:space-between;padding:8px;border-radius:var(--radius-sm);transition:background var(--ease)}
.bpo-settings__row:hover{background:var(--bpo-bg-light)}
.bpo-settings__row-label{font-size:13px;font-weight:600;color:var(--bpo-heading);display:flex;align-items:center;gap:8px}
.bpo-settings__row-label i{font-size:13px;color:var(--bpo-text-dim);width:16px;text-align:center}
.bpo-tog{width:36px;height:20px;background:var(--bpo-toggle-bg);border-radius:50px;position:relative;transition:background .3s;flex-shrink:0;cursor:pointer}
.bpo-tog__dot{width:14px;height:14px;background:#fff;border-radius:50%;position:absolute;top:3px;left:3px;transition:transform .3s;box-shadow:0 1px 3px rgba(0,0,0,.25)}
[data-theme="light"] .bpo-tog{background:var(--bpo-red)}
[data-theme="light"] .bpo-tog__dot{transform:translateX(16px)}
.bpo-odds-toggle{display:flex;background:var(--bpo-bg-light);border-radius:50px;padding:2px;gap:2px}
.bpo-state-select{width:100%;background:var(--bpo-bg-light);border:1px solid var(--bpo-border-light);border-radius:var(--radius-sm);color:var(--bpo-heading);font-family:var(--font-display);font-size:12px;font-weight:600;padding:5px 8px;outline:none;cursor:pointer;transition:border-color var(--ease)}
.bpo-state-select:focus{border-color:var(--bpo-red)}
[data-theme="light"] .bpo-state-select{background:var(--bpo-bg-light)}
.bpo-odds-toggle__opt{font-family:var(--font-display);font-size:11px;font-weight:600;color:var(--bpo-text-dim);padding:3px 10px;border-radius:50px;cursor:pointer;transition:all var(--ease)}
.bpo-odds-toggle__opt.active{background:var(--bpo-red);color:#fff}

.bpo-betslip-btn{display:flex;align-items:center;gap:6px;background:var(--bpo-red);color:#fff;border:none;border-radius:50px;padding:7px 16px;font-size:12px;font-weight:700;font-family:var(--font-display);cursor:pointer;transition:all var(--ease)}
.bpo-betslip-btn:hover{background:#d03338;transform:translateY(-1px)}
.bpo-betslip-btn .badge{background:var(--bpo-white);color:var(--bpo-red);font-size:10px;border-radius:50px;padding:1px 7px;font-weight:800;min-width:18px;text-align:center}
.badge.pulse{animation:bpoPulse .3s ease}
@keyframes bpoPulse{0%{transform:scale(1)}50%{transform:scale(1.3)}100%{transform:scale(1)}}

/* ── SPORT STRIP ── */
.bpo-sports-strip{background:var(--bpo-strip-bg);border-bottom:1px solid var(--bpo-border);overflow-x:auto}
.bpo-sports-strip__inner{display:flex;min-width:max-content}
.bpo-sport-pill{display:flex;flex-direction:column;align-items:center;gap:4px;padding:12px 20px;cursor:pointer;transition:all var(--ease);border-bottom:2px solid transparent;min-width:72px}
.bpo-sport-pill:hover{background:var(--bpo-bg-light)}
.bpo-sport-pill.active{border-bottom-color:var(--bpo-red);background:var(--bpo-red-glow)}
.bpo-sport-pill__circle{width:36px;height:36px;border-radius:50%;background:var(--bpo-bg-light);display:flex;align-items:center;justify-content:center;font-size:15px;color:var(--bpo-text-dim);transition:all var(--ease)}
.bpo-sport-pill.active .bpo-sport-pill__circle{background:var(--bpo-red);color:#fff}
.bpo-sport-pill__label{font-family:var(--font-display);font-size:10px;font-weight:600;color:var(--bpo-text-dim);text-transform:uppercase;letter-spacing:.05em}
.bpo-sport-pill.active .bpo-sport-pill__label{color:var(--bpo-heading)}

/* ── MARKET PILLS (soccer only) ── */
.bpo-market-pills{display:flex;gap:6px;padding:16px 0 12px;overflow-x:auto}
.bpo-market-pills--hidden{display:none}
.bpo-market-pill{font-family:var(--font-display);font-size:12px;font-weight:600;color:var(--bpo-text-dim);background:var(--bpo-bg-mid);border:1px solid var(--bpo-border-light);border-radius:50px;padding:6px 16px;cursor:pointer;white-space:nowrap;transition:all var(--ease)}
.bpo-market-pill:hover{color:var(--bpo-heading);border-color:var(--bpo-text-dim)}
.bpo-market-pill.active{background:var(--bpo-red);border-color:var(--bpo-red);color:#fff}

/* ── SECTION HEAD ── */
.bpo-section-head{display:flex;align-items:center;gap:10px;margin-bottom:14px}
.bpo-section-head__bar{width:3px;height:22px;background:var(--bpo-red);border-radius:3px;flex-shrink:0}
.bpo-section-head__title{font-size:18px;font-weight:700;color:var(--bpo-heading)}
.bpo-section-head__badge{font-size:11px;font-weight:700;color:var(--bpo-text-dim);background:var(--bpo-bg-light);padding:2px 10px;border-radius:50px;margin-left:auto}

/* ── LEAGUE CARD ── */
.bpo-league-card{background:var(--bpo-bg-mid);border-radius:var(--radius);overflow:hidden;margin-bottom:12px;border:1px solid var(--bpo-border)}
.bpo-league-head{display:flex;align-items:center;gap:8px;padding:10px 16px;background:var(--bpo-bg-light);border-bottom:1px solid var(--bpo-border)}
.bpo-league-flag{width:22px;height:15px;border-radius:2px;overflow:hidden;flex-shrink:0;display:flex;align-items:center;justify-content:center;background:#334;font-size:7px;font-weight:700;color:#fff;text-transform:uppercase}
.bpo-league-flag img{width:100%;height:100%;object-fit:cover}
.bpo-league-logo{height:18px;max-width:28px;object-fit:contain;opacity:.8;flex-shrink:0}
.bpo-league-name{font-family:var(--font-display);font-size:13px;font-weight:700;color:var(--bpo-heading)}
.bpo-league-country{font-size:11px;color:var(--bpo-text-dim)}
.bpo-league-date{margin-left:auto;font-size:11px;color:var(--bpo-text-dim);white-space:nowrap}

/* ── SOCCER MATCH GRID ── */
.bpo-row{display:grid;align-items:center;padding:0 16px}
.bpo-col-head{padding-top:4px;padding-bottom:4px;border-bottom:1px solid var(--bpo-border);font-family:var(--font-display);font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.06em;color:var(--bpo-text-dim)}
.bpo-col-head span:first-child{text-align:left}.bpo-col-head span{text-align:center}
.bpo-match{border-bottom:1px solid var(--bpo-border);transition:background var(--ease)}
.bpo-match:last-child{border-bottom:none}
.bpo-match:hover{background:var(--bpo-odd-hover)}
.bpo-match__info{padding:10px 0}
.bpo-match__time{font-size:10px;color:var(--bpo-text-dim);font-weight:600;font-family:var(--font-display);margin-bottom:2px}
.bpo-match__team{display:flex;align-items:center;gap:6px;font-size:13px;font-weight:500;color:var(--bpo-text);line-height:1.6}
.bpo-match__dot{width:14px;height:14px;border-radius:3px;flex-shrink:0;background:var(--bpo-bg-light)}
.bpo-team-logo{width:18px;height:18px;object-fit:contain;flex-shrink:0;border-radius:2px}
.bpo-team-logo--fallback{width:18px;height:18px;border-radius:3px;background:var(--bpo-bg-light);flex-shrink:0}
.bpo-am-logo{width:20px;height:20px;object-fit:contain;flex-shrink:0;border-radius:2px}
.bpo-match__point-label{font-size:10px;color:var(--bpo-text-dim);margin-top:2px}

/* ── AMERICAN SPORT COMBINED GRID ── */
/* Column headers */
.bpo-am-cols{display:grid;grid-template-columns:1fr 80px 80px 80px;padding:4px 16px;font-family:var(--font-display);font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.06em;color:var(--bpo-text-dim);border-bottom:1px solid var(--bpo-border)}
.bpo-am-cols span{text-align:center}.bpo-am-cols span:first-child{text-align:left}

/* Fixture = flat grid: time spans all cols */
.bpo-am-fixture{display:grid;grid-template-columns:1fr 80px 80px 80px;align-items:center;padding:0 16px;border-bottom:none;transition:background var(--ease)}
.bpo-am-fixture-wrap{border-bottom:1px solid var(--bpo-border);transition:background var(--ease)}
.bpo-am-fixture-wrap:last-child{border-bottom:none}
.bpo-am-fixture-wrap:hover{background:var(--bpo-odd-hover)}
.bpo-am-time{grid-column:1 / -1;padding:6px 0 0;font-size:10px;color:var(--bpo-text-dim);font-weight:600;font-family:var(--font-display)}
.bpo-am-team{font-size:13px;font-weight:500;color:var(--bpo-text);display:flex;align-items:center;gap:5px;padding:4px 0}
.bpo-am-team span.at{color:var(--bpo-text-dim);font-size:11px}
a.bpo-am-team--link{text-decoration:none;color:inherit;cursor:pointer;display:flex;align-items:center;gap:6px}
a.bpo-am-team--link:hover{color:var(--bpo-red)}

/* Odds cells */
.bpo-am-cell{display:flex;flex-direction:column;align-items:center;justify-content:center;margin:2px;padding:6px 4px;border-radius:var(--radius-sm);background:var(--bpo-odd-bg);border:1px solid var(--bpo-border);cursor:pointer;transition:all var(--ease);min-height:42px}
.bpo-am-cell:hover{border-color:var(--bpo-red);background:var(--bpo-red-glow);transform:translateY(-1px)}
.bpo-am-cell.selected{background:var(--bpo-red) !important;border-color:var(--bpo-red) !important;transform:translateY(-1px);box-shadow:0 2px 12px rgba(232,63,68,.35)}
.bpo-am-cell.selected .bpo-am-val,.bpo-am-cell.selected .bpo-am-pt{color:#fff !important}
.bpo-am-cell--na{cursor:default;opacity:.3;pointer-events:none}
.bpo-am-val{font-family:var(--font-display);font-size:14px;font-weight:700;color:var(--bpo-odd-text);line-height:1;display:flex;align-items:center;gap:3px}
.bpo-am-ou{font-size:10px;font-weight:800;background:var(--bpo-text-dim);color:var(--bpo-bg);border-radius:3px;padding:1px 3px;line-height:1.2}
.bpo-am-cell.selected .bpo-am-ou{background:rgba(255,255,255,.7);color:var(--bpo-red)}
.bpo-am-pt{font-size:10px;color:var(--bpo-text-dim);margin-top:2px}

/* More Markets — footer row below the odds */
.bpo-am-more{padding:4px 16px 6px;text-align:right;width:100%;display:flex;justify-content:flex-end}
.bpo-am-more a{font-family:var(--font-display);font-size:11px;font-weight:600;color:var(--bpo-text-dim);white-space:nowrap;display:inline-flex;align-items:center;gap:4px;transition:color var(--ease)}
.bpo-am-more a:hover{color:var(--bpo-red)}

/* ── ODDS CELL (soccer) ── */
.bpo-odd{display:flex;flex-direction:column;align-items:center;justify-content:center;margin:4px 2px;padding:8px 4px;border-radius:var(--radius-sm);background:var(--bpo-odd-bg);border:1px solid var(--bpo-border);cursor:pointer;transition:all var(--ease);min-height:48px}
.bpo-odd:hover{border-color:var(--bpo-red);background:var(--bpo-red-glow);transform:translateY(-1px)}
.bpo-odd.selected{background:var(--bpo-red) !important;border-color:var(--bpo-red) !important;transform:translateY(-1px);box-shadow:0 2px 12px rgba(232,63,68,.35)}
.bpo-odd.selected .bpo-odd__val,.bpo-odd.selected .bpo-odd__pt{color:#fff !important}
.bpo-odd__val{font-family:var(--font-display);font-size:15px;font-weight:700;color:var(--bpo-odd-text);line-height:1}
.bpo-odd__pt{font-size:10px;color:var(--bpo-text-dim);margin-top:2px}
.bpo-odd--na{cursor:default;opacity:.35}
.bpo-odd--na:hover{border-color:var(--bpo-border);background:var(--bpo-odd-bg);transform:none}

/* ── LOADING / EMPTY ── */
.bpo-loading{display:flex;align-items:center;justify-content:center;padding:60px 20px;gap:12px;color:var(--bpo-text-dim)}
.bpo-spinner{width:22px;height:22px;border:3px solid var(--bpo-border);border-top-color:var(--bpo-red);border-radius:50%;animation:spin .65s linear infinite;flex-shrink:0}
@keyframes spin{to{transform:rotate(360deg)}}
.bpo-empty{text-align:center;padding:60px 20px;color:var(--bpo-text-dim)}
.bpo-empty i{font-size:40px;margin-bottom:16px;display:block;opacity:.5}
.bpo-empty h3{color:var(--bpo-heading);margin-bottom:6px}
.bpo-empty p{font-size:13px}

/* ── BETSLIP OFFCANVAS ── */
.bpo-slip{width:380px!important;background:var(--bpo-bg-mid);border-left:none;color:var(--bpo-text);overflow:hidden!important;display:flex;flex-direction:column}
[data-theme="light"] .bpo-slip{box-shadow:-4px 0 24px rgba(0,0,0,.08)}
.bpo-slip__head{background:var(--bpo-bg-light);padding:14px 16px;display:flex;align-items:center;gap:10px;border-bottom:2px solid var(--bpo-red)}
.bpo-slip__head-icon{width:32px;height:32px;border-radius:8px;background:var(--bpo-red);color:#fff;display:flex;align-items:center;justify-content:center;font-size:14px;flex-shrink:0}
.bpo-slip__head-title{font-family:var(--font-display);font-size:15px;font-weight:700;color:var(--bpo-heading);flex:1}
.bpo-slip__leg-count{font-family:var(--font-display);font-size:12px;font-weight:700;color:var(--bpo-red);background:var(--bpo-red-glow);padding:2px 10px;border-radius:50px}
.bpo-slip__close{background:none;border:none;color:var(--bpo-text-dim);font-size:18px;cursor:pointer;padding:4px;transition:color var(--ease)}
.bpo-slip__close:hover{color:var(--bpo-heading)}
.bpo-slip__body{display:flex;flex-direction:column;flex:1;overflow-y:auto;overflow-x:hidden;min-height:0;-webkit-overflow-scrolling:touch;overscroll-behavior:contain}
.bpo-slip__scroll{flex:none;overflow:visible}
.bpo-slip__empty{display:flex;flex-direction:column;align-items:center;padding:44px 20px;text-align:center}
.bpo-slip__empty-icon{width:56px;height:56px;border-radius:50%;background:var(--bpo-bg-light);display:flex;align-items:center;justify-content:center;font-size:22px;color:var(--bpo-text-dim);margin-bottom:14px}
.bpo-slip__empty-title{font-family:var(--font-display);font-size:15px;font-weight:700;color:var(--bpo-heading);margin-bottom:4px}
.bpo-slip__empty-desc{font-size:12px;color:var(--bpo-text-dim);line-height:1.5}
.bpo-slip__card{padding:12px 16px;border-bottom:1px solid var(--bpo-border);position:relative;transition:background var(--ease);animation:slideIn .22s ease}
.bpo-slip__card--void{opacity:.45}
.bpo-slip__card--void .bpo-slip__card-outcome{text-decoration:line-through;color:var(--bpo-text-dim)}
.bpo-slip__card--void .bpo-slip__card-odds{text-decoration:line-through;color:var(--bpo-text-dim) !important}
.bpo-slip__void-badge{font-size:9px;font-weight:800;text-transform:uppercase;letter-spacing:.06em;color:#fff;background:var(--bpo-text-dim);border-radius:3px;padding:1px 5px;margin-left:6px;vertical-align:middle}
@keyframes slideIn{from{opacity:0;transform:translateX(18px)}to{opacity:1;transform:none}}
.bpo-slip__card:hover{background:var(--bpo-bg-light)}
.bpo-slip__card-row{display:flex;gap:10px}
.bpo-slip__card-sport{width:28px;height:28px;border-radius:6px;background:var(--bpo-bg-light);display:flex;align-items:center;justify-content:center;font-size:13px;color:var(--bpo-text-dim);flex-shrink:0}
.bpo-slip__card-info{flex:1;min-width:0}
.bpo-slip__card-outcome{font-family:var(--font-display);font-size:13px;font-weight:700;color:var(--bpo-heading);display:flex;align-items:center}
.bpo-slip__card-odds{font-size:13px;font-weight:800;color:var(--bpo-green);margin-left:auto;padding-left:8px;white-space:nowrap; padding-right:20px;}
.bpo-slip__card-fixture{font-size:11px;color:var(--bpo-text-dim);margin-top:2px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.bpo-slip__card-meta{display:flex;gap:6px;margin-top:4px;flex-wrap:wrap}
.bpo-slip__card-tag{font-size:10px;font-weight:600;text-transform:uppercase;letter-spacing:.04em;color:var(--bpo-text-dim);background:var(--bpo-bg-light);padding:1px 8px;border-radius:50px}
.bpo-slip__card-rm{position:absolute;top:10px;right:12px;width:22px;height:22px;border-radius:50%;border:none;background:var(--bpo-bg-light);color:var(--bpo-text-dim);cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:10px;transition:all var(--ease)}
.bpo-slip__card-rm:hover{background:var(--bpo-red);color:#fff}
.bpo-slip__notice{padding:10px 16px;background:rgba(245,166,35,.08);border-top:1px solid rgba(245,166,35,.12);display:flex;align-items:center;gap:8px;font-size:12px;color:var(--bpo-orange)}
.bpo-slip__parlay{padding:14px 16px;border-top:2px solid var(--bpo-red);background:var(--bpo-bg-light)}
.bpo-slip__p-row{display:flex;align-items:center;justify-content:space-between;margin-bottom:6px}
.bpo-slip__p-row:last-child{margin-bottom:0}
.bpo-slip__p-label{font-size:12px;color:var(--bpo-text-dim);font-weight:600}
.bpo-slip__p-val{font-family:var(--font-display);font-size:14px;font-weight:700;color:var(--bpo-heading)}
.bpo-slip__p-val--best{font-size:18px;color:var(--bpo-green);display:flex;align-items:center;gap:5px}
.bpo-slip__bm-head{padding:10px 16px;background:var(--bpo-bg);display:flex;align-items:center;gap:8px;font-family:var(--font-display);font-size:12px;font-weight:700;color:var(--bpo-heading);border-top:1px solid var(--bpo-border)}
.bpo-slip__bm-count{background:var(--bpo-red-glow);color:var(--bpo-red);padding:1px 8px;border-radius:50px;font-size:11px}
.bpo-slip__bm-list{overflow:visible}
.bpo-slip__bm-row{display:flex;align-items:center;gap:10px;padding:10px 16px;border-bottom:1px solid var(--bpo-border);transition:background var(--ease)}
.bpo-slip__bm-row:last-child{border-bottom:none}
.bpo-slip__bm-row:hover{background:var(--bpo-odd-hover)}
.bpo-slip__bm-row:first-child{background:var(--bpo-green-dim)}
.bpo-slip__bm-rank{font-family:var(--font-display);font-size:12px;font-weight:800;color:var(--bpo-text-dim);width:18px;text-align:center}
.bpo-slip__bm-row:first-child .bpo-slip__bm-rank{color:var(--bpo-green)}
.bpo-slip__bm-logo{height:20px;max-width:80px;object-fit:contain;filter:brightness(0) invert(.7)}
[data-theme="light"] .bpo-slip__bm-logo{filter:none}
.bpo-slip__bm-name{font-size:12px;font-weight:600;color:var(--bpo-heading);flex:1}
.bpo-slip__bm-odds{font-family:var(--font-display);font-size:15px;font-weight:800;color:var(--bpo-heading)}
.bpo-slip__bm-row:first-child .bpo-slip__bm-odds{color:var(--bpo-green)}
.bpo-slip__bm-link{width:26px;height:26px;border-radius:50%;background:var(--bpo-red);color:#fff;display:flex;align-items:center;justify-content:center;font-size:11px;flex-shrink:0;transition:background var(--ease)}
.bpo-slip__bm-link:hover{background:#d03338;color:#fff}
.bpo-slip__bm-loading{padding:20px 16px;text-align:center;color:var(--bpo-text-dim);font-size:12px;display:flex;align-items:center;justify-content:center;gap:8px}
.bpo-slip__stake{padding:12px 16px;border-top:1px solid var(--bpo-border);background:var(--bpo-bg-light)}
.bpo-slip__stake-label{font-size:11px;font-weight:600;color:var(--bpo-text-dim);text-transform:uppercase;letter-spacing:.05em;margin-bottom:6px}
.bpo-slip__stake-row{display:flex;align-items:center;gap:8px}
.bpo-slip__stake-input{flex:1;background:var(--bpo-bg-mid);border:1px solid var(--bpo-border-light);border-radius:var(--radius-sm);color:var(--bpo-heading);font-family:var(--font-display);font-size:14px;font-weight:700;padding:7px 10px;outline:none;transition:border-color var(--ease)}
.bpo-slip__stake-input:focus{border-color:var(--bpo-red)}
.bpo-slip__stake-returns{font-family:var(--font-display);font-size:13px;font-weight:700;color:var(--bpo-green);white-space:nowrap}
.bpo-slip__actions{padding:12px 16px;border-top:1px solid var(--bpo-border)}
.bpo-slip__clear{padding:4px 8px;border-radius:var(--radius-sm);border:1px solid var(--bpo-border-light);background:none;color:var(--bpo-text-dim);font-family:var(--font-display);font-size:11px;font-weight:600;cursor:pointer;display:flex;align-items:center;gap:5px;transition:all var(--ease)}
.bpo-slip__clear:hover{border-color:var(--bpo-red);color:var(--bpo-red);background:var(--bpo-red-glow)}

/* ── Replace confirmation modal ── */
.bpo-confirm-overlay{position:fixed;inset:0;background:rgba(0,0,0,.6);z-index:9999;display:flex;align-items:center;justify-content:center;padding:20px;animation:fadeIn .15s ease}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
.bpo-confirm{background:var(--bpo-bg-mid);border-radius:var(--radius);padding:24px 20px;max-width:320px;width:100%;border:1px solid var(--bpo-border-light);box-shadow:0 20px 60px rgba(0,0,0,.4);animation:popIn .2s ease}
@keyframes popIn{from{opacity:0;transform:scale(.92)}to{opacity:1;transform:none}}
.bpo-confirm__icon{width:44px;height:44px;border-radius:50%;background:var(--bpo-red-glow);border:1px solid var(--bpo-red);display:flex;align-items:center;justify-content:center;font-size:18px;color:var(--bpo-red);margin:0 auto 12px}
.bpo-confirm__title{font-family:var(--font-display);font-size:16px;font-weight:700;color:var(--bpo-heading);text-align:center;margin-bottom:8px}
.bpo-confirm__msg{font-size:13px;color:var(--bpo-text-dim);text-align:center;line-height:1.5;margin-bottom:20px}
.bpo-confirm__btns{display:flex;gap:8px}
.bpo-confirm__btn{flex:1;padding:10px;border-radius:var(--radius-sm);font-family:var(--font-display);font-size:13px;font-weight:700;cursor:pointer;transition:all var(--ease);border:1px solid var(--bpo-border-light)}
.bpo-confirm__btn--cancel{background:var(--bpo-bg-light);color:var(--bpo-text-dim)}
.bpo-confirm__btn--cancel:hover{border-color:var(--bpo-text-dim);color:var(--bpo-heading)}
.bpo-confirm__btn--ok{background:var(--bpo-red);color:#fff;border-color:var(--bpo-red)}
.bpo-confirm__btn--ok:hover{background:#d03338}

/* ── HOMEPAGE LAYOUT ── */
.bpo-home-layout{display:grid;grid-template-columns:1fr 300px;gap:24px;align-items:start}
.bpo-home-main{min-width:0}

/* ── PICKS SIDEBAR ── */
.bpo-picks-sidebar{position:sticky;top:70px}
.bpo-picks-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:12px}
.bpo-picks-head__title{font-family:var(--font-display);font-size:15px;font-weight:700;color:var(--bpo-heading);display:flex;align-items:center;gap:8px}
.bpo-picks-head__title::before{content:'';width:3px;height:18px;background:var(--bpo-red);border-radius:3px}
.bpo-picks-head__more{font-family:var(--font-display);font-size:11px;font-weight:600;color:var(--bpo-text-dim);transition:color var(--ease)}
.bpo-picks-head__more:hover{color:var(--bpo-red)}
.bpo-picks-list{display:flex;flex-direction:column;gap:0}
.bpo-pick-card{display:flex;gap:12px;padding:14px 0;border-bottom:1px solid var(--bpo-border);transition:background var(--ease);cursor:pointer}
.bpo-pick-card:last-child{border-bottom:none}
.bpo-pick-card:hover .bpo-pick-card__title{color:var(--bpo-red)}
.bpo-pick-card__img{width:80px;height:70px;border-radius:6px;object-fit:cover;flex-shrink:0;background:var(--bpo-bg-light);overflow:hidden}
.bpo-pick-card__img img{width:100%;height:100%;object-fit:cover}
.bpo-pick-card__img-placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;font-size:22px;opacity:.3}
.bpo-pick-card__body{flex:1;min-width:0}
.bpo-pick-card__sport{font-family:var(--font-display);font-size:9px;font-weight:700;text-transform:uppercase;letter-spacing:.06em;color:var(--bpo-red);margin-bottom:4px}
.bpo-pick-card__title{font-family:var(--font-display);font-size:12.5px;font-weight:700;color:var(--bpo-heading);line-height:1.4;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;transition:color var(--ease);margin-bottom:5px}
.bpo-pick-card__excerpt{font-size:11px;color:var(--bpo-text-dim);line-height:1.5;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;margin-bottom:5px}
.bpo-pick-card__meta{font-size:10px;color:var(--bpo-text-dim);display:flex;align-items:center;gap:4px}

@media(max-width:1199px){
.bpo-home-layout{grid-template-columns:1fr 260px}
}
@media(max-width:991px){
.bpo-home-layout{grid-template-columns:1fr;display:block}
.bpo-picks-sidebar{position:static;margin-top:32px;padding-top:24px;border-top:1px solid var(--bpo-border)}
.bpo-picks-list{display:grid;grid-template-columns:1fr 1fr;gap:0}
.bpo-pick-card{border-bottom:1px solid var(--bpo-border);padding:10px 0}
.bpo-pick-card:nth-child(odd){padding-right:12px}
}
@media(max-width:575px){
.bpo-picks-list{grid-template-columns:1fr}
}

/* ── FOOTER ── */
/* ── CAROUSEL ── */
.bpo-carousel-wrap{position:relative;overflow:hidden;border-radius:var(--radius);margin-bottom:20px;background:var(--bpo-bg-mid)}
.bpo-carousel{display:flex;transition:transform .5s cubic-bezier(.4,0,.2,1);will-change:transform}
.bpo-carousel-slide{flex:0 0 100%;position:relative;height:220px;overflow:hidden;cursor:pointer;display:block;text-decoration:none}
.bpo-carousel-slide img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .4s ease}
.bpo-carousel-slide:hover img{transform:scale(1.03)}
.bpo-carousel-slide__overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(15,25,35,.92) 0%,rgba(15,25,35,.7) 45%,rgba(15,25,35,.15) 100%)}
.bpo-carousel-slide__content{position:absolute;inset:0;display:flex;flex-direction:column;justify-content:center;padding:24px 28px;max-width:520px}
.bpo-carousel-slide__title{font-family:var(--font-display);font-size:20px;font-weight:700;color:#fff;line-height:1.3;margin-bottom:8px;text-shadow:0 1px 8px rgba(0,0,0,.4)}
.bpo-carousel-slide__sub{font-size:13px;color:rgba(255,255,255,.75);line-height:1.55;margin-bottom:16px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.bpo-carousel-slide__cta{display:inline-flex;align-items:center;gap:7px;background:var(--bpo-red);color:#fff;font-family:var(--font-display);font-size:13px;font-weight:700;padding:8px 18px;border-radius:50px;transition:all var(--ease);align-self:flex-start;box-shadow:0 4px 16px rgba(232,63,68,.35)}
.bpo-carousel-slide__cta:hover{background:#d03338;transform:translateY(-1px);box-shadow:0 6px 20px rgba(232,63,68,.45);color:#fff}
/* Dots */
.bpo-carousel-dots{position:absolute;bottom:10px;left:50%;transform:translateX(-50%);display:flex;gap:6px;z-index:10}
.bpo-carousel-dot{width:7px;height:7px;border-radius:50%;background:rgba(255,255,255,.35);cursor:pointer;transition:all .25s ease;border:none;padding:0}
.bpo-carousel-dot.active{background:#fff;width:22px;border-radius:4px}
/* Arrows */
.bpo-carousel-arrow{position:absolute;top:50%;transform:translateY(-50%);width:34px;height:34px;border-radius:50%;background:rgba(0,0,0,.45);backdrop-filter:blur(4px);border:1px solid rgba(255,255,255,.15);color:#fff;display:flex;align-items:center;justify-content:center;font-size:12px;cursor:pointer;z-index:10;transition:all var(--ease)}
.bpo-carousel-arrow:hover{background:var(--bpo-red);border-color:var(--bpo-red)}
.bpo-carousel-arrow-prev{left:10px}
.bpo-carousel-arrow-next{right:10px}
.bpo-carousel-wrap--single .bpo-carousel-arrow,
.bpo-carousel-wrap--single .bpo-carousel-dots{display:none}
/* Mobile: goes below odds before articles section */
.bpo-carousel-mobile{display:none;margin-top:20px;margin-bottom:4px}
@media(max-width:991px){
  .bpo-carousel-desktop{display:none}
  .bpo-carousel-mobile{display:block}
}

/* ── FOOTER ── */
.bpo-foot{background:var(--bpo-foot-bg);border-top:1px solid rgba(255,255,255,.06);padding:40px 0 20px}
.bpo-foot__brand{font-family:var(--font-display);font-weight:700;font-size:18px;color:#fff;margin-bottom:10px}
.bpo-foot__brand em{font-style:normal;color:var(--bpo-red)}
.bpo-foot__desc{font-size:13px;color:rgba(255,255,255,.45);line-height:1.6;margin-bottom:16px}
.bpo-foot__social{display:flex;gap:8px}
.bpo-foot__social a{width:32px;height:32px;border-radius:50%;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.1);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.5);font-size:13px;transition:all var(--ease)}
.bpo-foot__social a:hover{background:var(--bpo-red);border-color:var(--bpo-red);color:#fff}
.bpo-foot__heading{font-family:var(--font-display);font-size:12px;font-weight:700;color:#fff;text-transform:uppercase;letter-spacing:.06em;margin-bottom:14px}
.bpo-foot__links{list-style:none;padding:0}
.bpo-foot__links li{margin-bottom:8px}
.bpo-foot__links a{font-size:13px;color:rgba(255,255,255,.45)}
.bpo-foot__links a:hover{color:#fff}
.bpo-foot__bottom{border-top:1px solid rgba(255,255,255,.06);margin-top:28px;padding-top:16px;text-align:center;font-size:11px;color:rgba(255,255,255,.3)}
.bpo-foot__responsible{font-size:12px;color:rgba(255,255,255,.35);line-height:1.6}

@media(max-width:991.98px){
.bpo-nav__links{display:none}
.bpo-slip{width:100%!important;max-width:100vw!important}

/* ── iOS Safari betslip height fix ──────────────────────────────────────────
   100vh on iOS includes the browser chrome (address bar + tab bar).
   We use dvh (dynamic viewport height) where supported, which correctly
   excludes the browser UI. env(safe-area-inset-*) handles the notch/home bar.
   Bootstrap's offcanvas sets height:100% on the element — we override it
   so the betslip fills only the truly visible area.                        */
.offcanvas.bpo-slip {
    max-height: 100dvh !important;
    max-height: -webkit-fill-available !important;
    padding-top: env(safe-area-inset-top, 0px);
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

/* The betslip body must fill the remaining height after the header */
.bpo-slip .bpo-slip__body {
    height: 0; /* flex child needs 0 basis so flex-1 works correctly on iOS */
    flex: 1 1 0;
}
}
@media(max-width:767.98px){
.bpo-odd__val{font-size:12px}
.bpo-match__team{font-size:12px}
.bpo-row{padding:0 8px}
.bpo-match,.bpo-col-head{grid-template-columns:1fr 52px 52px 52px !important}
.bpo-match__dot{display:none}
/* American grid on mobile */
.bpo-am-cols,.bpo-am-fixture{grid-template-columns:1fr 60px 60px 60px !important}
.bpo-am-val{font-size:12px}
.bpo-am-pt{font-size:9px}
.bpo-am-team{font-size:12px}
/* Betslip close button */
.bpo-slip__close{font-size:22px;padding:8px;min-width:44px;min-height:44px;display:flex;align-items:center;justify-content:center}
.bpo-nav__right{gap:6px}
.bpo-betslip-btn{padding:6px 10px;font-size:11px}
.bpo-slip__head{padding:12px}
.bpo-slip__head-title{font-size:13px}
}

/* ════════════════════════════════
   ARTICLE PAGE
   ════════════════════════════════ */
/* HERO */
.bpo-hero{position:relative;height:480px;background:var(--bpo-bg-mid)}
.bpo-hero__img{width:100%;height:100%;object-fit:cover;opacity:.5;overflow:hidden}
.bpo-hero__placeholder{width:100%;height:100%;background:linear-gradient(135deg,#0F1923 0%,#1A2733 50%,#224376 100%);display:flex;align-items:center;justify-content:center;font-size:80px;opacity:.3;overflow:hidden}
.bpo-hero__overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(15,25,35,.97) 0%,rgba(15,25,35,.6) 50%,rgba(15,25,35,.2) 100%);overflow:hidden}
.bpo-hero__content{position:absolute;bottom:0;left:0;right:0;padding:48px}
.bpo-hero__breadcrumb{display:flex;align-items:center;gap:8px;margin-bottom:16px;font-family:var(--font-display);font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:.06em;color:rgba(255,255,255,.5)}
.bpo-hero__breadcrumb a{color:rgba(255,255,255,.5);transition:color var(--ease)}
.bpo-hero__breadcrumb a:hover{color:#fff}
.bpo-hero__breadcrumb span{color:rgba(255,255,255,.25)}
.bpo-hero__sport{display:inline-flex;align-items:center;gap:6px;background:var(--bpo-red);color:#fff;font-family:var(--font-display);font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.06em;padding:4px 12px;border-radius:50px;margin-bottom:14px}
.bpo-hero__title{font-family:var(--font-display);font-size:clamp(22px,4vw,38px);font-weight:700;color:#fff;line-height:1.25;max-width:800px;margin-bottom:0}

/* ARTICLE META */
.bpo-meta{background:var(--bpo-bg-mid);border-bottom:1px solid var(--bpo-border);padding:16px 0}
.bpo-meta__inner{display:flex;align-items:center;gap:16px;flex-wrap:wrap}
.bpo-meta__avatar{width:40px;height:40px;border-radius:50%;object-fit:cover;flex-shrink:0;background:var(--bpo-bg-light);display:flex;align-items:center;justify-content:center;font-size:16px;color:var(--bpo-text-dim)}
.bpo-meta__avatar img{width:40px;height:40px;border-radius:50%;object-fit:cover}
.bpo-meta__author{font-family:var(--font-display);font-size:13px;font-weight:700;color:var(--bpo-heading)}
.bpo-meta__date{font-size:12px;color:var(--bpo-text-dim)}
.bpo-meta__sep{color:var(--bpo-border-light)}
.bpo-meta__read{font-size:12px;color:var(--bpo-text-dim);display:flex;align-items:center;gap:5px}
.bpo-meta__share{margin-left:auto;display:flex;align-items:center;gap:8px}
.bpo-share-btn{width:32px;height:32px;border-radius:50%;border:1px solid var(--bpo-border-light);display:flex;align-items:center;justify-content:center;font-size:13px;color:var(--bpo-text-dim);transition:all var(--ease);cursor:pointer;background:none}
.bpo-share-btn:hover{color:#fff;border-color:transparent}
.bpo-share-btn.twitter:hover{background:#000}
.bpo-share-btn.facebook:hover{background:#1877F2}
.bpo-share-btn.copy:hover{background:var(--bpo-green);color:#fff;border-color:var(--bpo-green)}

/* CONTENT LAYOUT */
.bpo-article-body{padding:40px 0 60px}
.bpo-article-main{max-width:760px}

/* ARTICLE TYPOGRAPHY */
.bpo-prose{font-size:17px;line-height:1.75;color:var(--bpo-text)}
.bpo-prose p{margin-bottom:22px}
.bpo-prose h2{font-size:24px;font-weight:700;color:var(--bpo-heading);margin:36px 0 14px;padding-top:4px}
.bpo-prose h3{font-size:19px;font-weight:700;color:var(--bpo-heading);margin:28px 0 12px}
.bpo-prose h4{font-size:16px;font-weight:700;color:var(--bpo-heading);margin:22px 0 10px}
.bpo-prose ul,.bpo-prose ol{padding-left:24px;margin-bottom:22px}
.bpo-prose li{margin-bottom:8px}
.bpo-prose strong{color:var(--bpo-heading);font-weight:700}
.bpo-prose em{font-style:italic}
.bpo-prose a{color:var(--bpo-red);text-decoration:underline;text-decoration-color:rgba(232,63,68,.3);transition:all var(--ease)}
.bpo-prose a:hover{text-decoration-color:var(--bpo-red)}
.bpo-prose blockquote{border-left:3px solid var(--bpo-red);padding:16px 20px;margin:28px 0;background:var(--bpo-red-glow);border-radius:0 var(--radius-sm) var(--radius-sm) 0;font-style:italic;color:var(--bpo-text)}
.bpo-prose img{max-width:100%;border-radius:var(--radius);margin:24px 0}
.bpo-prose table{width:100%;border-collapse:collapse;margin:24px 0;font-size:14px}
.bpo-prose th{background:var(--bpo-bg-light);color:var(--bpo-heading);font-family:var(--font-display);font-weight:700;font-size:12px;text-transform:uppercase;letter-spacing:.05em;padding:10px 14px;text-align:left;border-bottom:2px solid var(--bpo-border-light)}
.bpo-prose td{padding:10px 14px;border-bottom:1px solid var(--bpo-border);color:var(--bpo-text)}
.bpo-prose tr:last-child td{border-bottom:none}
.bpo-prose hr{border:none;border-top:1px solid var(--bpo-border);margin:36px 0}
.bpo-prose code{background:var(--bpo-bg-light);color:var(--bpo-red);padding:2px 6px;border-radius:4px;font-size:14px;font-family:monospace}

/* CALLOUT BOX */
.bpo-callout{background:var(--bpo-bg-mid);border:1px solid var(--bpo-border-light);border-radius:var(--radius);padding:20px 24px;margin:28px 0;border-left:3px solid var(--bpo-orange)}
.bpo-callout__label{font-family:var(--font-display);font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.08em;color:var(--bpo-orange);margin-bottom:8px}
.bpo-callout__title{font-family:var(--font-display);font-size:16px;font-weight:700;color:var(--bpo-heading);margin-bottom:6px}
.bpo-callout__text{font-size:14px;color:var(--bpo-text)}

/* EXCERPT */
.bpo-excerpt-box{background:var(--bpo-bg-light);border-radius:var(--radius);padding:20px 24px;margin-bottom:28px;border-left:3px solid var(--bpo-red)}
.bpo-excerpt-box p{font-size:15px;color:var(--bpo-text);margin:0;font-style:italic;line-height:1.65}

/* SIDEBAR */
.bpo-sidebar{position:sticky;top:80px}
.bpo-toc{background:var(--bpo-bg-mid);border:1px solid var(--bpo-border);border-radius:var(--radius);padding:20px;margin-bottom:20px}
.bpo-toc__title{font-family:var(--font-display);font-size:13px;font-weight:700;text-transform:uppercase;letter-spacing:.06em;color:var(--bpo-text-dim);margin-bottom:14px;display:flex;align-items:center;gap:8px}
.bpo-toc__list{list-style:none;padding:0;margin:0}
.bpo-toc__item{border-bottom:1px solid var(--bpo-border);padding:8px 0}
.bpo-toc__item:last-child{border-bottom:none}
.bpo-toc__link{font-size:13px;color:var(--bpo-text-dim);display:flex;align-items:flex-start;gap:8px;transition:color var(--ease)}
.bpo-toc__link:hover,.bpo-toc__link.active{color:var(--bpo-red)}
.bpo-toc__link i{font-size:8px;margin-top:5px;flex-shrink:0}
.bpo-sidebar-tags{background:var(--bpo-bg-mid);border:1px solid var(--bpo-border);border-radius:var(--radius);padding:20px}
.bpo-sidebar-tags__title{font-family:var(--font-display);font-size:13px;font-weight:700;text-transform:uppercase;letter-spacing:.06em;color:var(--bpo-text-dim);margin-bottom:14px}
.bpo-tag{display:inline-flex;align-items:center;background:var(--bpo-bg-light);color:var(--bpo-text-dim);font-family:var(--font-display);font-size:11px;font-weight:600;padding:4px 12px;border-radius:50px;margin:3px;transition:all var(--ease);border:1px solid var(--bpo-border)}
.bpo-tag:hover{background:var(--bpo-red-glow);border-color:var(--bpo-red);color:var(--bpo-red)}

/* RELATED ARTICLES */
.bpo-related{padding:48px 0;border-top:1px solid var(--bpo-border)}
.bpo-related__title{font-family:var(--font-display);font-size:22px;font-weight:700;color:var(--bpo-heading);margin-bottom:24px;display:flex;align-items:center;gap:10px}
.bpo-related__title::before{content:'';width:3px;height:22px;background:var(--bpo-red);border-radius:3px;flex-shrink:0}
.bpo-card{background:var(--bpo-bg-mid);border:1px solid var(--bpo-border);border-radius:var(--radius);overflow:hidden;transition:all var(--ease);height:100%}
.bpo-card:hover{transform:translateY(-3px);box-shadow:0 8px 32px rgba(0,0,0,.3);border-color:var(--bpo-border-light)}
.bpo-card__img{height:180px;overflow:hidden;background:var(--bpo-bg-light)}
.bpo-card__img img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease}
.bpo-card:hover .bpo-card__img img{transform:scale(1.05)}
.bpo-card__img-placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;font-size:40px;opacity:.3;background:linear-gradient(135deg,var(--bpo-bg) 0%,var(--bpo-bg-light) 100%)}
.bpo-card__body{padding:18px}
.bpo-card__sport{font-family:var(--font-display);font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.06em;color:var(--bpo-red);margin-bottom:8px}
.bpo-card__title{font-family:var(--font-display);font-size:15px;font-weight:700;color:var(--bpo-heading);line-height:1.35;margin-bottom:10px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.bpo-card__meta{font-size:12px;color:var(--bpo-text-dim);display:flex;align-items:center;gap:8px}

/* COPY TOAST */
.bpo-toast{position:fixed;bottom:24px;right:24px;background:var(--bpo-green);color:#fff;font-family:var(--font-display);font-size:13px;font-weight:600;padding:10px 20px;border-radius:50px;z-index:9999;transform:translateY(60px);opacity:0;transition:all .3s ease;display:flex;align-items:center;gap:8px}
.bpo-toast.show{transform:none;opacity:1}

/* ════════════════════════════════
   BLOG LISTING PAGE
   ════════════════════════════════ */
/* PAGE HEADER */
.bpo-page-header{padding:48px 0 32px;border-bottom:1px solid var(--bpo-border)}
.bpo-page-header__title{font-size:32px;font-weight:700;margin-bottom:8px}
.bpo-page-header__sub{font-size:15px;color:var(--bpo-text-dim)}

/* SPORT FILTERS */
.bpo-sport-filters{display:flex;gap:8px;padding:20px 0;overflow-x:auto}
.bpo-sport-filter{font-family:var(--font-display);font-size:12px;font-weight:600;color:var(--bpo-text-dim);background:var(--bpo-bg-mid);border:1px solid var(--bpo-border-light);border-radius:50px;padding:6px 16px;white-space:nowrap;transition:all var(--ease)}
.bpo-sport-filter:hover{color:var(--bpo-heading);border-color:var(--bpo-text-dim)}
.bpo-sport-filter.active{background:var(--bpo-red);border-color:var(--bpo-red);color:#fff}

/* FEATURED */
.bpo-featured{background:var(--bpo-bg-mid);border:1px solid var(--bpo-border);border-radius:var(--radius);overflow:hidden;display:flex;margin-bottom:36px;transition:all var(--ease)}
.bpo-featured:hover{transform:translateY(-2px);box-shadow:0 8px 32px rgba(0,0,0,.25)}
.bpo-featured__img{flex-shrink:0;width:440px;height:280px;overflow:hidden;background:var(--bpo-bg-light)}
.bpo-featured__img img{width:100%;height:100%;object-fit:cover;transition:transform .4s}
.bpo-featured:hover .bpo-featured__img img{transform:scale(1.04)}
.bpo-featured__body{padding:32px;display:flex;flex-direction:column;justify-content:center}
.bpo-featured__badge{display:inline-flex;align-items:center;gap:6px;background:var(--bpo-red);color:#fff;font-family:var(--font-display);font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.06em;padding:3px 10px;border-radius:50px;margin-bottom:14px}
.bpo-featured__title{font-size:22px;font-weight:700;color:var(--bpo-heading);line-height:1.3;margin-bottom:12px}
.bpo-featured__excerpt{font-size:14px;color:var(--bpo-text-dim);line-height:1.6;margin-bottom:16px;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.bpo-featured__meta{font-size:12px;color:var(--bpo-text-dim);display:flex;align-items:center;gap:8px}
@media(max-width:767px){
    .bpo-featured{flex-direction:column}
    .bpo-featured__img{width:100%;height:220px;flex-shrink:unset}
    .bpo-featured__body{padding:18px}
    .bpo-featured__title{font-size:18px}
}

/* CARDS */
.bpo-card{background:var(--bpo-bg-mid);border:1px solid var(--bpo-border);border-radius:var(--radius);overflow:hidden;transition:all var(--ease);height:100%;display:block}
.bpo-card:hover{transform:translateY(-3px);box-shadow:0 8px 24px rgba(0,0,0,.25);border-color:var(--bpo-border-light)}
.bpo-card__img{height:200px;overflow:hidden;background:var(--bpo-bg-light)}
.bpo-card__img img{width:100%;height:100%;object-fit:cover;transition:transform .4s}
.bpo-card:hover .bpo-card__img img{transform:scale(1.05)}
.bpo-card__placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;font-size:44px;opacity:.25;background:linear-gradient(135deg,var(--bpo-bg) 0%,var(--bpo-bg-light) 100%)}
.bpo-card__body{padding:18px}
.bpo-card__sport{font-family:var(--font-display);font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.06em;color:var(--bpo-red);margin-bottom:8px}
.bpo-card__title{font-family:var(--font-display);font-size:15px;font-weight:700;color:var(--bpo-heading);line-height:1.35;margin-bottom:10px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.bpo-card__excerpt{font-size:13px;color:var(--bpo-text-dim);line-height:1.55;margin-bottom:12px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.bpo-card__meta{font-size:12px;color:var(--bpo-text-dim);display:flex;align-items:center;gap:6px}

/* PAGINATION */
.bpo-pagination{display:flex;align-items:center;justify-content:center;gap:6px;padding:40px 0}
.bpo-page-btn{width:36px;height:36px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-family:var(--font-display);font-size:13px;font-weight:600;border:1px solid var(--bpo-border-light);color:var(--bpo-text-dim);transition:all var(--ease)}
.bpo-page-btn:hover{color:var(--bpo-heading);border-color:var(--bpo-text-dim)}
.bpo-page-btn.active{background:var(--bpo-red);border-color:var(--bpo-red);color:#fff}
.bpo-page-btn.disabled{opacity:.35;pointer-events:none}

.bpo-empty{text-align:center;padding:80px 20px;color:var(--bpo-text-dim)}
.bpo-empty i{font-size:48px;margin-bottom:20px;display:block;opacity:.4}

.bpo-foot{background:var(--bpo-foot-bg);border-top:1px solid rgba(255,255,255,.06);padding:32px 0 16px}
.bpo-foot__brand{font-family:var(--font-display);font-weight:700;font-size:16px;color:#fff;margin-bottom:6px}
.bpo-foot__brand em{font-style:normal;color:var(--bpo-red)}
.bpo-foot__bottom{border-top:1px solid rgba(255,255,255,.06);margin-top:20px;padding-top:14px;text-align:center;font-size:11px;color:rgba(255,255,255,.3)}

/* ════════════════════════════════
   BURGER MENU (mobile)
   ════════════════════════════════ */
.bpo-burger{display:none;width:36px;height:36px;border-radius:8px;background:var(--bpo-bg-light);border:1px solid var(--bpo-border-light);color:var(--bpo-text-dim);align-items:center;justify-content:center;font-size:16px;cursor:pointer;margin-left:8px;flex-shrink:0}
.bpo-mobile-nav{position:fixed;top:0;right:-320px;width:300px;height:100vh;background:var(--bpo-bg-mid);z-index:2000;padding:0;display:flex;flex-direction:column;box-shadow:-8px 0 32px rgba(0,0,0,.4);transition:right .3s cubic-bezier(.4,0,.2,1)}
.bpo-mobile-nav.open{right:0}
.bpo-mobile-nav__head{display:flex;align-items:center;justify-content:space-between;padding:16px 20px;border-bottom:1px solid var(--bpo-border)}
.bpo-mobile-nav__brand{font-family:var(--font-display);font-weight:700;font-size:16px;color:var(--bpo-heading)}
.bpo-mobile-nav__brand em{font-style:normal;color:var(--bpo-red)}
.bpo-mobile-nav__close{width:32px;height:32px;border-radius:50%;background:var(--bpo-bg-light);border:1px solid var(--bpo-border-light);color:var(--bpo-text-dim);display:flex;align-items:center;justify-content:center;cursor:pointer;font-size:14px}
.bpo-mobile-nav__links{flex:1;overflow-y:auto;padding:12px}
.bpo-mobile-nav__link{display:flex;align-items:center;gap:12px;padding:12px 14px;border-radius:8px;font-family:var(--font-display);font-size:14px;font-weight:600;color:var(--bpo-text-dim);transition:all var(--ease);border-bottom:none}
.bpo-mobile-nav__link:hover,.bpo-mobile-nav__link.active{background:var(--bpo-red-glow);color:var(--bpo-red)}
.bpo-mobile-nav__link i{width:18px;text-align:center;font-size:14px}
.bpo-mobile-nav__foot{padding:16px;border-top:1px solid var(--bpo-border);display:flex;flex-direction:column;gap:10px}
.bpo-mobile-overlay{position:fixed;inset:0;background:rgba(0,0,0,.5);z-index:1999;opacity:0;pointer-events:none;transition:opacity .3s}
.bpo-mobile-overlay.open{opacity:1;pointer-events:auto}
@media(max-width:991px){
  .bpo-nav__links{display:none}
  .bpo-burger{display:flex}
}
@media(min-width:992px){
  .bpo-mobile-nav,.bpo-mobile-overlay{display:none !important}
}
/* ════════════════════════════════
   SPORT BONUSES PAGE
   ════════════════════════════════ */

/* Hero */
.bpo-bonuses-hero{background:linear-gradient(135deg,var(--bpo-bg) 0%,var(--bpo-bg-mid) 60%,#1a2d45 100%);border-bottom:1px solid var(--bpo-border);padding:40px 0 32px}
.bpo-bonuses-hero__inner{display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap}
.bpo-bonuses-hero__eyebrow{font-family:var(--font-display);font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--bpo-red);margin-bottom:10px;display:flex;align-items:center;gap:6px}
.bpo-bonuses-hero__title{font-family:var(--font-display);font-size:clamp(22px,3.5vw,36px);font-weight:700;color:var(--bpo-heading);margin-bottom:10px}
.bpo-bonuses-hero__sub{font-size:15px;color:var(--bpo-text-dim);max-width:540px;line-height:1.6}
.bpo-bonuses-hero__stats{display:flex;gap:24px;flex-shrink:0}
.bpo-bonuses-hero__stat{text-align:center;background:var(--bpo-bg-light);border:1px solid var(--bpo-border-light);border-radius:var(--radius);padding:14px 24px}
.bpo-bonuses-hero__stat-n{font-family:var(--font-display);font-size:28px;font-weight:700;color:var(--bpo-red)}
.bpo-bonuses-hero__stat-l{font-size:11px;color:var(--bpo-text-dim);font-weight:600;text-transform:uppercase;letter-spacing:.05em;margin-top:2px}

/* Filters */
.bpo-bonuses-filters{background:var(--bpo-bg-mid);border-bottom:1px solid var(--bpo-border);padding:14px 0;position:sticky;top:54px;z-index:100}
.bpo-bonuses-filter-row{display:flex;flex-wrap:wrap;gap:12px 24px;align-items:center}
.bpo-bonuses-filter-group{display:flex;align-items:center;gap:6px;flex-wrap:wrap}
.bpo-bonuses-filter-label{font-family:var(--font-display);font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.05em;color:var(--bpo-text-dim);white-space:nowrap}
.bpo-filter-pill{font-family:var(--font-display);font-size:11px;font-weight:600;color:var(--bpo-text-dim);background:var(--bpo-bg-light);border:1px solid var(--bpo-border-light);border-radius:50px;padding:4px 12px;white-space:nowrap;transition:all var(--ease)}
.bpo-filter-pill:hover{color:var(--bpo-heading);border-color:var(--bpo-text-dim)}
.bpo-filter-pill.active{background:var(--bpo-red);border-color:var(--bpo-red);color:#fff}

/* Main */
.bpo-bonuses-main{padding:28px 0 60px}
.bpo-bonuses-section-head{font-family:var(--font-display);font-size:13px;font-weight:700;color:var(--bpo-text-dim);text-transform:uppercase;letter-spacing:.06em;margin-bottom:14px;display:flex;align-items:center;gap:8px}
.bpo-bonuses-section-head::after{content:'';flex:1;height:1px;background:var(--bpo-border)}

/* Bonus Card */
.bpo-bonus-card{background:var(--bpo-bg-mid);border:1px solid var(--bpo-border);border-radius:var(--radius);display:flex;align-items:stretch;overflow:hidden;margin-bottom:14px;position:relative;transition:all var(--ease)}
.bpo-bonus-card:hover{transform:translateY(-2px);box-shadow:0 6px 24px rgba(0,0,0,.25);border-color:var(--bpo-border-light)}
.bpo-bonus-card--featured{border-color:rgba(232,63,68,.3);box-shadow:0 0 0 1px rgba(232,63,68,.15)}
.bpo-bonus-card__featured-badge{position:absolute;top:12px;left:12px;background:var(--bpo-red);color:#fff;font-family:var(--font-display);font-size:9px;font-weight:700;text-transform:uppercase;letter-spacing:.06em;padding:3px 8px;border-radius:50px;display:flex;align-items:center;gap:4px}

/* Left: logo + rating */
.bpo-bonus-card__left{width:130px;flex-shrink:0;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:20px 16px;border-right:1px solid var(--bpo-border);gap:10px;background:var(--bpo-bg)}
.bpo-bonus-card__logo{width:90px;height:48px;display:flex;align-items:center;justify-content:center}
.bpo-bonus-card__logo img{max-width:100%;max-height:100%;object-fit:contain}
.bpo-bonus-card__logo--placeholder{background:var(--bpo-bg-light);border-radius:8px;width:90px;height:48px}
.bpo-bonus-card__logo--placeholder span{font-family:var(--font-display);font-size:16px;font-weight:700;color:var(--bpo-text-dim)}
.bpo-bonus-card__rating{display:flex;align-items:center;gap:2px;font-size:11px;color:#F5A623}
.bpo-bonus-card__rating span{color:var(--bpo-text-dim);font-size:10px;font-weight:600;margin-left:3px}

/* Body: content */
.bpo-bonus-card__body{flex:1;padding:20px 22px;min-width:0}
.bpo-bonus-card__top{display:flex;align-items:center;gap:10px;margin-bottom:6px;flex-wrap:wrap}
.bpo-bonus-card__bookmaker{font-family:var(--font-display);font-size:13px;font-weight:700;color:var(--bpo-heading)}
.bpo-bonus-card__type-badge{font-family:var(--font-display);font-size:9px;font-weight:700;text-transform:uppercase;letter-spacing:.05em;padding:2px 8px;border-radius:50px;background:var(--bpo-bg-light);color:var(--bpo-text-dim);border:1px solid var(--bpo-border-light)}
.bpo-bonus-card__title{font-family:var(--font-display);font-size:16px;font-weight:700;color:var(--bpo-heading);margin-bottom:4px;line-height:1.3}
.bpo-bonus-card__amount{font-family:var(--font-display);font-size:22px;font-weight:700;color:var(--bpo-red);margin-bottom:8px}
.bpo-bonus-card__desc{font-size:13px;color:var(--bpo-text-dim);line-height:1.55;margin-bottom:8px}
.bpo-bonus-card__terms{margin-top:8px;position:relative;display:inline-block}
.bpo-tc-trigger{font-size:11px;color:var(--bpo-text-dim);cursor:pointer;user-select:none;font-family:var(--font-display);font-weight:600;display:inline-flex;align-items:center;gap:4px;transition:color var(--ease)}
.bpo-tc-trigger:hover{color:var(--bpo-red)}
.bpo-tc-tooltip{display:none;position:absolute;bottom:calc(100% + 8px);left:0;width:320px;max-width:90vw;background:var(--bpo-bg-mid);border:1px solid var(--bpo-border);border-radius:8px;padding:10px 12px;font-size:11px;color:var(--bpo-text-dim);line-height:1.55;box-shadow:0 6px 24px rgba(0,0,0,.18);z-index:500}
.bpo-tc-tooltip::after{content:'';position:absolute;top:100%;left:14px;border:6px solid transparent;border-top-color:var(--bpo-border)}
.bpo-tc-tooltip::before{content:'';position:absolute;top:100%;left:15px;border:5px solid transparent;border-top-color:var(--bpo-bg-mid);z-index:1}
.bpo-bonus-card__terms:hover .bpo-tc-tooltip,
.bpo-bonus-card__terms.tc-open .bpo-tc-tooltip{display:block;animation:fadeDown .12s ease}

/* Right: CTA */
.bpo-bonus-card__right{width:190px;flex-shrink:0;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:20px 16px;gap:10px;border-left:1px solid var(--bpo-border)}
.bpo-bonus-card__code{width:100%;background:var(--bpo-bg-light);border:2px dashed var(--bpo-border-light);border-radius:8px;padding:8px 12px;text-align:center;cursor:pointer;transition:all var(--ease)}
.bpo-bonus-card__code:hover{border-color:var(--bpo-red);background:var(--bpo-red-glow)}
.bpo-bonus-card__code-label{font-family:var(--font-display);font-size:9px;font-weight:700;text-transform:uppercase;letter-spacing:.06em;color:var(--bpo-text-dim);display:block;margin-bottom:2px}
.bpo-bonus-card__code-val{font-family:monospace;font-size:14px;font-weight:700;color:var(--bpo-heading);display:block;letter-spacing:.05em}
.bpo-bonus-card__code-copy{font-size:10px;color:var(--bpo-text-dim);display:flex;align-items:center;justify-content:center;gap:4px;margin-top:4px}
.bpo-bonus-card__cta{display:flex;align-items:center;justify-content:center;gap:7px;width:100%;background:var(--bpo-red);color:#fff;font-family:var(--font-display);font-size:13px;font-weight:700;padding:10px 16px;border-radius:8px;transition:all var(--ease);text-align:center}
.bpo-bonus-card__cta:hover{background:#d03338;transform:translateY(-1px);box-shadow:0 4px 16px rgba(232,63,68,.35);color:#fff}
.bpo-bonus-card__review-btn{display:flex;align-items:center;justify-content:center;width:100%;background:#fff;color:var(--bpo-red);border:2px solid var(--bpo-red);font-family:var(--font-display);font-size:13px;font-weight:700;padding:9px 16px;border-radius:8px;transition:all var(--ease);text-align:center;text-decoration:none;margin-top:8px}
.bpo-bonus-card__review-btn:hover{background:var(--bpo-red);color:#fff;transform:translateY(-1px)}

/* Disclaimer */
.bpo-bonuses-disclaimer{background:var(--bpo-bg-light);border:1px solid var(--bpo-border);border-radius:var(--radius);padding:14px 18px;margin-top:32px;display:flex;gap:10px;align-items:flex-start;font-size:12px;color:var(--bpo-text-dim);line-height:1.55}
.bpo-bonuses-disclaimer i{color:var(--bpo-text-dim);margin-top:2px;flex-shrink:0}
.bpo-bonuses-disclaimer a{color:var(--bpo-red)}
.bpo-bonuses-empty{text-align:center;padding:80px 20px;color:var(--bpo-text-dim)}
.bpo-bonuses-empty i{font-size:48px;display:block;margin-bottom:16px;opacity:.4}

/* Mobile */
@media(max-width:767px){
.bpo-bonus-card{flex-direction:column}
.bpo-bonus-card__left{width:100%;flex-direction:row;border-right:none;border-bottom:1px solid var(--bpo-border);padding:14px 16px;justify-content:flex-start}
.bpo-bonus-card__right{width:100%;border-left:none;border-top:1px solid var(--bpo-border)}
.bpo-bonuses-hero__stats{display:none}
}

/* ════════════════════════════════
   REVIEWS LISTING PAGE
   ════════════════════════════════ */
.bpo-reviews-header{background:linear-gradient(135deg,var(--bpo-bg) 0%,var(--bpo-bg-mid) 60%,#1a3050 100%);border-bottom:1px solid var(--bpo-border);padding:40px 0 28px}
.bpo-reviews-header__inner{display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap}
.bpo-reviews-header__eyebrow{font-family:var(--font-display);font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--bpo-red);margin-bottom:10px;display:flex;align-items:center;gap:6px}
.bpo-reviews-header__title{font-family:var(--font-display);font-size:clamp(22px,3.5vw,34px);font-weight:700;color:var(--bpo-heading);margin-bottom:8px}
.bpo-reviews-header__sub{font-size:14px;color:var(--bpo-text-dim);line-height:1.6;max-width:520px}
.bpo-reviews-header__stat{text-align:center;background:var(--bpo-bg-light);border:1px solid var(--bpo-border-light);border-radius:var(--radius);padding:14px 24px;flex-shrink:0}
.bpo-reviews-header__stat-n{font-family:var(--font-display);font-size:28px;font-weight:700;color:var(--bpo-red)}
.bpo-reviews-header__stat-l{font-size:11px;color:var(--bpo-text-dim);font-weight:600;text-transform:uppercase;letter-spacing:.05em;margin-top:2px}
.bpo-reviews-tabs{background:var(--bpo-bg-mid);border-bottom:2px solid var(--bpo-border);display:flex;gap:0}
.bpo-reviews-tabs .container-xl{display:flex}
.bpo-reviews-tab{font-family:var(--font-display);font-size:12.5px;font-weight:600;text-transform:uppercase;letter-spacing:.04em;color:var(--bpo-text-dim);padding:14px 20px;border-bottom:3px solid transparent;margin-bottom:-2px;transition:all var(--ease);display:flex;align-items:center;gap:6px}
.bpo-reviews-tab:hover{color:var(--bpo-heading)}
.bpo-reviews-tab.active{color:var(--bpo-heading);border-bottom-color:var(--bpo-red)}
.bpo-reviews-main{padding:24px 0 60px}

/* Bookmaker card — screenshot-inspired layout */
.bpo-bm-card{background:var(--bpo-bg-mid);border:1px solid var(--bpo-border);border-radius:var(--radius);display:flex;align-items:stretch;margin-bottom:20px;position:relative;transition:all var(--ease)}
.bpo-bm-card:hover{transform:translateY(-2px);box-shadow:0 8px 28px rgba(0,0,0,.25);border-color:var(--bpo-border-light)}
.bpo-bm-card--featured{border-color:rgba(232,63,68,.35);border-width:2px}

/* Rank badge */
.bpo-bm-card__rank-badge{position:absolute;top:-1px;left:-1px;width:32px;height:32px;border-radius:var(--radius) 0 var(--radius-sm) 0;background:var(--bpo-bg-light);border-right:1px solid var(--bpo-border);border-bottom:1px solid var(--bpo-border);display:flex;align-items:center;justify-content:center;font-family:var(--font-display);font-size:13px;font-weight:700;color:var(--bpo-text-dim)}
.bpo-bm-card__rank-badge--top{background:var(--bpo-red);color:#fff;border-color:var(--bpo-red)}

/* Logo col */
.bpo-bm-card__logo-col{width:200px;flex-shrink:0;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:28px 20px 20px;border-right:1px solid var(--bpo-border);gap:10px;background:var(--bpo-bg);border-radius:var(--radius) 0 0 var(--radius)}
.bpo-bm-card__logo-col img{max-width:150px;max-height:60px;object-fit:contain}
.bpo-bm-card__logo-placeholder{font-family:var(--font-display);font-size:18px;font-weight:800;color:var(--bpo-text-dim);background:var(--bpo-bg-light);width:150px;height:60px;display:flex;align-items:center;justify-content:center;border-radius:6px}
.bpo-bm-card__licensed{font-family:var(--font-display);font-size:10px;font-weight:700;color:var(--bpo-green);display:flex;align-items:center;gap:4px}
.bpo-bm-card__licensed i{font-size:11px}
.bpo-bm-card__top-pick{background:#F5A623;color:#1a1a1a;font-family:var(--font-display);font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.05em;padding:3px 10px;border-radius:50px}

/* Middle section */
.bpo-bm-card__middle{flex:1;padding:20px 22px;display:flex;flex-direction:column;gap:14px;min-width:0}
.bpo-bm-card__name-row{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.bpo-bm-card__name{font-family:var(--font-display);font-size:20px;font-weight:700;color:var(--bpo-heading);transition:color var(--ease)}
.bpo-bm-card__name:hover{color:var(--bpo-red)}
.bpo-bm-card__rating-pill{display:inline-flex;align-items:center;gap:5px;background:var(--bpo-green);color:#fff;font-family:var(--font-display);font-size:12px;font-weight:700;padding:3px 10px;border-radius:50px}
.bpo-bm-card__rating-pill i{font-size:10px}

/* Details row: pros + stats */
.bpo-bm-card__details-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.bpo-bm-card__pros-box,.bpo-bm-card__stats-box{background:var(--bpo-bg-light);border:1px solid var(--bpo-border);border-radius:var(--radius-sm);overflow:hidden}
.bpo-bm-card__pros-head,.bpo-bm-card__stats-head{font-family:var(--font-display);font-size:11px;font-weight:700;color:var(--bpo-heading);padding:8px 12px;background:rgba(46,204,113,.08);border-bottom:1px solid var(--bpo-border);display:flex;align-items:center;gap:6px}
.bpo-bm-card__pros-head i{color:var(--bpo-green);font-size:11px}
.bpo-bm-card__stats-head i{color:var(--bpo-text-dim);font-size:11px}
.bpo-bm-card__pro-item{font-size:13px;color:var(--bpo-text);padding:7px 12px;border-bottom:1px solid var(--bpo-border)}
.bpo-bm-card__pro-item:last-child{border-bottom:none}
.bpo-bm-card__stat-row{display:flex;justify-content:space-between;align-items:center;padding:7px 12px;border-bottom:1px solid var(--bpo-border);font-size:12px}
.bpo-bm-card__stat-row:last-child{border-bottom:none}
.bpo-bm-card__stat-row span{color:var(--bpo-text-dim)}
.bpo-bm-card__stat-row strong{color:var(--bpo-heading);font-weight:600}

/* CTA col */
.bpo-bm-card__cta-col{width:190px;flex-shrink:0;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:20px 16px;gap:10px;border-left:1px solid var(--bpo-border)}
.bpo-bm-card__offer-label{font-family:var(--font-display);font-size:9px;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:var(--bpo-red)}
.bpo-bm-card__offer-amount{font-family:var(--font-display);font-size:16px;font-weight:700;color:var(--bpo-heading);text-align:center;line-height:1.3}
.bpo-bm-card__cta-btn{display:flex;align-items:center;justify-content:center;gap:6px;width:100%;background:var(--bpo-red);color:#fff;font-family:var(--font-display);font-size:13px;font-weight:700;padding:11px 12px;border-radius:8px;text-align:center;transition:all var(--ease)}
.bpo-bm-card__cta-btn:hover{background:#d03338;color:#fff;transform:translateY(-1px);box-shadow:0 4px 14px rgba(232,63,68,.35)}
.bpo-bm-card__review-btn{display:flex;align-items:center;justify-content:center;width:100%;background:var(--bpo-bg-light);border:1px solid var(--bpo-border-light);color:var(--bpo-text-dim);font-family:var(--font-display);font-size:12px;font-weight:600;padding:8px 12px;border-radius:8px;text-align:center;transition:all var(--ease)}
.bpo-bm-card__review-btn:hover{color:var(--bpo-heading);border-color:var(--bpo-text-dim)}
.bpo-bm-card__tc{font-size:9px;color:var(--bpo-text-dim);text-align:center;line-height:1.4}

/* ════════════════════════════════
   INDIVIDUAL REVIEW PAGE
   ════════════════════════════════ */
.bpo-review-hero{position:relative;height:360px;overflow:hidden;background:var(--bpo-bg-mid)}
.bpo-review-hero__img{width:100%;height:100%;object-fit:cover;opacity:.45}
.bpo-review-hero__overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(15,25,35,.98) 0%,rgba(15,25,35,.5) 60%,rgba(15,25,35,.2) 100%)}
.bpo-review-hero__content{position:absolute;bottom:0;left:0;right:0;padding:32px 0}
.bpo-review-hero__breadcrumb{display:flex;align-items:center;gap:8px;margin-bottom:14px;font-family:var(--font-display);font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:.06em;color:rgba(255,255,255,.45)}
.bpo-review-hero__breadcrumb a{color:rgba(255,255,255,.45);transition:color var(--ease)}.bpo-review-hero__breadcrumb a:hover{color:#fff}
.bpo-review-hero__breadcrumb span{color:rgba(255,255,255,.2)}
.bpo-review-hero__inner{display:flex;align-items:center;gap:20px}
.bpo-review-hero__logo{background:#fff;border-radius:10px;padding:8px 16px;display:flex;align-items:center}
.bpo-review-hero__logo img{max-height:44px;max-width:120px;object-fit:contain}
.bpo-review-hero__title{font-family:var(--font-display);font-size:clamp(20px,3.5vw,32px);font-weight:700;color:#fff;margin-bottom:8px;line-height:1.3}
.bpo-review-hero__meta{display:flex;align-items:center;gap:10px;flex-wrap:wrap;font-size:13px;color:rgba(255,255,255,.6)}
.bpo-review-hero__stars{display:flex;align-items:center;gap:3px;color:#F5A623;font-size:14px}
.bpo-review-hero__stars span{color:rgba(255,255,255,.7);font-size:13px;margin-left:4px}

/* Layout */
.bpo-review-layout{padding:32px 0 60px}

/* Score card */
.bpo-review-scorecard{background:var(--bpo-bg-mid);border:1px solid var(--bpo-border);border-radius:var(--radius);display:flex;gap:0;overflow:hidden;margin-bottom:24px}
.bpo-review-scorecard__overall{flex-shrink:0;width:140px;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:24px 16px;border-right:1px solid var(--bpo-border);background:var(--bpo-bg)}
.bpo-review-scorecard__score{font-family:var(--font-display);font-size:48px;font-weight:700;color:var(--bpo-heading);line-height:1}
.bpo-review-scorecard__label{font-size:11px;color:var(--bpo-text-dim);text-transform:uppercase;letter-spacing:.05em;margin:4px 0 8px}
.bpo-review-scorecard__stars{display:flex;gap:2px;font-size:13px;color:#F5A623}
.bpo-review-scorecard__cats{flex:1;padding:16px 22px;display:flex;flex-direction:column;justify-content:center;gap:10px}
.bpo-review-scorecard__cat{display:flex;align-items:center;gap:12px}
.bpo-review-scorecard__cat-label{font-family:var(--font-display);font-size:12px;font-weight:600;color:var(--bpo-text-dim);width:110px;flex-shrink:0}
.bpo-review-scorecard__bar-wrap{flex:1;height:6px;background:var(--bpo-bg-light);border-radius:50px;overflow:hidden}
.bpo-review-scorecard__bar{height:100%;background:var(--bpo-red);border-radius:50px;transition:width .6s ease}
.bpo-review-scorecard__cat-score{font-family:var(--font-display);font-size:12px;font-weight:700;color:var(--bpo-heading);width:30px;text-align:right}

/* Pros/Cons */
.bpo-review-proscons{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:24px}
.bpo-review-proscons__col{background:var(--bpo-bg-mid);border:1px solid var(--bpo-border);border-radius:var(--radius);padding:18px 20px}
.bpo-review-proscons__pros{border-top:3px solid var(--bpo-green)}
.bpo-review-proscons__cons{border-top:3px solid var(--bpo-red)}
.bpo-review-proscons__head{font-family:var(--font-display);font-size:13px;font-weight:700;color:var(--bpo-heading);margin-bottom:12px;display:flex;align-items:center;gap:7px}
.bpo-review-proscons__pros .bpo-review-proscons__head i{color:var(--bpo-green)}
.bpo-review-proscons__cons .bpo-review-proscons__head i{color:var(--bpo-red)}
.bpo-review-proscons__col ul{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:7px}
.bpo-review-proscons__col li{font-size:13px;color:var(--bpo-text);line-height:1.45;padding-left:16px;position:relative}
.bpo-review-proscons__col li::before{content:'·';position:absolute;left:0;color:var(--bpo-text-dim)}

/* Sidebar CTA */
.bpo-review-cta-card{background:var(--bpo-bg-mid);border:1px solid var(--bpo-border);border-radius:var(--radius);padding:22px;text-align:center;margin-bottom:16px}
.bpo-review-cta-card__logo{max-height:48px;max-width:140px;object-fit:contain;margin:0 auto 12px;display:block}
.bpo-review-cta-card__bonus{font-family:var(--font-display);font-size:14px;font-weight:700;color:var(--bpo-heading);margin-bottom:14px;line-height:1.35}
.bpo-review-cta-card__btn{display:flex;align-items:center;justify-content:center;gap:7px;width:100%;background:var(--bpo-red);color:#fff;font-family:var(--font-display);font-size:14px;font-weight:700;padding:12px 16px;border-radius:8px;transition:all var(--ease);margin-bottom:8px}
.bpo-review-cta-card__btn:hover{background:#d03338;color:#fff;transform:translateY(-1px)}
.bpo-review-cta-card__tc{font-size:10px;color:var(--bpo-text-dim);line-height:1.5}

/* Quick facts */
.bpo-review-facts{background:var(--bpo-bg-mid);border:1px solid var(--bpo-border);border-radius:var(--radius);padding:18px 20px;margin-bottom:16px}
.bpo-review-facts__title{font-family:var(--font-display);font-size:13px;font-weight:700;color:var(--bpo-heading);margin-bottom:14px}
.bpo-review-facts__row{display:flex;align-items:center;gap:12px;padding:9px 0;border-bottom:1px solid var(--bpo-border)}
.bpo-review-facts__row:last-child{border-bottom:none}
.bpo-review-facts__icon{width:28px;height:28px;border-radius:6px;background:var(--bpo-bg-light);display:flex;align-items:center;justify-content:center;font-size:12px;color:var(--bpo-text-dim);flex-shrink:0}
.bpo-review-facts__label{font-size:11px;color:var(--bpo-text-dim);text-transform:uppercase;letter-spacing:.05em;font-family:var(--font-display);font-weight:600}
.bpo-review-facts__val{font-size:13px;color:var(--bpo-heading);font-weight:600;margin-top:1px}

/* Key features sidebar */
.bpo-review-features{background:var(--bpo-bg-mid);border:1px solid var(--bpo-border);border-radius:var(--radius);padding:18px 20px}
.bpo-review-features__title{font-family:var(--font-display);font-size:13px;font-weight:700;color:var(--bpo-heading);margin-bottom:12px}
.bpo-review-features__item{font-size:13px;color:var(--bpo-text);display:flex;align-items:flex-start;gap:8px;padding:6px 0;border-bottom:1px solid var(--bpo-border);line-height:1.4}
.bpo-review-features__item:last-child{border-bottom:none}
.bpo-review-features__item i{color:var(--bpo-green);font-size:12px;margin-top:2px;flex-shrink:0}

@media(max-width:991px){
.bpo-review-scorecard{flex-direction:column}
.bpo-review-scorecard__overall{width:100%;flex-direction:row;gap:20px;border-right:none;border-bottom:1px solid var(--bpo-border)}
.bpo-review-proscons{grid-template-columns:1fr}
.bpo-bm-card{flex-direction:column}
.bpo-bm-card__logo-col{width:100%;flex-direction:row;justify-content:flex-start;border-right:none;border-bottom:1px solid var(--bpo-border);padding:16px 20px;border-radius:var(--radius) var(--radius) 0 0}
.bpo-bm-card__middle{padding:16px 20px}
.bpo-bm-card__details-row{grid-template-columns:1fr}
.bpo-bm-card__cta-col{width:100%;border-left:none;border-top:1px solid var(--bpo-border)}
}

/* ════════════════════════════════
   ERROR PAGES (404 / 500)
   ════════════════════════════════ */
.bpo-error-page{min-height:calc(100vh - 54px);display:flex;align-items:center;justify-content:center;padding:40px 20px;background:var(--bpo-bg)}
.bpo-error-page__inner{text-align:center;max-width:520px;width:100%;margin:0 auto;padding:0 20px}
.bpo-error-page__code{display:flex;align-items:center;justify-content:center;gap:12px;margin-bottom:28px}
.bpo-error-page__digit{font-family:var(--font-display);font-size:clamp(72px,16vw,120px);font-weight:800;color:var(--bpo-bg-light);line-height:1;user-select:none}
.bpo-error-page__ball{width:clamp(64px,14vw,100px);height:clamp(64px,14vw,100px);border-radius:50%;background:var(--bpo-bg-light);border:2px solid var(--bpo-border-light);display:flex;align-items:center;justify-content:center;animation:bpo-spin 8s linear infinite}
.bpo-error-page__ball i{font-size:clamp(28px,7vw,46px);color:var(--bpo-text-dim)}
.bpo-error-page__ball--red{background:var(--bpo-red-glow);border-color:var(--bpo-red);animation:bpo-pulse 2s ease-in-out infinite}
.bpo-error-page__ball--lock{background:rgba(255,111,32,.1);border-color:#FF6F20;animation:bpo-pulse 2.5s ease-in-out infinite}
.bpo-error-page__ball--lock i{color:#FF6F20}
.bpo-error-page__ball--red i{color:var(--bpo-red)}
@keyframes bpo-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}
@keyframes bpo-pulse{0%,100%{transform:scale(1);opacity:1}50%{transform:scale(1.08);opacity:.85}}
.bpo-error-page__title{font-family:var(--font-display);font-size:clamp(22px,5vw,32px);font-weight:700;color:var(--bpo-heading);margin-bottom:12px}
.bpo-error-page__sub{font-size:15px;color:var(--bpo-text-dim);line-height:1.65;margin-bottom:32px}
.bpo-error-page__links{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;margin-bottom:24px}
.bpo-error-page__btn{display:inline-flex;align-items:center;gap:7px;font-family:var(--font-display);font-size:13px;font-weight:600;padding:10px 18px;border-radius:8px;transition:all .18s ease;text-decoration:none}
.bpo-error-page__btn--primary{background:var(--bpo-red);color:#fff}
.bpo-error-page__btn--primary:hover{background:#d03338;transform:translateY(-1px);box-shadow:0 4px 16px rgba(232,63,68,.35);color:#fff}
.bpo-error-page__btn--ghost{background:var(--bpo-bg-light);border:1px solid var(--bpo-border-light);color:var(--bpo-text-dim)}
.bpo-error-page__btn--ghost:hover{color:var(--bpo-heading);border-color:var(--bpo-text-dim)}
.bpo-error-page__hint{font-size:13px;color:var(--bpo-text-dim)}
.bpo-error-page__hint a{color:var(--bpo-red);text-decoration:none}
.bpo-error-page__hint a:hover{text-decoration:underline}
@media(max-width:480px){
.bpo-error-page__links{flex-direction:column;align-items:center}
.bpo-error-page__btn{width:100%;justify-content:center}
}

/* ════════════════════════════════
   FAQ PAGE
   ════════════════════════════════ */
.bpo-faq-header{background:linear-gradient(135deg,var(--bpo-bg) 0%,var(--bpo-bg-mid) 60%,#1a3050 100%);border-bottom:1px solid var(--bpo-border);padding:40px 0 32px}
.bpo-faq-header__eyebrow{font-family:var(--font-display);font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--bpo-red);margin-bottom:10px;display:flex;align-items:center;gap:6px}
.bpo-faq-header__title{font-family:var(--font-display);font-size:clamp(24px,4vw,36px);font-weight:700;color:var(--bpo-heading);margin-bottom:10px}
.bpo-faq-header__sub{font-size:15px;color:var(--bpo-text-dim);line-height:1.6;max-width:580px;margin-bottom:24px}
/* Search */
.bpo-faq-search{position:relative;max-width:520px}
.bpo-faq-search__icon{position:absolute;left:14px;top:50%;transform:translateY(-50%);color:var(--bpo-text-dim);font-size:14px;pointer-events:none}
.bpo-faq-search__input{width:100%;background:var(--bpo-bg-mid);border:1px solid var(--bpo-border-light);border-radius:10px;padding:12px 40px 12px 40px;font-size:14px;font-family:var(--font-body);color:var(--bpo-heading);outline:none;transition:border-color .18s ease}
.bpo-faq-search__input:focus{border-color:var(--bpo-red)}
.bpo-faq-search__input::placeholder{color:var(--bpo-text-dim)}
.bpo-faq-search__clear{position:absolute;right:12px;top:50%;transform:translateY(-50%);color:var(--bpo-text-dim);cursor:pointer;font-size:13px;padding:4px;transition:color .18s ease}
.bpo-faq-search__clear:hover{color:var(--bpo-heading)}
/* Layout */
.bpo-faq-main{padding:36px 0 60px}
.bpo-faq-layout{display:grid;grid-template-columns:220px 1fr;gap:32px;align-items:start}
/* Sidebar */
.bpo-faq-sidebar{position:sticky;top:74px}
.bpo-faq-sidebar__title{font-family:var(--font-display);font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--bpo-text-dim);margin-bottom:10px;padding:0 4px}
.bpo-faq-cat-nav{display:flex;flex-direction:column;gap:2px;margin-bottom:24px}
.bpo-faq-cat-nav__link{display:flex;align-items:center;justify-content:space-between;padding:9px 12px;border-radius:8px;font-size:13px;font-weight:600;color:var(--bpo-text-dim);transition:all .18s ease}
.bpo-faq-cat-nav__link:hover,.bpo-faq-cat-nav__link.active{background:var(--bpo-red-glow);color:var(--bpo-red)}
.bpo-faq-cat-nav__count{font-family:var(--font-display);font-size:10px;font-weight:700;background:var(--bpo-bg-light);color:var(--bpo-text-dim);padding:1px 7px;border-radius:50px}
.bpo-faq-cat-nav__link.active .bpo-faq-cat-nav__count{background:rgba(232,63,68,.15);color:var(--bpo-red)}
/* Sidebar contact */
.bpo-faq-sidebar__contact{background:var(--bpo-bg-mid);border:1px solid var(--bpo-border);border-radius:var(--radius);padding:16px}
.bpo-faq-sidebar__contact-title{font-family:var(--font-display);font-size:13px;font-weight:700;color:var(--bpo-heading);margin-bottom:6px}
.bpo-faq-sidebar__contact-text{font-size:12px;color:var(--bpo-text-dim);line-height:1.55;margin-bottom:12px}
.bpo-faq-sidebar__contact-btn{display:flex;align-items:center;justify-content:center;gap:7px;width:100%;background:var(--bpo-bg-light);border:1px solid var(--bpo-border-light);color:var(--bpo-text-dim);font-family:var(--font-display);font-size:12px;font-weight:600;padding:8px 12px;border-radius:8px;transition:all .18s ease}
.bpo-faq-sidebar__contact-btn:hover{color:var(--bpo-heading);border-color:var(--bpo-text-dim)}
/* Section */
.bpo-faq-section{margin-bottom:36px}
.bpo-faq-section__head{display:flex;align-items:center;gap:10px;margin-bottom:16px}
.bpo-faq-section__bar{width:3px;height:20px;background:var(--bpo-red);border-radius:3px;flex-shrink:0}
.bpo-faq-section__title{font-family:var(--font-display);font-size:18px;font-weight:700;color:var(--bpo-heading)}
.bpo-faq-section__count{font-family:var(--font-display);font-size:11px;font-weight:600;color:var(--bpo-text-dim);background:var(--bpo-bg-light);padding:2px 10px;border-radius:50px;margin-left:auto}
/* Accordion items */
.bpo-faq-item{border:1px solid var(--bpo-border);border-radius:var(--radius);margin-bottom:8px;overflow:hidden;transition:border-color .18s ease}
.bpo-faq-item:hover{border-color:var(--bpo-border-light)}
.bpo-faq-item.open{border-color:rgba(232,63,68,.3)}
.bpo-faq-item__q{width:100%;background:var(--bpo-bg-mid);border:none;cursor:pointer;padding:16px 20px;display:flex;align-items:center;justify-content:space-between;gap:16px;text-align:left;transition:background .18s ease}
.bpo-faq-item__q:hover{background:var(--bpo-bg-light)}
.bpo-faq-item.open .bpo-faq-item__q{background:var(--bpo-bg-light)}
.bpo-faq-item__q span{font-family:var(--font-display);font-size:14px;font-weight:600;color:var(--bpo-heading);line-height:1.4}
.bpo-faq-item__chevron{font-size:11px;color:var(--bpo-text-dim);flex-shrink:0;transition:transform .25s ease}
.bpo-faq-item.open .bpo-faq-item__chevron{transform:rotate(180deg);color:var(--bpo-red)}
.bpo-faq-item__a{max-height:0;overflow:hidden;transition:max-height .3s ease}
.bpo-faq-item.open .bpo-faq-item__a{max-height:600px}
.bpo-faq-item__a-inner{padding:16px 20px;font-size:14px;color:var(--bpo-text);line-height:1.7;border-top:1px solid var(--bpo-border);background:var(--bpo-bg)}
/* No results */
.bpo-faq-no-results{text-align:center;padding:48px 20px;color:var(--bpo-text-dim)}
.bpo-faq-no-results i{font-size:32px;display:block;margin-bottom:14px;opacity:.4}
.bpo-faq-no-results p{font-size:14px;line-height:1.6}
.bpo-faq-no-results__clear{background:none;border:none;color:var(--bpo-red);cursor:pointer;font-size:14px;font-family:inherit;text-decoration:underline}
@media(max-width:991px){
.bpo-faq-layout{grid-template-columns:1fr}
.bpo-faq-sidebar{position:static;display:flex;gap:16px;flex-wrap:wrap}
.bpo-faq-cat-nav{flex-direction:row;flex-wrap:wrap;margin-bottom:0}
.bpo-faq-cat-nav__link{padding:6px 12px}
.bpo-faq-sidebar__title,.bpo-faq-sidebar__contact{display:none}
}

/* ════════════════════════════════
   LEGAL PAGES (Terms / Privacy / Cookies / RG)
   ════════════════════════════════ */
.bpo-legal-hero{background:linear-gradient(135deg,var(--bpo-bg) 0%,var(--bpo-bg-mid) 100%);border-bottom:1px solid var(--bpo-border);padding:32px 0}
.bpo-legal-hero__breadcrumb{display:flex;align-items:center;gap:8px;font-family:var(--font-display);font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:.06em;color:var(--bpo-text-dim);margin-bottom:16px}
.bpo-legal-hero__breadcrumb a{color:var(--bpo-text-dim);transition:color .18s ease}.bpo-legal-hero__breadcrumb a:hover{color:var(--bpo-heading)}
.bpo-legal-hero__breadcrumb i{font-size:9px;opacity:.5}
.bpo-legal-hero__inner{display:flex;align-items:center;gap:20px}
.bpo-legal-hero__icon{width:56px;height:56px;border-radius:14px;background:var(--bpo-red-glow);border:1px solid rgba(232,63,68,.2);display:flex;align-items:center;justify-content:center;font-size:22px;color:var(--bpo-red);flex-shrink:0}
.bpo-legal-hero__title{font-family:var(--font-display);font-size:clamp(22px,4vw,30px);font-weight:700;color:var(--bpo-heading);margin-bottom:6px}
.bpo-legal-hero__meta{display:flex;align-items:center;gap:16px;flex-wrap:wrap;font-size:12px;color:var(--bpo-text-dim)}
.bpo-legal-hero__meta i{margin-right:4px}
/* Layout */
.bpo-legal-layout{padding:36px 0 60px}
/* Sidebar */
.bpo-legal-sidebar{position:sticky;top:74px;background:var(--bpo-bg-mid);border:1px solid var(--bpo-border);border-radius:var(--radius);overflow:hidden}
.bpo-legal-sidebar__title{font-family:var(--font-display);font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--bpo-text-dim);padding:14px 16px 10px}
.bpo-legal-sidebar__link{display:flex;align-items:center;gap:10px;padding:11px 16px;font-size:13px;font-weight:600;color:var(--bpo-text-dim);border-top:1px solid var(--bpo-border);transition:all .18s ease}
.bpo-legal-sidebar__link:hover{background:var(--bpo-bg-light);color:var(--bpo-heading)}
.bpo-legal-sidebar__link.active{background:var(--bpo-red-glow);color:var(--bpo-red)}
.bpo-legal-sidebar__link i:first-child{width:16px;text-align:center;flex-shrink:0}
.bpo-legal-sidebar__arrow{margin-left:auto;font-size:9px;opacity:.5}
.bpo-legal-sidebar__rg{display:flex;align-items:flex-start;gap:12px;padding:16px;border-top:1px solid var(--bpo-border);background:rgba(46,204,113,.04)}
.bpo-legal-sidebar__rg>i{color:var(--bpo-green);font-size:18px;margin-top:2px;flex-shrink:0}
.bpo-legal-sidebar__rg-title{font-family:var(--font-display);font-size:12px;font-weight:700;color:var(--bpo-heading);margin-bottom:2px}
.bpo-legal-sidebar__rg-text{font-size:11px;color:var(--bpo-text-dim);margin-bottom:6px}
.bpo-legal-sidebar__rg-phone{font-family:var(--font-display);font-size:14px;font-weight:700;color:var(--bpo-green);display:block}
/* Content */
.bpo-legal-content{background:var(--bpo-bg-mid);border:1px solid var(--bpo-border);border-radius:var(--radius);overflow:hidden}
.bpo-legal-prose{padding:32px 36px;font-size:15px;line-height:1.75;color:var(--bpo-text)}
.bpo-legal-prose h2{font-family:var(--font-display);font-size:18px;font-weight:700;color:var(--bpo-heading);margin:32px 0 12px;padding-bottom:8px;border-bottom:1px solid var(--bpo-border)}
.bpo-legal-prose h2:first-child{margin-top:0}
.bpo-legal-prose h3{font-family:var(--font-display);font-size:15px;font-weight:700;color:var(--bpo-heading);margin:20px 0 8px}
.bpo-legal-prose p{margin-bottom:14px}
.bpo-legal-prose ul,.bpo-legal-prose ol{margin:0 0 14px 20px;display:flex;flex-direction:column;gap:6px}
.bpo-legal-prose li{line-height:1.65}
.bpo-legal-prose strong{color:var(--bpo-heading);font-weight:700}
.bpo-legal-prose a{color:var(--bpo-red);text-decoration:none}.bpo-legal-prose a:hover{text-decoration:underline}
.bpo-legal-footer-bar{display:flex;align-items:center;justify-content:space-between;padding:14px 36px;border-top:1px solid var(--bpo-border);background:var(--bpo-bg);font-size:12px;color:var(--bpo-text-dim);flex-wrap:wrap;gap:10px}
.bpo-legal-footer-bar__rg{display:flex;align-items:center;gap:6px;font-family:var(--font-display);font-size:12px;font-weight:600;color:var(--bpo-green);transition:opacity .18s ease}
.bpo-legal-footer-bar__rg:hover{opacity:.75}

/* ── Cookie Consent Banner ────────────────────────────────────────────────────── */
.bpo-cookie-banner{position:fixed;bottom:0;left:0;right:0;z-index:9999;background:var(--bpo-bg-mid);border-top:1px solid var(--bpo-border);padding:16px 0;transform:translateY(100%);transition:transform .35s ease;box-shadow:0 -4px 24px rgba(0,0,0,.25)}
.bpo-cookie-banner.show{transform:translateY(0)}
.bpo-cookie-banner__inner{display:flex;align-items:center;gap:20px;flex-wrap:wrap}
.bpo-cookie-banner__icon{font-size:24px;color:var(--bpo-red);flex-shrink:0}
.bpo-cookie-banner__text{flex:1;font-size:13px;color:var(--bpo-text);line-height:1.55;min-width:200px}
.bpo-cookie-banner__text a{color:var(--bpo-red);text-decoration:none}.bpo-cookie-banner__text a:hover{text-decoration:underline}
.bpo-cookie-banner__actions{display:flex;gap:8px;flex-shrink:0}
.bpo-cookie-banner__accept{font-family:var(--font-display);font-size:13px;font-weight:700;padding:9px 20px;background:var(--bpo-red);color:#fff;border:none;border-radius:8px;cursor:pointer;transition:background .18s ease}
.bpo-cookie-banner__accept:hover{background:#d03338}
.bpo-cookie-banner__decline{font-family:var(--font-display);font-size:13px;font-weight:600;padding:9px 16px;background:none;border:1px solid var(--bpo-border-light);color:var(--bpo-text-dim);border-radius:8px;cursor:pointer;transition:all .18s ease}
.bpo-cookie-banner__decline:hover{color:var(--bpo-heading);border-color:var(--bpo-text-dim)}
@media(max-width:600px){.bpo-cookie-banner__inner{flex-direction:column;align-items:flex-start}.bpo-cookie-banner__actions{width:100%}.bpo-cookie-banner__accept,.bpo-cookie-banner__decline{flex:1;text-align:center}}

@media(max-width:991px){
.bpo-legal-hero__inner{flex-direction:column;align-items:flex-start;gap:12px}
.bpo-legal-sidebar{position:static}
.bpo-legal-prose{padding:24px 20px}
.bpo-legal-footer-bar{padding:12px 20px}
}

/* ════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════ */
.bpo-contact-hero{background:linear-gradient(135deg,var(--bpo-bg) 0%,var(--bpo-bg-mid) 60%,#1a3050 100%);border-bottom:1px solid var(--bpo-border);padding:40px 0 32px}
.bpo-contact-hero__eyebrow{font-family:var(--font-display);font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--bpo-red);margin-bottom:10px;display:flex;align-items:center;gap:6px}
.bpo-contact-hero__title{font-family:var(--font-display);font-size:clamp(26px,4vw,36px);font-weight:700;color:var(--bpo-heading);margin-bottom:10px}
.bpo-contact-hero__sub{font-size:15px;color:var(--bpo-text-dim);max-width:500px;line-height:1.6}
.bpo-contact-main{padding:40px 0 60px}
.bpo-contact-layout{display:grid;grid-template-columns:1fr 300px;gap:32px;align-items:start}

/* Form wrapper */
.bpo-contact-form-wrap{background:var(--bpo-bg-mid);border:1px solid var(--bpo-border);border-radius:var(--radius);padding:32px}
.bpo-contact-alert{background:rgba(232,63,68,.1);border:1px solid rgba(232,63,68,.25);border-radius:8px;padding:12px 16px;font-size:13px;color:#f87171;margin-bottom:20px;display:flex;align-items:center;gap:8px}

/* Form fields */
.bpo-contact-form__row{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:0}
.bpo-contact-form__field{margin-bottom:20px}
.bpo-contact-form__field.has-error .bpo-contact-form__input{border-color:var(--bpo-red)}
.bpo-contact-form__label{display:block;font-family:var(--font-display);font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.05em;color:var(--bpo-text-dim);margin-bottom:8px}
.bpo-contact-form__label span{color:var(--bpo-red)}
.bpo-contact-form__input{width:100%;background:var(--bpo-bg-light);border:1px solid var(--bpo-border-light);border-radius:8px;padding:11px 14px;font-size:14px;font-family:var(--font-body);color:var(--bpo-heading);outline:none;transition:border-color .18s ease;appearance:auto}
.bpo-contact-form__input:focus{border-color:var(--bpo-red);box-shadow:0 0 0 3px rgba(232,63,68,.1)}
.bpo-contact-form__input::placeholder{color:var(--bpo-text-dim)}
.bpo-contact-form__textarea{resize:vertical;min-height:150px;line-height:1.6}
.bpo-contact-form__select{cursor:pointer}
.bpo-contact-form__error{font-size:12px;color:var(--bpo-red);margin-top:5px}
.bpo-contact-form__char-count{font-size:11px;color:var(--bpo-text-dim);text-align:right;margin-top:5px}
.bpo-contact-form__footer{display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;margin-top:4px}
.bpo-contact-form__captcha-note{font-size:11px;color:var(--bpo-text-dim)}
.bpo-contact-form__captcha-note a{color:var(--bpo-text-dim);text-decoration:underline}
.bpo-contact-form__submit{display:inline-flex;align-items:center;gap:8px;font-family:var(--font-display);font-size:14px;font-weight:700;padding:12px 28px;background:var(--bpo-red);color:#fff;border:none;border-radius:8px;cursor:pointer;transition:all .18s ease}
.bpo-contact-form__submit:hover{background:#d03338;transform:translateY(-1px);box-shadow:0 4px 16px rgba(232,63,68,.35)}
.bpo-contact-form__submit:disabled{opacity:.6;cursor:not-allowed;transform:none}

/* Success state */
.bpo-contact-success{text-align:center;padding:48px 24px}
.bpo-contact-success__icon{width:64px;height:64px;border-radius:50%;background:rgba(46,204,113,.12);border:2px solid rgba(46,204,113,.25);display:flex;align-items:center;justify-content:center;margin:0 auto 20px;font-size:26px;color:var(--bpo-green)}
.bpo-contact-success h2{font-family:var(--font-display);font-size:24px;font-weight:700;color:var(--bpo-heading);margin-bottom:10px}
.bpo-contact-success p{font-size:15px;color:var(--bpo-text-dim);line-height:1.6;margin-bottom:24px}
.bpo-contact-success__btn{display:inline-flex;align-items:center;gap:7px;font-family:var(--font-display);font-size:13px;font-weight:600;padding:10px 20px;background:var(--bpo-bg-light);border:1px solid var(--bpo-border-light);color:var(--bpo-text-dim);border-radius:8px;transition:all .18s ease}
.bpo-contact-success__btn:hover{color:var(--bpo-heading);border-color:var(--bpo-text-dim)}

/* Sidebar */
.bpo-contact-sidebar{display:flex;flex-direction:column;gap:16px}
.bpo-contact-info-card{background:var(--bpo-bg-mid);border:1px solid var(--bpo-border);border-radius:var(--radius);padding:20px}
.bpo-contact-info-card__icon{width:36px;height:36px;border-radius:8px;background:var(--bpo-red-glow);border:1px solid rgba(232,63,68,.2);display:flex;align-items:center;justify-content:center;font-size:15px;color:var(--bpo-red);margin-bottom:12px}
.bpo-contact-info-card__icon--green{background:rgba(46,204,113,.1);border-color:rgba(46,204,113,.2);color:var(--bpo-green)}
.bpo-contact-info-card__title{font-family:var(--font-display);font-size:14px;font-weight:700;color:var(--bpo-heading);margin-bottom:4px}
.bpo-contact-info-card__text{font-size:12px;color:var(--bpo-text-dim);line-height:1.55;margin-bottom:8px}
.bpo-contact-info-card__link{font-family:var(--font-display);font-size:13px;font-weight:600;color:var(--bpo-red);transition:opacity .18s ease;word-break:break-all}
.bpo-contact-info-card__link:hover{opacity:.75}
.bpo-contact-info-card__link--green{color:var(--bpo-green)}
.bpo-contact-info-card--faq{border-style:dashed}
.bpo-contact-info-card--faq .bpo-contact-info-card__title{display:flex;align-items:center;gap:7px}
.bpo-contact-info-card--faq .bpo-contact-info-card__title i{color:var(--bpo-red)}
.bpo-contact-info-card__faq-btn{display:inline-flex;align-items:center;gap:6px;font-family:var(--font-display);font-size:12px;font-weight:600;color:var(--bpo-red);transition:gap .18s ease}
.bpo-contact-info-card__faq-btn:hover{gap:10px}
.bpo-contact-response-time{font-size:12px;color:var(--bpo-text-dim);text-align:center;padding:12px;background:var(--bpo-bg-mid);border:1px solid var(--bpo-border);border-radius:8px;display:flex;align-items:center;justify-content:center;gap:8px}
.bpo-contact-response-time i{color:var(--bpo-text-dim)}

@media(max-width:991px){
.bpo-contact-layout{grid-template-columns:1fr}
.bpo-contact-sidebar{display:grid;grid-template-columns:1fr 1fr;gap:12px}
}
@media(max-width:600px){
.bpo-contact-form__row{grid-template-columns:1fr}
.bpo-contact-sidebar{grid-template-columns:1fr}
.bpo-contact-form-wrap{padding:20px}
}

/* ════════════════════════════════
   MATCH PAGE — Full Markets
   ════════════════════════════════ */

/* Hero */
.bpo-match-hero{background:linear-gradient(135deg,#0a1520 0%,#0f2035 60%,#1a3050 100%);border-bottom:2px solid var(--bpo-border);padding:28px 0}
.bpo-match-hero__crumb{display:flex;align-items:center;gap:7px;font-family:var(--font-display);font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:.06em;color:rgba(255,255,255,.35);margin-bottom:20px}
.bpo-match-hero__crumb a{color:rgba(255,255,255,.35);transition:color .18s ease}.bpo-match-hero__crumb a:hover{color:#fff}
.bpo-match-hero__crumb i{font-size:8px;opacity:.4}
.bpo-match-hero__inner{display:flex;align-items:center;justify-content:space-between;gap:20px}
.bpo-match-hero__team{display:flex;flex-direction:column;align-items:center;gap:10px;flex:1}
.bpo-match-hero__badge{width:56px;height:56px;border-radius:12px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);display:flex;align-items:center;justify-content:center;font-family:var(--font-display);font-size:14px;font-weight:800;color:#fff}
.bpo-match-hero__badge img{width:64px;height:64px;object-fit:contain;border-radius:8px;display:block}
@media(max-width:576px){.bpo-match-hero__badge img{width:48px;height:48px}}
.bpo-match-hero__tname{font-family:var(--font-display);font-size:clamp(13px,2.5vw,18px);font-weight:700;color:#fff;text-align:center;line-height:1.3}
.bpo-match-hero__mid{text-align:center;flex-shrink:0}
.bpo-match-hero__vs{font-family:var(--font-display);font-size:11px;font-weight:700;color:var(--bpo-red);text-transform:uppercase;letter-spacing:.12em;margin-bottom:6px}
.bpo-match-hero__date{font-size:12px;color:rgba(255,255,255,.6);margin-bottom:4px}
.bpo-match-hero__league{font-family:var(--font-display);font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:.06em;color:rgba(255,255,255,.35)}

/* Main */
.bpo-match-main{padding:24px 0 60px;background:var(--bpo-bg)}

/* Tabs */
.bpo-match-tabs{display:flex;gap:6px;margin-bottom:20px}
.bpo-match-tab{font-family:var(--font-display);font-size:13px;font-weight:600;padding:9px 20px;border-radius:8px;border:1px solid var(--bpo-border);color:var(--bpo-text-dim);background:var(--bpo-bg-mid);cursor:pointer;transition:all .18s ease}
.bpo-match-tab:hover{color:var(--bpo-heading);border-color:var(--bpo-border-light)}
.bpo-match-tab.active{background:var(--bpo-red);color:#fff;border-color:var(--bpo-red)}

/* Accordion */
.bpo-mkt-accordion{border:1px solid var(--bpo-border);border-radius:var(--radius);margin-bottom:10px;overflow:hidden}
.bpo-mkt-accordion__head{width:100%;display:flex;align-items:center;gap:12px;background:#1A2D50;color:#fff;padding:14px 20px;border:none;cursor:pointer;text-align:left;transition:background .18s ease}
.bpo-mkt-accordion__head:hover{background:#1e3560}
.bpo-mkt-accordion__name{font-family:var(--font-display);font-size:14px;font-weight:700;flex:1}
.bpo-mkt-accordion__count{font-family:var(--font-display);font-size:10px;font-weight:600;text-transform:uppercase;letter-spacing:.06em;color:rgba(255,255,255,.45);background:rgba(255,255,255,.08);padding:2px 10px;border-radius:50px}
.bpo-mkt-accordion__chevron{font-size:11px;color:rgba(255,255,255,.5);transition:transform .25s ease}
.bpo-mkt-accordion.open .bpo-mkt-accordion__chevron{transform:rotate(180deg)}
.bpo-mkt-accordion__body{display:none;padding:16px}
.bpo-mkt-accordion.open .bpo-mkt-accordion__body{display:block}

/* Odds grid — 3 columns */
.bpo-mkt-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-bottom:10px}
.bpo-mkt-cell{background:var(--bpo-bg);border:1px solid var(--bpo-border);border-radius:8px;padding:10px 12px;display:flex;flex-direction:column;gap:6px;transition:border-color .18s ease}
.bpo-mkt-cell:hover{border-color:var(--bpo-border-light)}
.bpo-mkt-cell__label{font-size:12px;color:var(--bpo-text-dim);line-height:1.4;cursor:pointer}
.bpo-mkt-cell__label em{font-style:normal;color:var(--bpo-text);font-weight:600;display:block}

/* Odds button */
.bpo-odds-cell{width:100%;font-family:var(--font-display);font-size:14px;font-weight:700;padding:8px 10px;border-radius:6px;border:none;cursor:pointer;transition:all .18s ease}
.bpo-odds-cell--fav{background:rgba(100,149,237,.15);color:#6495ED;border:1px solid rgba(100,149,237,.25)}
.bpo-odds-cell--fav:hover,.bpo-odds-cell--fav.selected{background:#6495ED;color:#fff}
.bpo-odds-cell--dog{background:rgba(232,63,68,.1);color:var(--bpo-red);border:1px solid rgba(232,63,68,.2)}
.bpo-odds-cell--dog:hover,.bpo-odds-cell--dog.selected{background:var(--bpo-red);color:#fff}

/* Bookmaker prices dropdown */
.bpo-mkt-cell__books{display:none;flex-direction:column;gap:4px;margin-top:4px;padding-top:8px;border-top:1px solid var(--bpo-border)}
.bpo-mkt-cell__books.show{display:flex}
.bpo-mkt-cell__book{display:flex;align-items:center;gap:8px;padding:5px 8px;border-radius:6px;background:var(--bpo-bg-light);text-decoration:none;transition:background .18s ease}
.bpo-mkt-cell__book:hover{background:var(--bpo-bg-mid)}
.bpo-mkt-cell__book img{height:18px;max-width:60px;object-fit:contain}
.bpo-mkt-cell__book span{font-size:11px;color:var(--bpo-text-dim);flex:1}
.bpo-mkt-cell__book strong{font-family:var(--font-display);font-size:12px;font-weight:700;color:var(--bpo-heading);margin-left:auto}

/* Show More */
.bpo-mkt-show-more{display:flex;align-items:center;gap:7px;font-family:var(--font-display);font-size:12px;font-weight:600;color:var(--bpo-text-dim);background:var(--bpo-bg);border:1px solid var(--bpo-border);border-radius:8px;padding:8px 16px;cursor:pointer;transition:all .18s ease;margin:0 auto;width:100%;justify-content:center}
.bpo-mkt-show-more:hover{color:var(--bpo-heading);border-color:var(--bpo-border-light)}

/* Empty state */
.bpo-match-empty{text-align:center;padding:80px 20px;color:var(--bpo-text-dim)}
.bpo-match-empty i{font-size:42px;opacity:.3;display:block;margin-bottom:16px}
.bpo-match-empty p{font-size:15px;margin-bottom:20px}
.bpo-match-empty__btn{display:inline-flex;align-items:center;gap:7px;font-family:var(--font-display);font-size:13px;font-weight:600;padding:10px 20px;background:var(--bpo-red);color:#fff;border-radius:8px;transition:background .18s ease}
.bpo-match-empty__btn:hover{background:#d03338;color:#fff}

@media(max-width:768px){
.bpo-mkt-grid{grid-template-columns:repeat(2,1fr)}
.bpo-match-hero__inner{flex-direction:column;align-items:center}
.bpo-match-hero__team{flex-direction:row;justify-content:center}
}
@media(max-width:480px){
.bpo-mkt-grid{grid-template-columns:1fr}
}


/* Betslip two-panel layout */
.bpo-slip__body{flex:1;overflow:hidden;display:flex;flex-direction:column;min-height:0}

/* Two-panel layout: selections (top) + comparison (bottom), each 50% */
.bpo-slip__panel{display:flex;flex-direction:column;flex:1;min-height:0;overflow:hidden}
.bpo-slip__panel--selections{border-bottom:1px solid var(--bpo-border)}
.bpo-slip__panel--comparison{overflow-y:auto;-webkit-overflow-scrolling:touch;overscroll-behavior:contain}

/* Panel header (Selections label + Clear button) */
.bpo-slip__panel-head{display:flex;align-items:center;justify-content:space-between;padding:8px 14px 4px;flex-shrink:0}
.bpo-slip__panel-head>span{font-family:var(--font-display);font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.06em;color:var(--bpo-text-dim)}

/* Selections scroll area */
.bpo-slip__scroll{flex:1;overflow-y:auto;padding:4px 14px 10px;display:flex;flex-direction:column;gap:8px;min-height:0}
/* iOS Safari betslip scroll fix */

/* ── iOS Safari betslip scroll fix ─────────────────────────────────────────
   1. The offcanvas (.bpo-slip) must be flex column so head stays fixed and
      body takes remaining space via flex:1 — never use calc(100% - Npx).
   2. Each panel needs overflow-y:scroll (not auto) + webkit momentum scroll.
   3. overscroll-behavior-y:contain stops the page scrolling underneath.    */
@supports (-webkit-touch-callout: none) {
    .bpo-slip {
        /* Ensure Safari treats the offcanvas as full-height flex container */
        height: 100% !important;
        max-height: 100% !important;
    }
    .bpo-slip__body {
        flex: 1 1 0 !important;
        min-height: 0 !important;
        overflow: hidden !important;
    }
    .bpo-slip__panel--selections {
        flex: 1 1 0 !important;
        min-height: 0 !important;
        overflow: hidden !important;
    }
    .bpo-slip__scroll {
        flex: 1 1 0 !important;
        min-height: 0 !important;
        overflow-y: scroll !important;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-y: contain;
    }
    .bpo-slip__panel--comparison {
        flex: 1 1 0 !important;
        min-height: 0 !important;
        overflow-y: scroll !important;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-y: contain;
    }
}

/* ════════════════════════════════
   LEAGUE PILLS + ACCORDION
   ════════════════════════════════ */
/* Popular league quick-filter pills */
.bpo-league-pills{display:flex;gap:6px;flex-wrap:wrap;padding:10px 0 4px;margin-bottom:4px}
.bpo-league-pill{display:inline-flex;align-items:center;gap:5px;font-family:var(--font-display);font-size:12px;font-weight:600;padding:5px 13px;border-radius:50px;border:1px solid var(--bpo-border-light);background:var(--bpo-bg-mid);color:var(--bpo-text-dim);cursor:pointer;transition:all .18s ease;white-space:nowrap;line-height:1}
.bpo-league-pill:hover{color:var(--bpo-heading);border-color:var(--bpo-text-dim)}
.bpo-league-pill.active,.bpo-league-pill--active{background:var(--bpo-red);color:#fff;border-color:var(--bpo-red)}
.bpo-league-pill img,.bpo-league-pill__img{height:14px;width:auto;max-width:20px;object-fit:contain;flex-shrink:0}

/* League accordion — chevron + toggle */
.bpo-league-head--toggle{cursor:pointer;user-select:none}
.bpo-league-head--toggle:hover{background:var(--bpo-bg-light)}
.bpo-league-chevron{margin-left:auto;font-size:11px;color:var(--bpo-text-dim);transition:transform .25s ease;flex-shrink:0}

/* Accordion body — hidden when not open */
.bpo-league-body{display:block}
.bpo-league-card:not(.open) .bpo-league-body{display:none}
.bpo-league-card:not(.open) .bpo-league-chevron{transform:rotate(180deg)}

/* ════════════════════════════════
   SPORT PAGE (sport.php)
   ════════════════════════════════ */
.bpo-sport-page-header{background:linear-gradient(135deg,var(--bpo-bg) 0%,var(--bpo-bg-mid) 60%,#1a3050 100%);border-bottom:1px solid var(--bpo-border);padding:24px 0 16px}
.bpo-sport-page-header__inner{display:flex;align-items:center;gap:16px;margin-bottom:16px}
.bpo-sport-page-header__icon{width:48px;height:48px;border-radius:12px;background:var(--bpo-red-glow);border:1px solid rgba(232,63,68,.25);display:flex;align-items:center;justify-content:center;font-size:20px;color:var(--bpo-red);flex-shrink:0}
.bpo-sport-page-header__title{font-family:var(--font-display);font-size:clamp(20px,4vw,28px);font-weight:700;color:var(--bpo-heading);margin-bottom:4px}
.bpo-sport-page-header__sub{font-size:13px;color:var(--bpo-text-dim)}
.bpo-sport-page-main{padding:20px 0 60px;background:var(--bpo-bg)}

/* League accordion body hidden when not open */
.bpo-league-card--page .bpo-league-body{display:block}
.bpo-league-card--page:not(.open) .bpo-league-body{display:none}
.bpo-league-card--page:not(.open) .bpo-league-chevron{transform:rotate(180deg)}

/* Soccer cells on sport page */
.bpo-odd--empty{display:flex;align-items:center;justify-content:center;font-size:13px;color:var(--bpo-text-dim);height:100%}

/* ── 1X2 Bookmaker comparison table (soccer match page, desktop only) ──────── */
.bpo-bm-compare-wrap{display:block}

/* Table — bookmakers as columns, outcomes as rows */
.bpo-bm-table{border-collapse:collapse;font-size:13px;width:100%}

/* Bookmaker header cells — logo displayed vertically */
.bpo-bm-table__bm-hd{
    padding:6px 2px 4px;
    text-align:center;
    vertical-align:bottom;
    border-bottom:1px solid var(--bpo-border);
    min-width:60px;
    max-width:60px;
    width:60px;
}
.bpo-bm-table__bm-hd-link{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-decoration:none;
    gap:2px;
}
.bpo-bm-table__bm-hd-link img{
    height:52px;
    max-width:82px;
    object-fit:contain;
    border-radius:3px;
    transform:rotate(90deg);
    transform-origin:center center;
    margin:14px 0;
    display:block;
}
.bpo-bm-table__bm-hd-link span{
    font-size:8px;
    font-weight:700;
    color:var(--bpo-text-dim);
    text-align:center;
    word-break:break-word;
    max-width:44px;
    line-height:1.2;
}

/* Outcome label column (1 / X / 2) */
.bpo-bm-table__outcome-hd{
    border-bottom:1px solid var(--bpo-border);
    min-width:80px;
}
.bpo-bm-table__outcome-lbl{
    font-family:var(--font-display);
    font-size:12px;
    font-weight:700;
    color:var(--bpo-heading);
    padding:8px 12px;
    white-space:nowrap;
    border-right:1px solid var(--bpo-border);
    background:var(--bpo-bg-mid);
    min-width:140px;
}

/* Data rows */
.bpo-bm-table tbody tr{border-bottom:1px solid var(--bpo-border);transition:background .15s ease}
.bpo-bm-table tbody tr:last-child{border-bottom:none}
.bpo-bm-table tbody tr:hover{background:var(--bpo-bg-light)}

/* Odds cells */
.bpo-bm-table__cell{padding:6px 2px;text-align:center}
.bpo-bm-table__cell--best{background:rgba(46,204,113,.06)}
.bpo-bm-table__btn{
    font-family:var(--font-display);
    font-size:11px;
    font-weight:700;
    padding:4px 4px;
    border-radius:5px;
    border:1px solid var(--bpo-border);
    background:var(--bpo-bg);
    color:var(--bpo-heading);
    cursor:pointer;
    transition:all .18s ease;
    width:46px;
    white-space:nowrap;
}
.bpo-bm-table__btn:hover{background:var(--bpo-red);color:#fff;border-color:var(--bpo-red)}
.bpo-bm-table__btn.selected{background:var(--bpo-red)!important;color:#fff!important;border-color:var(--bpo-red)!important}
.bpo-bm-table__cell--best .bpo-bm-table__btn{border-color:rgba(46,204,113,.5);color:#1a9e50}
[data-theme="dark"] .bpo-bm-table__cell--best .bpo-bm-table__btn{color:#2ECC71}
.bpo-bm-table__na{color:var(--bpo-text-dim);font-size:12px}

/* Hide on mobile */
@media(max-width:767.98px){
    .bpo-bm-compare-wrap{display:none}
}

/* Soccer sport page More Markets (grid-spanning row) */
.bpo-soccer-more{text-align:right;padding:2px 16px 6px;display:flex;justify-content:flex-end}
.bpo-soccer-more a{font-family:var(--font-display);font-size:11px;font-weight:600;color:var(--bpo-text-dim);white-space:nowrap;display:inline-flex;align-items:center;gap:4px;transition:color var(--ease)}
.bpo-soccer-more a:hover{color:var(--bpo-red)}

/* ── Sports dropdown (desktop) ──────────────────────────────────────────────── */
.bpo-nav__dropdown-wrap{position:relative;display:flex;align-items:center}
.bpo-nav__dd-btn{background:none;border:none;cursor:pointer;display:flex;align-items:center;gap:5px;padding:0}
.bpo-nav__dd-chevron{font-size:9px;transition:transform .2s ease}
.bpo-nav__dropdown-wrap.open .bpo-nav__dd-chevron{transform:rotate(180deg)}
.bpo-nav__dd{
    display:none;
    position:absolute;
    top:calc(100% + 10px);
    left:50%;
    transform:translateX(-50%);
    background:var(--bpo-bg-mid);
    border:1px solid var(--bpo-border);
    border-radius:10px;
    min-width:180px;
    padding:6px;
    box-shadow:0 8px 24px rgba(0,0,0,.18);
    z-index:200;
}
.bpo-nav__dropdown-wrap.open .bpo-nav__dd{display:block}
.bpo-nav__dd::before{
    content:'';
    position:absolute;
    top:-6px;
    left:50%;
    transform:translateX(-50%);
    width:10px;height:10px;
    background:var(--bpo-bg-mid);
    border-left:1px solid var(--bpo-border);
    border-top:1px solid var(--bpo-border);
    transform:translateX(-50%) rotate(45deg);
}
.bpo-nav__dd-item{
    display:flex;align-items:center;gap:10px;
    padding:9px 12px;
    border-radius:7px;
    font-family:var(--font-display);
    font-size:13px;font-weight:600;
    color:var(--bpo-text-dim);
    text-decoration:none;
    transition:all .15s ease;
    white-space:nowrap;
}
.bpo-nav__dd-item:hover{background:var(--bpo-bg-light);color:var(--bpo-heading)}
.bpo-nav__dd-item i{width:16px;text-align:center;color:var(--bpo-red);font-size:13px}

/* Mobile sports group */
.bpo-mobile-nav__group{margin-bottom:4px}
.bpo-mobile-nav__group-hd{
    font-family:var(--font-display);
    font-size:10px;font-weight:700;
    text-transform:uppercase;letter-spacing:.08em;
    color:var(--bpo-text-dim);
    padding:14px 20px 6px;
    display:flex;align-items:center;gap:8px;
}
.bpo-mobile-nav__link--sub{padding-left:40px !important}

/* Mobile collapsible sports group */
.bpo-mobile-nav__group{border-bottom:1px solid var(--bpo-border)}
.bpo-mobile-nav__group-toggle{
    width:100%;display:flex;align-items:center;justify-content:space-between;
    background:none;border:none;cursor:pointer;
    padding:14px 20px;
    font-family:var(--font-display);font-size:14px;font-weight:600;
    color:var(--bpo-text-dim);
    transition:color .18s ease;
}
.bpo-mobile-nav__group-toggle:hover,.bpo-mobile-nav__group-toggle.open{color:var(--bpo-heading)}
.bpo-mobile-nav__group-toggle span{display:flex;align-items:center;gap:12px}
.bpo-mobile-nav__group-toggle i.bpo-mobile-chevron{font-size:10px;transition:transform .25s ease;flex-shrink:0}
.bpo-mobile-nav__group-toggle.open i.bpo-mobile-chevron{transform:rotate(180deg)}
.bpo-mobile-nav__group-body{display:none;padding-bottom:4px}
.bpo-mobile-nav__group-body.open{display:block}
.bpo-mobile-nav__link--sub{padding-left:44px !important;font-size:13px !important}

.bpo-home-h1{font-family:var(--font-display);font-size:clamp(20px,3vw,28px);font-weight:700;color:var(--bpo-heading);margin-bottom:16px;padding-top:4px}

.bpo-am-col-pad{padding:2px 0}

/* Clickable match info area */
a.bpo-match__link{text-decoration:none;color:inherit;display:flex;flex-direction:column;cursor:pointer}
a.bpo-match__link:hover .bpo-match__team{color:var(--bpo-red)}
.bpo-am-text-link{text-decoration:none;color:inherit;cursor:pointer}
.bpo-am-text-link:hover{color:var(--bpo-red)}
