/* OddsForge Affiliate - Frontend Styles */

/* ===== Sportsbook Listing Cards — Mr. Gamble Style ===== */
.of-sb-listing {
    display: grid;
    gap: 16px;
    margin: 24px 0;
}
.of-sb-item {
    background: #211c25;
    border: 1px solid #2c2532;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.of-sb-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border-color: #382e40;
}
.of-sb-badges {
    display: flex;
    gap: 8px;
    padding: 8px 16px 0;
}
.of-sb-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.of-sb-badge--featured {
    background: rgba(131,70,212,0.1);
    color: #cca6ff;
    border: 1px solid rgba(131,70,212,0.3);
}
.of-sb-badge--editors-pick {
    background: linear-gradient(135deg, #FEF3C7, #FDE68A);
    color: #92400E;
    border: 1px solid #F59E0B;
    font-weight: 900;
}
.of-sb-badge--code {
    background: #FFF7ED;
    color: #92600a;
    border: 1px solid #FED7AA;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.of-bonus-code-text {
    font-family: monospace;
    font-weight: 700;
}
.of-copy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    padding: 0;
    border: none;
    background: transparent;
    color: #9da5b4;
    cursor: pointer;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
    vertical-align: middle;
    flex-shrink: 0;
}
.of-copy-btn:hover {
    color: #e4ff5a;
    background: rgba(228, 255, 90, 0.1);
}
.of-copy-btn.is-copied {
    color: #e4ff5a;
    font-weight: bold;
    font-size: 14px;
}
.of-copy-btn svg {
    width: 12px;
    height: 12px;
}
.of-sb-card {
    display: grid;
    grid-template-columns: 36px 100px 1fr 1fr 1fr auto;
    gap: 16px;
    padding: 16px;
    align-items: center;
}
.of-sb-rank {
    font-weight: 800;
    font-size: 1rem;
    color: #cca6ff;
    text-align: center;
}
.of-sb-item:first-child .of-sb-rank {
    background: linear-gradient(135deg, #7C3AED, #6D28D9);
    color: #FFFFFF;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.9rem;
}
.of-sb-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.of-sb-logo img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 10px;
    background: #1a161d;
    border: 1px solid #2c2532;
    padding: 4px;
}
.of-sb-logo-fallback {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #26202b;
    border: 1px solid #2c2532;
    font-weight: 800;
    font-size: 1.2rem;
    color: #a6a6a6;
    text-transform: uppercase;
}
.of-sb-name {
    font-size: 0.72rem;
    font-weight: 600;
    color: #a6a6a6;
    text-align: center;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.of-sb-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.of-sb-col-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #a6a6a6;
}
.of-sb-col-value {
    font-size: 0.92rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}
.of-sb-payments-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.of-sb-payment-pill {
    display: inline-flex;
    align-items: center;
    padding: 3px 9px;
    border-radius: 5px;
    background: #26202b;
    border: 1px solid #2c2532;
    font-size: 0.73rem;
    font-weight: 600;
    color: #e0e0e0;
    white-space: nowrap;
}
.of-sb-payment-more {
    background: rgba(131,70,212,0.15);
    border-color: rgba(131,70,212,0.3);
    color: #cca6ff;
}
.of-sb-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 130px;
}
.of-sb-btn-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    min-height: 40px;
    padding: 10px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #e4ff5a 0%, #dffd51 50%, #c8e447 100%);
    color: #111111;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(223,253,81,0.2);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.of-sb-btn-play:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(223,253,81,0.25);
    color: #111111;
}
.of-sb-rating {
    font-size: 0.75rem;
    color: #a6a6a6;
    display: flex;
    align-items: center;
    gap: 4px;
}
.of-sb-rating em {
    font-style: normal;
    font-weight: 700;
    color: #ffffff;
}
.of-sb-ad-label {
    font-size: 0.6rem;
    color: #9e9e9e;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
/* Expand/collapse */
.of-sb-expand {
    border-top: 1px solid #F3F4F6;
}
.of-sb-expand-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
    padding: 8px;
    border: 0;
    background: transparent;
    color: #cca6ff;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s ease;
}
.of-sb-expand-toggle:hover {
    background: #1a161d;
}
.of-sb-expand-icon {
    font-weight: 400;
    font-size: 1rem;
}
.of-sb-expand-content {
    padding: 16px 24px 20px;
    border-top: 1px solid #F3F4F6;
    background: #1a161d;
}
.of-sb-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}
.of-sb-detail {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.of-sb-detail-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #a6a6a6;
}
.of-sb-detail-value {
    font-size: 0.88rem;
    font-weight: 600;
    color: #ffffff;
}
.of-sb-pros {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 6px;
}
.of-sb-pros li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 0.85rem;
    color: #e0e0e0;
    line-height: 1.4;
}
.of-sb-pros li::before {
    content: "\2713";
    color: #22C55E;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}
.of-sb-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #cca6ff;
    text-decoration: none;
}
.of-sb-detail-link:hover {
    color: #cca6ff;
    text-decoration: underline;
}
/* Mobile: collapse card to single column */
@media (max-width: 780px) {
    .of-sb-card {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: center;
    }
    .of-sb-rank {
        display: none;
    }
    .of-sb-logo {
        flex-direction: row;
        justify-content: center;
    }
    .of-sb-col--payments {
        display: none;
    }
    .of-sb-cta {
        width: 100%;
    }
    .of-sb-btn-play {
        width: 100%;
    }
    .of-sb-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .of-sb-pros {
        grid-template-columns: 1fr;
    }
}

/* Legacy compat — keep old class names working */
.of-sportsbook-table { display: none; }

/* Sportsbook Card */
.of-sportsbook-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    background: #1a161d;
    margin: 16px 0;
}
.of-sportsbook-card-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: contain;
    background: #211c25;
    padding: 4px;
    flex-shrink: 0;
}
.of-sportsbook-card-body {
    flex: 1;
    min-width: 0;
}
.of-sportsbook-card-body h4 {
    margin: 0 0 4px;
    font-size: 1.1rem;
    color: #ffffff;
}
.of-sportsbook-card-bonus {
    margin: 4px 0 0;
    color: #cca6ff;
    font-weight: 700;
    font-size: 0.95rem;
}
.of-sportsbook-card-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
    flex-shrink: 0;
}

/* Bonus List */
.of-bonus-list {
    display: grid;
    gap: 12px;
    margin: 20px 0;
}
.of-bonus-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    background: #1a161d;
}
.of-bonus-item-info {
    flex: 1;
    min-width: 0;
}
.of-bonus-sportsbook {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(124, 58, 237, 0.8);
}
.of-bonus-title {
    margin: 4px 0;
    font-size: 1.05rem;
    color: #ffffff;
}
.of-bonus-value {
    margin: 4px 0;
    color: #cca6ff;
    font-weight: 700;
}
.of-bonus-code {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(124, 58, 237, 0.15);
    border: 1px dashed rgba(124, 58, 237, 0.5);
    color: #cca6ff;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.05em;
}
.of-bonus-expiry {
    display: block;
    margin-top: 6px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
}

/* Betting Tip Card — Phase 16 AAA UI/UX Overhaul */
/* ── Tip Cards ── */
.of-tip-card {
    padding: 22px 24px;
    border: 1px solid rgba(255,255,255,0.06);
    border-left: 3px solid rgba(124, 58, 237, 0.6);
    border-radius: 16px;
    background: #1a161d;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    overflow: hidden;
}
.of-tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(124,58,237,0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.of-tip-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.35);
    border-color: rgba(255,255,255,0.1);
}
.of-tip-card:hover::before {
    opacity: 1;
}
/* Status-based left-border color coding */
.of-tip-card.of-status-preview {
    border-left-color: #00D4FF;
}
.of-tip-card.of-status-preview::before {
    background: linear-gradient(90deg, transparent, rgba(0,212,255,0.3), transparent);
}
.of-tip-card.of-status-preview:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.35), 0 0 24px rgba(0,212,255,0.06);
}
.of-tip-card.of-result-win {
    border-left-color: #34D399;
}
.of-tip-card.of-result-win::before {
    background: linear-gradient(90deg, transparent, rgba(52,211,153,0.3), transparent);
}
.of-tip-card.of-result-win:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.35), 0 0 24px rgba(52,211,153,0.06);
}
.of-tip-card.of-result-loss {
    border-left-color: #FF3B6F;
}
.of-tip-card.of-result-loss::before {
    background: linear-gradient(90deg, transparent, rgba(255,59,111,0.3), transparent);
}
.of-tip-card.of-result-loss:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.35), 0 0 24px rgba(255,59,111,0.06);
}
.of-tip-card.of-result-push {
    border-left-color: #FEE001;
}
.of-tip-card.of-result-void {
    border-left-color: rgba(255,255,255,0.25);
}
/* Post-match settled cards: subtle dimming */
.of-tip-card.of-tip-settled {
    opacity: 0.75;
}
.of-tip-card.of-tip-settled:hover {
    opacity: 1;
}

/* ── Card Header ── */
.of-tip-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    gap: 8px;
}

/* ── Type Badges — color coded with icons ── */
.of-tip-type {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: 999px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    line-height: 1;
}
.of-tip-type svg {
    flex-shrink: 0;
}
.of-tip-type--tip {
    color: #A78BFA;
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.25);
}
.of-tip-type--preview {
    color: #67E8F9;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.25);
}
.of-tip-type--btts-tip {
    color: #FCD34D;
    background: rgba(252, 211, 77, 0.1);
    border: 1px solid rgba(252, 211, 77, 0.25);
}
.of-tip-type--ou-tip,
.of-tip-type--over-under-tip {
    color: #FB923C;
    background: rgba(251, 146, 60, 0.1);
    border: 1px solid rgba(251, 146, 60, 0.25);
}
.of-tip-type--value-bet {
    color: #34D399;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.25);
}
.of-tip-type--accumulator {
    color: #F472B6;
    background: rgba(244, 114, 182, 0.1);
    border: 1px solid rgba(244, 114, 182, 0.25);
}
.of-tip-type--h2h-analysis {
    color: #93C5FD;
    background: rgba(147, 197, 253, 0.1);
    border: 1px solid rgba(147, 197, 253, 0.25);
}
.of-tip-type--post-match {
    color: rgba(255,255,255,0.45);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

/* ── Result Badges ── */
.of-tip-result {
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 5px 12px;
    border-radius: 999px;
    line-height: 1;
}
.of-tip-result-win {
    background: rgba(52, 211, 153, 0.15);
    color: #34D399;
}
.of-tip-result-loss {
    background: rgba(255, 59, 111, 0.15);
    color: #ff3b6f;
}
.of-tip-result-push {
    background: rgba(254, 224, 1, 0.12);
    color: #fee001;
}
.of-tip-result-void {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.4);
}
.of-tip-result-pending {
    background: rgba(0, 212, 255, 0.08);
    color: rgba(0, 212, 255, 0.7);
    font-weight: 600;
}

/* ── Title ── */
.of-tip-title {
    margin: 0 0 10px;
    font-size: 1.05rem;
    line-height: 1.35;
    font-weight: 700;
}
.of-tip-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.15s ease;
}
.of-tip-title a:hover {
    color: #cca6ff;
}

/* ── Recommended Bet (highlighted) ── */
.of-tip-bet-wrap {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 14px;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(124, 58, 237, 0.06);
    border: 1px solid rgba(124, 58, 237, 0.12);
}
.of-tip-bet-icon {
    flex-shrink: 0;
    color: #A78BFA;
    margin-top: 1px;
}
.of-tip-bet {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 700;
    color: rgba(255,255,255,0.92);
    line-height: 1.4;
}

/* ── Key Stats Row: Odds + Confidence ── */
.of-tip-key-stats {
    display: flex;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 14px;
}
.of-tip-odds-badge,
.of-tip-confidence-badge {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 8px;
    border-radius: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
}
.of-tip-odds-label,
.of-tip-confidence-label {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.35);
}
.of-tip-odds-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: #e4ff5a;
    line-height: 1;
}
.of-tip-confidence-stars {
    display: flex;
    gap: 2px;
    font-size: 1rem;
    line-height: 1;
}
.of-star--filled {
    color: #FCD34D;
}
.of-star--empty {
    color: rgba(255,255,255,0.12);
}

/* ── Meta Row: Sport + Date ── */
.of-tip-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 16px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 14px;
}
.of-tip-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.of-tip-meta svg {
    opacity: 0.5;
    flex-shrink: 0;
}
.of-tip-sport {
    color: rgba(255,255,255,0.55);
    font-weight: 500;
}
.of-tip-date {
    color: rgba(255,255,255,0.35);
}

/* ── CTA Bar ── */
.of-tip-cta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 14px;
    margin-top: auto;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.of-tip-cta-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.of-tip-cta .of-btn {
    padding: 10px 18px;
    font-size: 0.82rem;
    min-width: auto;
    flex: 1;
    justify-content: center;
    border-radius: 10px;
    min-height: 42px;
}
.of-tip-cta .of-btn img {
    height: 18px;
    width: auto;
    vertical-align: middle;
}
.of-tip-cta-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.3);
    white-space: nowrap;
    flex-shrink: 0;
}
.of-tip-cta-bonus {
    font-size: 0.72rem;
    color: #cca6ff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}
.of-tip-cta-ad {
    font-size: 0.58rem;
    color: rgba(255,255,255,0.15);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
}

/* ── Stats Summary Bar ── */
.of-tips-stats {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    padding: 16px 20px;
    border-radius: 14px;
    background: #1a161d;
    border: 1px solid rgba(255,255,255,0.06);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.of-tips-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    min-width: 70px;
    padding: 8px 16px;
    border-radius: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.04);
}
.of-tips-stat-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}
.of-tips-stat-label {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.4);
}
.of-tips-stat--pending .of-tips-stat-value { color: #67E8F9; }
.of-tips-stat--win .of-tips-stat-value { color: #34D399; }
.of-tips-stat--loss .of-tips-stat-value { color: #FF3B6F; }
.of-tips-stat--rate .of-tips-stat-value { color: #e4ff5a; }
.of-tips-stat--rate {
    background: rgba(228,255,90,0.05);
    border-color: rgba(228,255,90,0.1);
}

/* Buttons */
.of-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: opacity 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
    white-space: nowrap;
    min-width: 120px;
}
.of-btn:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}
.of-btn-cta {
    background: linear-gradient(135deg, #7C3AED, #7C3AED);
    color: #07210d;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
}
.of-btn-cta:hover {
    box-shadow: 0 6px 24px rgba(124, 58, 237, 0.4);
}
.of-btn-ghost {
    background: transparent;
    color: #cca6ff;
    border: 1px solid rgba(124, 58, 237, 0.4);
}
.of-btn-ghost:hover {
    background: rgba(124, 58, 237, 0.08);
    border-color: rgba(124, 58, 237, 0.6);
}

/* Stars */
.of-stars {
    display: inline-flex;
    gap: 1px;
    font-size: 1rem;
}
.of-star-full {
    color: #fee001;
}
.of-star-half {
    color: #fee001;
    opacity: 0.6;
}
.of-star-empty {
    color: rgba(0,0,0,0.1);
}

/* Ad label */
.of-ad-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.25);
    background: rgba(0,0,0,0.04);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Affiliate Disclosure */
.of-affiliate-disclosure {
    padding: 14px 18px;
    border: 1px solid rgba(254, 224, 1, 0.3);
    border-radius: 12px;
    background: rgba(254, 224, 1, 0.06);
    margin: 20px 0;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
}
.of-affiliate-disclosure a {
    color: #fee001;
}
.of-disclosure-inline {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    text-align: center;
    margin: 10px 0 0;
}
.of-disclosure-inline a {
    color: rgba(124, 58, 237, 0.6);
}

/* CTA Inline */
.of-cta-inline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Empty state */
.of-empty {
    text-align: center;
    color: rgba(255,255,255,0.4);
    padding: 24px;
}
.of-empty-state-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
    max-width: 380px;
    margin: 0 auto;
}
.of-empty-state-box svg {
    width: 56px;
    height: 56px;
    opacity: 0.25;
    margin-bottom: 16px;
}
.of-empty-state-box h4 {
    color: #c9d1d9;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 6px;
}
.of-empty-state-box p {
    color: #8b949e;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

/* Tip card staggered entry — Phase 16 */
@keyframes of-tip-enter {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}
.of-tip-card { animation: of-tip-enter 0.4s ease both; }
.of-tip-card:nth-child(1) { animation-delay: 0s; }
.of-tip-card:nth-child(2) { animation-delay: 0.05s; }
.of-tip-card:nth-child(3) { animation-delay: 0.1s; }
.of-tip-card:nth-child(4) { animation-delay: 0.15s; }
.of-tip-card:nth-child(5) { animation-delay: 0.2s; }
.of-tip-card:nth-child(6) { animation-delay: 0.25s; }
.of-tip-card:nth-child(7) { animation-delay: 0.3s; }
.of-tip-card:nth-child(8) { animation-delay: 0.35s; }
.of-tip-card:nth-child(9) { animation-delay: 0.4s; }

/* Sportsbook row staggered hover glow */
.of-sportsbook-row { animation: of-tip-enter 0.3s ease both; }
.of-sportsbook-row:nth-child(2) { animation-delay: 0s; }
.of-sportsbook-row:nth-child(3) { animation-delay: 0.04s; }
.of-sportsbook-row:nth-child(4) { animation-delay: 0.08s; }
.of-sportsbook-row:nth-child(5) { animation-delay: 0.12s; }
.of-sportsbook-row:nth-child(6) { animation-delay: 0.16s; }
.of-sportsbook-row:nth-child(7) { animation-delay: 0.2s; }
.of-sportsbook-row:nth-child(8) { animation-delay: 0.24s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .of-tip-card,
    .of-sportsbook-row {
        animation: none !important;
    }
}

/* Responsive — Sportsbook rows */
@media (max-width: 780px) {
    .of-sportsbook-table-header {
        display: none;
    }
    .of-sportsbook-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .of-col-rank {
        display: none;
    }
    .of-sportsbook-card {
        flex-direction: column;
        text-align: center;
    }
    .of-sportsbook-card-actions {
        align-items: center;
        flex-direction: row;
    }
    .of-bonus-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Responsive — Tip Cards: Tablet */
@media (max-width: 960px) {
    .of-tips-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .of-archive--tips {
        max-width: 100%;
    }
}

/* Responsive — Tip Cards: Mobile */
@media (max-width: 640px) {
    .of-tips-grid {
        grid-template-columns: 1fr !important;
        gap: 14px;
    }
    .of-tip-card {
        padding: 18px 18px;
        border-radius: 14px;
    }
    .of-tip-title {
        font-size: 0.98rem;
    }
    .of-tip-bet {
        font-size: 0.88rem;
    }
    .of-tip-bet-wrap {
        padding: 8px 12px;
    }
    .of-tip-key-stats {
        gap: 8px;
    }
    .of-tip-odds-badge,
    .of-tip-confidence-badge {
        padding: 8px 6px;
    }
    .of-tip-odds-value {
        font-size: 1.05rem;
    }
    .of-tip-meta {
        gap: 4px 12px;
        font-size: 0.78rem;
    }
    .of-tip-cta .of-btn {
        padding: 10px 14px;
        font-size: 0.8rem;
        min-height: 44px;
    }
    .of-archive-header h1 {
        font-size: 1.35rem;
    }
    .of-archive-header p {
        font-size: 0.85rem;
    }
    .of-filter-pill {
        padding: 6px 12px;
        font-size: 0.74rem;
    }
    .of-archive-filters {
        padding: 10px 12px;
        gap: 8px;
    }
    /* Stats bar scrollable on mobile */
    .of-tips-stats {
        padding: 12px 14px;
        gap: 8px;
    }
    .of-tips-stat {
        min-width: 60px;
        padding: 6px 12px;
    }
    .of-tips-stat-value {
        font-size: 1.1rem;
    }
}

/* ===== Archive Pages ===== */
.of-archive {
    max-width: 960px;
    margin: 0 auto;
    padding: 32px 18px;
}
.of-archive--tips {
    max-width: 1080px;
}
.of-archive-header {
    margin-bottom: 20px;
}
.of-archive-header h1 {
    font-size: 1.8rem;
    color: #ffffff;
    margin: 0 0 8px;
    font-weight: 800;
}
.of-archive-header p {
    color: #a6a6a6;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}
/* Archive Filters */
.of-archive-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(17, 22, 32, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.of-filter-group {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.of-filter-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.4);
    margin-right: 2px;
}
.of-filter-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: all 0.2s ease;
}
.of-filter-pill:hover {
    color: #cca6ff;
    border-color: rgba(124, 58, 237, 0.35);
    background: rgba(124, 58, 237, 0.08);
}
.of-filter-pill.is-active {
    color: #FFFFFF;
    background: linear-gradient(135deg, #A78BFA, #7C3AED);
    border-color: transparent;
    font-weight: 700;
}

.of-archive-pagination {
    text-align: center;
    margin-top: 24px;
}
.of-archive-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
}
.of-archive-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    text-decoration: none;
    transition: all 0.15s ease;
}
.of-archive-pagination .page-numbers:hover {
    background: rgba(124, 58, 237, 0.12);
    color: #cca6ff;
    border-color: rgba(124, 58, 237, 0.25);
}
.of-archive-pagination .page-numbers.current {
    background: linear-gradient(135deg, #A78BFA, #7C3AED);
    color: #fff;
    border-color: transparent;
}

/* Tips Grid (archive) — 3-col desktop, 2-col tablet, 1-col mobile */
.of-tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: start;
}

/* Tip tags */
.of-tip-tag {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 6px;
    background: rgba(0,0,0,0.04);
    color: #a6a6a6;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
}
.of-tip-tag:hover {
    background: rgba(124, 58, 237, 0.12);
    color: #cca6ff;
}

/* ===== Single Review Page ===== */
.of-review-single {
    max-width: 1020px;
    margin: 0 auto;
    padding: 32px 18px;
}
.of-review-hero {
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    background: #1a161d;
    padding: 28px;
    margin-bottom: 28px;
}
.of-review-hero-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.of-review-logo {
    width: 80px;
    height: 80px;
    border-radius: 14px;
    object-fit: contain;
    background: #211c25;
    padding: 6px;
    flex-shrink: 0;
}
.of-review-hero-info {
    flex: 1;
    min-width: 200px;
}
.of-review-title {
    margin: 0 0 6px;
    font-size: 1.5rem;
    color: #ffffff;
}
.of-review-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}
.of-review-rating-num {
    font-weight: 700;
    color: rgba(31, 41, 55, 0.7);
    font-size: 0.9rem;
}
.of-review-bonus {
    margin: 8px 0 0;
    color: #cca6ff;
    font-weight: 700;
    font-size: 1.05rem;
}
.of-review-badges {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}
.of-review-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}
.of-review-badge-date {
    background: rgba(124, 58, 237, 0.08);
    color: #cca6ff;
    border: 1px solid rgba(124, 58, 237, 0.15);
}
.of-review-badge-license {
    background: rgba(52, 211, 153, 0.08);
    color: #059669;
    border: 1px solid rgba(52, 211, 153, 0.2);
}
.of-review-hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}
.of-review-code {
    display: flex;
    align-items: center;
    gap: 6px;
}
.of-review-code-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
}
.of-btn-lg {
    padding: 12px 24px;
    font-size: 0.95rem;
}

/* Review body: content + sidebar */
.of-review-body {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 28px;
    align-items: start;
}
.of-review-article {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.7;
}
.of-review-article h2,
.of-review-article h3 {
    color: #ffffff;
    margin-top: 28px;
}
.of-review-article p {
    margin: 0 0 16px;
}

/* Pros/Cons */
.of-review-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    background: rgba(33,28,37,0.6);
}
.of-review-pros h3 {
    color: #059669;
    margin: 0 0 10px;
    font-size: 1rem;
}
.of-review-cons h3 {
    color: #ff3b6f;
    margin: 0 0 10px;
    font-size: 1rem;
}
.of-review-pros ul,
.of-review-cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.of-review-pros li,
.of-review-cons li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.of-review-pros li::before {
    content: "\2713 ";
    color: #059669;
    font-weight: 700;
}
.of-review-cons li::before {
    content: "\2717 ";
    color: #ff3b6f;
    font-weight: 700;
}

/* ===== Sidebar Tabbed Details Card ===== */
.of-review-tabs-card {
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    background: #211c25;
    overflow: hidden;
    position: sticky;
    top: 80px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.of-review-tab-bar {
    display: flex;
    flex-wrap: wrap;
    background: #1a161d;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.of-tab-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.of-tab-label {
    flex: 1;
    text-align: center;
    padding: 10px 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.4);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: color 0.15s ease, border-color 0.15s ease;
    white-space: nowrap;
}
.of-tab-label:hover {
    color: #cca6ff;
}
.of-tab-radio:checked + .of-tab-label {
    color: #cca6ff;
    border-bottom-color: #cca6ff;
}
.of-tab-panel {
    display: none;
    padding: 16px 18px;
}
.of-tab-panel.of-tab-active {
    display: block;
}
.of-tab-section-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(31, 41, 55, 0.45);
    margin-bottom: 10px;
}
.of-tab-empty {
    font-size: 0.88rem;
    color: rgba(31, 41, 55, 0.45);
    font-style: italic;
    margin: 0;
    padding: 8px 0;
}
.of-payment-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}
.of-support-channel {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.8rem;
    background: rgba(124, 58, 237, 0.06);
    color: rgba(31, 41, 55, 0.75);
    margin: 2px 4px 2px 0;
}
.of-sports-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}
.of-sport-item {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    padding: 4px 0;
}

/* ===== Casino Variants ===== */

/* Casino CTA button — purple gradient */
.of-sb-btn-play--casino,
.of-btn-cta--casino {
    background: linear-gradient(135deg, #A78BFA 0%, #7C3AED 50%, #6D28D9 100%) !important;
    border-color: #7C3AED !important;
    box-shadow: 0 2px 8px rgba(124,58,237,0.25) !important;
}
.of-sb-btn-play--casino:hover,
.of-btn-cta--casino:hover {
    background: linear-gradient(135deg, #7C3AED, #5B21B6) !important;
    box-shadow: 0 4px 16px rgba(124,58,237,0.35) !important;
}

/* Casino listing modifier */
.of-sb-listing--casino .of-sb-item {
    border-left: 3px solid #7C3AED;
}

/* Games tab — game categories grid */
.of-game-categories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}
.of-game-category-pill {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    padding: 6px 10px;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 8px;
    text-align: center;
}

/* Game providers grid */
.of-game-providers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.of-game-provider-pill {
    font-size: 0.78rem;
    padding: 4px 10px;
    background: rgba(31, 41, 55, 0.05);
    border: 1px solid rgba(31, 41, 55, 0.1);
    border-radius: 20px;
    color: rgba(31, 41, 55, 0.7);
    font-weight: 500;
}

/* RTP badge */
.of-rtp-badge {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 6px;
    color: #059669;
    font-weight: 600;
    font-size: 0.88rem;
}

/* Live dealer badge */
.of-live-dealer-badge {
    display: inline-block;
    padding: 2px 10px;
    background: linear-gradient(135deg, #10B981, #059669);
    color: #fff;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.of-review-details {
    margin: 0 0 12px;
}
.of-review-details dt {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(31, 41, 55, 0.45);
    margin-top: 12px;
}
.of-review-details dt:first-child {
    margin-top: 0;
}
.of-review-details dd {
    margin: 4px 0 0;
    font-size: 0.88rem;
    color: #e0e0e0;
}

/* Sidebar sticky CTA */
.of-review-sidebar-cta {
    margin-top: 14px;
    text-align: center;
    padding: 16px;
    background: #211c25;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.of-review-sidebar-cta .of-btn {
    width: 100%;
}
.of-review-sidebar-cta .of-ad-label {
    display: block;
    margin-top: 6px;
}
.of-review-sidebar-cta .of-review-code {
    justify-content: center;
}

/* ===== Single Tip Page ===== */
.of-tip-single {
    max-width: 720px;
    margin: 0 auto;
    padding: 32px 18px;
}
.of-tip-single-header {
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    background: #1a161d;
    padding: 24px;
    margin-bottom: 24px;
}
.of-tip-single.of-result-win .of-tip-single-header {
    border-color: rgba(124, 58, 237, 0.4);
}
.of-tip-single.of-result-loss .of-tip-single-header {
    border-color: rgba(255, 59, 111, 0.3);
}
.of-tip-single-meta-top {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.of-tip-single-title {
    margin: 0 0 16px;
    font-size: 1.5rem;
    color: #ffffff;
}
.of-tip-single-details {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.of-tip-detail-box {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(0,0,0,0.03);
    min-width: 100px;
}
.of-tip-detail-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(31, 41, 55, 0.45);
}
.of-tip-detail-value {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}
.of-tip-single-body {
    margin-bottom: 24px;
}
.of-tip-single-content {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.of-tip-single-content h2,
.of-tip-single-content h3 {
    color: #ffffff;
    margin-top: 24px;
}
.of-tip-single-content p {
    margin: 0 0 14px;
}
.of-tip-single-nav {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

/* ===== Review + Tip Body Responsive ===== */
@media (max-width: 780px) {
    .of-tip-single-details {
        flex-direction: column;
    }
    .of-tip-single-nav {
        flex-direction: column;
    }
    .of-bonus-single-body {
        flex-direction: column;
    }
    .of-bonus-single-details {
        flex-direction: column;
    }
    .of-bonus-single-nav {
        flex-direction: column;
    }
}

/* ===== Single Bonus Page ===== */
.of-bonus-single {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 18px 32px;
}
.of-bonus-expired {
    opacity: 0.7;
}
.of-bonus-single-header {
    padding: 28px 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 24px;
}
.of-bonus-single-header-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}
.of-bonus-single-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    padding: 8px;
    flex-shrink: 0;
}
.of-bonus-single-sb {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 4px;
    display: block;
}
.of-bonus-single-sb a {
    color: #cca6ff;
    text-decoration: none;
}
.of-bonus-single-sb a:hover {
    text-decoration: underline;
}
.of-bonus-single-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 8px;
    line-height: 1.2;
}
.of-bonus-single-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}
.of-bonus-single-expired-badge {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #ff3b6f;
    background: rgba(255, 59, 111, 0.12);
    padding: 2px 8px;
    border-radius: 6px;
}

/* Bonus body layout */
.of-bonus-single-body {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.of-bonus-single-content {
    flex: 1;
    min-width: 0;
}
.of-bonus-single-sidebar {
    width: 280px;
    flex-shrink: 0;
}

/* Bonus details */
.of-bonus-single-details {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.of-bonus-detail-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 12px 16px;
    flex: 1;
    min-width: 140px;
}
.of-bonus-detail-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.3);
    margin-bottom: 4px;
    font-weight: 600;
}
.of-bonus-detail-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
}
.of-bonus-value-highlight {
    color: #cca6ff;
    font-size: 1.1rem;
}

/* Bonus CTA */
.of-bonus-single-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(124, 58, 237, 0.06);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 12px;
}

/* Bonus article content */
.of-bonus-single-article {
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    margin-bottom: 24px;
}
.of-bonus-single-article h2,
.of-bonus-single-article h3 {
    color: #ffffff;
    margin-top: 24px;
}
.of-bonus-single-article p {
    margin-bottom: 14px;
}

/* Terms section */
.of-bonus-single-terms {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 16px 18px;
    margin-bottom: 24px;
}
.of-bonus-single-terms h3 {
    font-size: 0.88rem;
    font-weight: 700;
    color: rgba(31, 41, 55, 0.7);
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.of-bonus-single-terms p {
    font-size: 0.82rem;
    color: rgba(31, 41, 55, 0.45);
    margin: 0;
    line-height: 1.5;
}

/* Bonus sidebar */
.of-bonus-sidebar-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}
.of-bonus-sidebar-card h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px;
}
.of-bonus-sidebar-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    font-size: 0.82rem;
    color: #a6a6a6;
}
.of-bonus-sidebar-welcome {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    margin: 0 0 10px;
}
.of-bonus-sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.of-bonus-sidebar-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.of-bonus-sidebar-list li:last-child {
    border-bottom: none;
}
.of-bonus-sidebar-list a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
}
.of-bonus-sidebar-list a:hover {
    color: #cca6ff;
}
.of-bonus-sidebar-val {
    font-size: 0.78rem;
    color: rgba(124, 58, 237, 0.7);
}

/* Bonus navigation */
.of-bonus-single-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    margin-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.of-bonus-single-nav a {
    color: #a6a6a6;
    text-decoration: none;
    font-size: 0.84rem;
    transition: color 0.15s ease;
}
.of-bonus-single-nav a:hover {
    color: #cca6ff;
}
.of-bonus-nav-archive {
    font-weight: 700;
    color: #7C3AED !important;
}

/* ============================================================
   Odds Comparison Page (SEO landing page shortcode)
   ============================================================ */
.of-odds-page {
    max-width: 900px;
    margin: 0 auto;
}
.of-odds-page-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #e4ecf1;
    margin-bottom: 24px;
}
.of-odds-match-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(117, 131, 144, 0.18);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}
.of-odds-match-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(117, 131, 144, 0.12);
}
.of-odds-match-teams {
    font-size: 1rem;
    font-weight: 700;
    color: #e4ecf1;
}
.of-odds-match-time {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}
.of-odds-match-status {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
}
.of-odds-match-status.of-ended {
    color: rgba(255,255,255,0.4);
    background: rgba(255, 255, 255, 0.06);
}
.of-odds-match-status.of-live {
    color: #3fb950;
    background: rgba(63, 185, 80, 0.12);
    animation: pulse-live 2s infinite;
}
@keyframes pulse-live {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}
.of-odds-table-head {
    display: grid;
    grid-template-columns: 1fr 72px 72px 72px 70px;
    gap: 4px;
    padding: 8px 16px;
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-bottom: 1px solid rgba(117, 131, 144, 0.08);
}
.of-odds-table-row {
    display: grid;
    grid-template-columns: 1fr 72px 72px 72px 70px;
    gap: 4px;
    padding: 10px 16px;
    align-items: center;
    border-bottom: 1px solid rgba(117, 131, 144, 0.06);
    transition: background 0.15s;
}
.of-odds-table-row:last-child {
    border-bottom: none;
}
.of-odds-table-row:hover {
    background: rgba(124, 58, 237, 0.06);
}
.of-odds-col-book {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}
.of-odds-page-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 6px;
    flex-shrink: 0;
}
.of-odds-book-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}
.of-odds-book-info strong {
    font-size: 0.85rem;
    color: #e4ecf1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.of-odds-book-bonus {
    font-size: 0.68rem;
    color: #cca6ff;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.of-odds-col-val {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #b0bec5;
    padding: 4px 6px;
    border-radius: 6px;
}
.of-odds-col-val.is-best {
    color: #cca6ff;
    background: rgba(124, 58, 237, 0.12);
}
.of-odds-col-action {
    text-align: center;
    position: relative;
}
.of-btn-sm {
    padding: 5px 12px;
    font-size: 0.72rem;
}

/* Mobile responsive */
@media (max-width: 640px) {
    .of-odds-table-head,
    .of-odds-table-row {
        grid-template-columns: 1fr 52px 52px 52px 54px;
        padding: 8px 10px;
    }
    .of-odds-page-logo {
        width: 22px;
        height: 22px;
    }
    .of-odds-book-bonus {
        display: none;
    }
    .of-odds-col-val {
        font-size: 0.78rem;
        padding: 3px 2px;
    }
    .of-odds-match-teams {
        font-size: 0.88rem;
    }
}

/* Related Content Sections */
.of-related-section {
    margin: 32px 0 16px;
    padding-top: 24px;
    border-top: 1px solid #30363d;
}
.of-related-section h2 {
    font-size: 1.25rem;
    color: #ffffff;
    margin: 0 0 16px;
}
.of-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 12px;
}
.of-related-card {
    display: block;
    background: #161b22;
    border: 1px solid #30363d;
    border-radius: 8px;
    padding: 14px;
    text-decoration: none;
    color: #c9d1d9;
    transition: border-color 0.2s, transform 0.15s;
}
.of-related-card:hover {
    border-color: #cca6ff;
    transform: translateY(-2px);
}
.of-related-card h4 {
    font-size: 0.92rem;
    font-weight: 600;
    color: #ffffff;
    margin: 6px 0 4px;
    line-height: 1.3;
}
.of-related-meta {
    display: flex;
    gap: 6px;
    align-items: center;
}
.of-related-date {
    font-size: 0.78rem;
    color: #8b949e;
}
.of-related-review {
    margin: 16px 0;
    padding: 12px 16px;
    background: #161b22;
    border: 1px solid #30363d;
    border-radius: 8px;
}
.of-related-review a {
    color: #cca6ff;
    text-decoration: none;
    font-weight: 600;
}
.of-related-review a:hover {
    text-decoration: underline;
}
@media (max-width: 600px) {
    .of-related-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Table of Contents (Dark Bar) ===== */
.of-review-toc {
    border-radius: 14px;
    background: #1F2937;
    padding: 0;
    margin: 0 auto 24px;
    max-width: 1020px;
    overflow: hidden;
}
.of-toc-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.of-toc-toggle svg {
    transition: transform 0.2s ease;
    color: rgba(255,255,255,0.5);
}
.of-toc-toggle[aria-expanded="false"] svg {
    transform: rotate(-90deg);
}
.of-review-toc ol {
    list-style: none;
    padding: 0 20px 16px;
    margin: 0;
    counter-reset: toc;
}
.of-review-toc li {
    counter-increment: toc;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.of-review-toc li:last-child {
    border-bottom: 0;
}
.of-review-toc a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.15s ease;
}
.of-review-toc a::before {
    content: counter(toc) ". ";
    color: #cca6ff;
    font-weight: 700;
}
.of-review-toc a:hover {
    color: #fff;
}

/* ===== FAQ Section (Accordion) ===== */
.of-review-faq {
    max-width: 1020px;
    margin: 32px auto;
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.of-review-faq > h2 {
    font-size: 1.25rem;
    color: #ffffff;
    margin: 0 0 20px;
}
.of-faq-list {
    display: grid;
    gap: 10px;
}
.of-faq-item {
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    background: #1a161d;
    overflow: hidden;
}
.of-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 16px 20px;
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    list-style: none;
}
.of-faq-question::-webkit-details-marker {
    display: none;
}
.of-faq-question::before {
    content: "Q: ";
    color: #cca6ff;
    flex-shrink: 0;
}
.of-faq-question::after {
    content: "+";
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255,255,255,0.25);
    flex-shrink: 0;
    margin-left: 12px;
    transition: transform 0.2s ease;
}
.of-faq-item[open] > .of-faq-question::after {
    content: "\2212";
}
.of-faq-answer {
    padding: 0 20px 16px;
}
.of-faq-answer p {
    margin: 0;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
}

/* ===== TOC + FAQ + Review responsive ===== */
@media (max-width: 780px) {
    .of-review-toc {
        border-radius: 10px;
    }
    .of-review-faq {
        margin: 24px 0;
    }
    .of-review-body {
        grid-template-columns: 1fr;
    }
    .of-review-hero-inner {
        flex-direction: column;
        text-align: center;
    }
    .of-review-hero-cta {
        align-items: center;
    }
    .of-review-badges {
        justify-content: center;
    }
    .of-review-pros-cons {
        grid-template-columns: 1fr;
    }
    .of-review-tabs-card {
        position: static;
    }
    .of-review-sidebar-cta {
        position: static;
    }
    .of-tab-label {
        font-size: 0.68rem;
        padding: 8px 2px;
    }
    .of-sports-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Internal Linking Mesh ===== */

/* Team name links in match hero */
.of-mp-team-link {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    transition: color 0.15s ease, border-color 0.15s ease;
}
.of-mp-team-link:hover {
    color: #cca6ff;
    border-bottom-color: rgba(124, 58, 237, 0.5);
}

/* League link in match meta line */
.of-mp-league-link {
    color: rgba(124, 58, 237, 0.8);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.15s ease;
}
.of-mp-league-link:hover {
    color: #cca6ff;
}

/* Detail links in match sidebar */
.of-mp-detail-link {
    color: #e0e0e0;
    text-decoration: none;
    border-bottom: 1px dotted rgba(0,0,0,0.1);
    transition: color 0.15s ease, border-color 0.15s ease;
}
.of-mp-detail-link:hover {
    color: #cca6ff;
    border-bottom-color: rgba(124, 58, 237, 0.4);
}

/* Match backlink card on betting tip pages */
.of-il-match-backlink {
    margin: 16px 0;
}
.of-il-match-backlink-inner {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 18px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    background: rgba(0, 212, 255, 0.04);
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.15s ease;
}
.of-il-match-backlink-inner:hover {
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-1px);
}
.of-il-match-backlink-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(0, 212, 255, 0.8);
}
.of-il-match-backlink-teams {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}
.of-il-match-backlink-time {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}
.of-il-match-backlink-cta {
    font-size: 0.85rem;
    font-weight: 600;
    color: #00D4FF;
    margin-top: 4px;
}

/* Related tips section (on blog posts and sportsbook reviews) */
.of-il-related-tips {
    margin-top: 28px;
}

/* Matches-for-sportsbook section */
.of-il-match-cards {
    margin-top: 28px;
}

/* ───────────────────────────────────────────────────────────────── */
/* Accumulator Tip Cards                                            */
/* ───────────────────────────────────────────────────────────────── */
.of-acca-page {
    max-width: 720px;
    margin: 0 auto;
}
.of-acca-page-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 24px;
    text-align: center;
}
.of-acca-card {
    background: linear-gradient(135deg, rgba(17,22,32,0.98), rgba(243,244,246,0.95));
    border: 1px solid rgba(255,255,255,0.06);
    border-left: 4px solid #7C3AED;
    border-radius: 16px;
    padding: 20px 22px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15), 0 8px 24px rgba(0,0,0,0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.of-acca-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 12px 32px rgba(0,0,0,0.15);
}
.of-acca-card.of-acca-win {
    border-left-color: #34D399;
    border-color: rgba(52, 211, 153, 0.2);
}
.of-acca-card.of-acca-loss {
    border-left-color: #FF3B6F;
    border-color: rgba(255, 59, 111, 0.2);
}

/* Header */
.of-acca-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    gap: 12px;
}
.of-acca-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}
.of-acca-badge {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #cca6ff;
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.25);
    padding: 4px 12px;
    border-radius: 999px;
}
.of-acca-odds-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 12px;
    padding: 6px 16px;
    min-width: 100px;
}
.of-acca-odds-label {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.4);
}
.of-acca-odds-value {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fee001;
    line-height: 1.2;
}

/* Title */
.of-acca-title {
    margin: 0 0 14px;
    font-size: 1.1rem;
    font-weight: 700;
}
.of-acca-title a {
    color: #ffffff;
    text-decoration: none;
}
.of-acca-title a:hover {
    color: #cca6ff;
}

/* Selections */
.of-acca-selections {
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 14px;
}
.of-acca-sel-row {
    display: grid;
    grid-template-columns: 24px 1fr auto auto;
    gap: 10px;
    align-items: center;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    font-size: 0.88rem;
}
.of-acca-sel-row:last-child {
    border-bottom: none;
}
.of-acca-sel-icon {
    font-size: 0.9rem;
    text-align: center;
}
.of-sel-won { color: #34D399; }
.of-sel-lost { color: #FF3B6F; }
.of-sel-pending { color: rgba(255,255,255,0.25); font-size: 0.6rem; }
.of-acca-sel-match {
    color: #ffffff;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.of-acca-sel-bet {
    color: rgba(31, 41, 55, 0.7);
    font-size: 0.82rem;
    white-space: nowrap;
}
.of-acca-sel-odds {
    color: #fee001;
    font-weight: 700;
    font-size: 0.88rem;
    min-width: 40px;
    text-align: right;
}

/* Returns */
.of-acca-returns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: rgba(52, 211, 153, 0.06);
    border: 1px solid rgba(52, 211, 153, 0.15);
    border-radius: 10px;
    margin-bottom: 12px;
}
.of-acca-returns-label {
    font-size: 0.82rem;
    color: #a6a6a6;
}
.of-acca-returns-value {
    font-size: 1.15rem;
    font-weight: 800;
    color: #34D399;
}

/* Confidence */
.of-acca-confidence {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 0.82rem;
}
.of-acca-conf-label {
    color: rgba(255,255,255,0.4);
}
.of-acca-conf-stars {
    color: #cca6ff;
    letter-spacing: 2px;
}

/* Date */
.of-acca-date {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
    margin-top: 8px;
    text-align: right;
}

/* Mobile responsive */
@media (max-width: 640px) {
    .of-acca-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .of-acca-odds-pill {
        flex-direction: row;
        gap: 8px;
        width: 100%;
        justify-content: center;
    }
    .of-acca-sel-row {
        grid-template-columns: 24px 1fr;
        gap: 4px 10px;
    }
    .of-acca-sel-bet {
        grid-column: 2;
        font-size: 0.78rem;
    }
    .of-acca-sel-odds {
        grid-column: 2;
        text-align: left;
    }
    .of-acca-card {
        padding: 16px;
    }
}

/* ═══════════════════════════════════════════════════
   Tip Result Badges & Win/Loss States
   ═══════════════════════════════════════════════════ */

/* Result badge (shown in card header) */
.of-tip-result {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.4;
    margin-left: 10px;
    vertical-align: middle;
}

.of-tip-result-win {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.4);
}

.of-tip-result-loss {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.4);
}

.of-tip-result-void,
.of-tip-result-push {
    background: rgba(163, 163, 163, 0.2);
    color: #a3a3a3;
    border: 1px solid rgba(163, 163, 163, 0.3);
}

.of-tip-result-pending {
    background: rgba(124, 58, 237, 0.15);
    color: #cca6ff;
    border: 1px solid rgba(124, 58, 237, 0.3);
}

/* Acca card win/loss states — overall card border color shift */
.of-acca-card.of-acca-win {
    border-left-color: #22c55e;
}

.of-acca-card.of-acca-loss {
    border-left-color: #ef4444;
    opacity: 0.85;
}

/* Selection row icons */
.of-acca-sel-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
}

.of-sel-won {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1.5px solid rgba(34, 197, 94, 0.5);
}

.of-sel-lost {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1.5px solid rgba(239, 68, 68, 0.5);
}

.of-sel-pending {
    background: rgba(124, 58, 237, 0.15);
    color: #cca6ff;
    border: 1.5px solid rgba(124, 58, 237, 0.3);
    font-size: 0.5rem;
}

.of-sel-void {
    background: rgba(163, 163, 163, 0.15);
    color: #a3a3a3;
    border: 1.5px solid rgba(163, 163, 163, 0.3);
}

/* Selection row — won selection has subtle green tint */
.of-acca-sel-row:has(.of-sel-won) {
    background: rgba(34, 197, 94, 0.05);
}

/* Selection row — lost selection has subtle red tint + strikethrough */
.of-acca-sel-row:has(.of-sel-lost) {
    background: rgba(239, 68, 68, 0.05);
}
.of-acca-sel-row:has(.of-sel-lost) .of-acca-sel-bet {
    text-decoration: line-through;
    opacity: 0.7;
}

/* Returns box state — dim when lost */
.of-acca-card.of-acca-loss .of-acca-returns {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.2);
}
.of-acca-card.of-acca-loss .of-acca-returns-value {
    color: #ef4444;
    text-decoration: line-through;
}

/* Returns box state — highlight when won */
.of-acca-card.of-acca-win .of-acca-returns {
    background: rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.3);
}
.of-acca-card.of-acca-win .of-acca-returns-value {
    color: #22c55e;
}

/* ============================================================
   Phase 3: Tip Accuracy Dashboard
   ============================================================ */
.of-accuracy-page {
    max-width: 920px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
}
.of-accuracy-page-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 1.5rem;
    text-align: center;
}

/* --- Hero win rate --- */
.of-accuracy-hero {
    text-align: center;
    padding: 2rem 1rem 1.5rem;
    margin-bottom: 1.5rem;
    background: #1a1a2e;
    border-radius: 14px;
    border: 1px solid #16213e;
}
.of-accuracy-hero-ring {
    width: 120px;
    height: 120px;
    margin: 0 auto 0.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid #333;
    position: relative;
}
.of-accuracy-hero--positive .of-accuracy-hero-ring { border-color: #22c55e; box-shadow: 0 0 20px rgba(34,197,94,0.2); }
.of-accuracy-hero--neutral .of-accuracy-hero-ring  { border-color: #cca6ff; box-shadow: 0 0 20px rgba(124,58,237,0.2); }
.of-accuracy-hero--negative .of-accuracy-hero-ring { border-color: #ef4444; box-shadow: 0 0 20px rgba(239,68,68,0.2); }
.of-accuracy-hero-pct {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}
.of-accuracy-hero--positive .of-accuracy-hero-pct { color: #22c55e; }
.of-accuracy-hero--neutral .of-accuracy-hero-pct  { color: #cca6ff; }
.of-accuracy-hero--negative .of-accuracy-hero-pct { color: #ef4444; }
.of-accuracy-hero-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 0.25rem;
}
.of-accuracy-hero-sub {
    font-size: 0.85rem;
    color: #a0a0b0;
}

/* --- Stat card grid --- */
.of-accuracy-grid {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.of-accuracy-grid--4 { grid-template-columns: repeat(4, 1fr); }
.of-accuracy-grid--3 { grid-template-columns: repeat(3, 1fr); }
.of-accuracy-grid--2 { grid-template-columns: repeat(2, 1fr); }

.of-accuracy-card {
    background: #1a1a2e;
    border: 1px solid #16213e;
    border-radius: 12px;
    padding: 1.25rem 1rem;
    text-align: center;
    border-top: 3px solid #333;
}
.of-accuracy-card--positive { border-top-color: #22c55e; }
.of-accuracy-card--negative { border-top-color: #ef4444; }
.of-accuracy-card--neutral  { border-top-color: #cca6ff; }
.of-accuracy-card__value {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}
.of-accuracy-card--positive .of-accuracy-card__value { color: #22c55e; }
.of-accuracy-card--negative .of-accuracy-card__value { color: #ef4444; }
.of-accuracy-card__label {
    font-size: 0.8rem;
    color: #a0a0b0;
    margin-top: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.of-accuracy-card__sub {
    font-size: 0.78rem;
    color: #8a8a9a;
    margin-top: 0.35rem;
}

/* --- Breakdown table --- */
.of-accuracy-breakdown {
    margin: 1.5rem 0;
}
.of-accuracy-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e0e0e0;
    margin: 0 0 0.75rem;
}
.of-accuracy-table {
    background: #1a1a2e;
    border: 1px solid #16213e;
    border-radius: 12px;
    overflow: hidden;
}
.of-accuracy-table-head {
    display: grid;
    grid-template-columns: 2fr repeat(6, 1fr);
    padding: 0.75rem 1rem;
    background: #16213e;
    font-size: 0.75rem;
    font-weight: 700;
    color: #a0a0b0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    gap: 0.25rem;
}
.of-accuracy-table-row {
    display: grid;
    grid-template-columns: 2fr repeat(6, 1fr);
    padding: 0.85rem 1rem;
    border-top: 1px solid rgba(0,0,0,0.04);
    font-size: 0.9rem;
    color: #e0e0e0;
    gap: 0.25rem;
    align-items: center;
}
.of-accuracy-table-type {
    font-weight: 600;
}
.of-text-green { color: #22c55e; font-weight: 600; }
.of-text-red   { color: #ef4444; font-weight: 600; }
.of-text-gold  { color: #cca6ff; font-weight: 600; }

/* --- Bottom CTA --- */
.of-accuracy-cta {
    margin: 1.5rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    border-radius: 14px;
    border: 1px solid #16213e;
    padding: 2rem 1.5rem;
    text-align: center;
}
.of-accuracy-cta h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.5rem;
}
.of-accuracy-cta p {
    color: #a0a0b0;
    margin: 0 0 1rem;
    font-size: 0.95rem;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .of-accuracy-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .of-accuracy-grid--3 { grid-template-columns: repeat(3, 1fr); }
    .of-accuracy-grid--2 { grid-template-columns: repeat(2, 1fr); }
    .of-accuracy-hero-ring { width: 100px; height: 100px; }
    .of-accuracy-hero-pct { font-size: 1.65rem; }
    .of-accuracy-table-head,
    .of-accuracy-table-row {
        grid-template-columns: 1.5fr repeat(6, 1fr);
        font-size: 0.75rem;
        padding: 0.65rem 0.6rem;
    }
}
@media (max-width: 480px) {
    .of-accuracy-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .of-accuracy-grid--3 { grid-template-columns: 1fr; }
    .of-accuracy-grid--2 { grid-template-columns: 1fr; }
    .of-accuracy-page { padding: 1rem 0.75rem; }
    .of-accuracy-hero { padding: 1.5rem 0.75rem 1rem; }
    .of-accuracy-card__value { font-size: 1.4rem; }
    .of-accuracy-table-head,
    .of-accuracy-table-row {
        grid-template-columns: 1.2fr repeat(6, 1fr);
        font-size: 0.68rem;
        padding: 0.5rem 0.4rem;
        gap: 0.15rem;
    }
    /* Sportsbook listing cards */
    .of-sb-card {
        padding: 14px 12px;
        gap: 10px;
    }
    .of-sb-logo-img {
        width: 48px;
        height: 48px;
    }
    .of-sb-name {
        font-size: 0.92rem;
    }
    .of-sb-bonus-text {
        font-size: 0.82rem;
    }
    .of-sb-btn-play {
        padding: 10px 16px;
        font-size: 0.82rem;
    }
    .of-sb-details-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    /* Review page */
    .of-review-single {
        padding: 20px 12px;
    }
    .of-review-hero {
        padding: 18px 14px;
        border-radius: 12px;
        margin-bottom: 18px;
    }
    .of-review-logo {
        width: 60px;
        height: 60px;
        border-radius: 10px;
    }
    .of-review-title {
        font-size: 1.2rem;
    }
    .of-review-bonus {
        font-size: 0.92rem;
    }
    .of-review-badge {
        font-size: 0.65rem;
        padding: 2px 8px;
    }
    .of-btn-lg {
        padding: 10px 18px;
        font-size: 0.88rem;
    }
    /* Tabs card */
    .of-review-tabs-card {
        border-radius: 10px;
    }
    .of-tab-label {
        font-size: 0.62rem;
        padding: 8px 2px;
        letter-spacing: 0.02em;
    }
    .of-tab-panel {
        padding: 12px 12px;
    }
    .of-review-details dt {
        font-size: 0.68rem;
    }
    .of-review-details dd {
        font-size: 0.82rem;
    }
    /* Pros/Cons */
    .of-review-pros-cons {
        padding: 14px 12px;
        gap: 12px;
    }
    .of-review-pros h3,
    .of-review-cons h3 {
        font-size: 0.88rem;
    }
    .of-review-pros li,
    .of-review-cons li {
        font-size: 0.82rem;
        padding: 5px 0;
    }
    /* Sidebar CTA */
    .of-review-sidebar-cta {
        padding: 12px;
        border-radius: 10px;
    }
    /* Review article */
    .of-review-article {
        font-size: 0.88rem;
    }
    .of-review-article h2 {
        font-size: 1.15rem;
    }
    .of-review-article h3 {
        font-size: 1rem;
    }
    /* TOC */
    .of-review-toc {
        border-radius: 10px;
    }
    .of-toc-toggle {
        padding: 12px 14px;
    }
    .of-toc-list a {
        font-size: 0.82rem;
        padding: 7px 14px;
    }
    /* FAQ */
    .of-faq-question {
        padding: 12px 14px;
        font-size: 0.88rem;
    }
    .of-faq-answer {
        padding: 0 14px 12px;
    }
    .of-faq-answer p {
        font-size: 0.82rem;
    }
    /* Odds table */
    .of-odds-table-head,
    .of-odds-table-row {
        grid-template-columns: 1fr 44px 44px 44px 46px;
        padding: 6px 8px;
    }
    .of-odds-page-logo {
        width: 18px;
        height: 18px;
    }
    .of-odds-col-val {
        font-size: 0.72rem;
        padding: 2px 1px;
    }
    .of-odds-match-teams {
        font-size: 0.82rem;
    }
    /* Related cards */
    .of-related-section {
        margin: 20px 0 12px;
        padding-top: 16px;
    }
    .of-related-section h2 {
        font-size: 1.05rem;
    }
    /* Bonus single page */
    .of-bonus-single {
        padding: 0 12px 24px;
    }
    .of-bonus-single-logo {
        width: 48px;
        height: 48px;
    }
    .of-bonus-single-title {
        font-size: 1.2rem;
    }
    /* Tip cards */
    .of-tip-card {
        padding: 12px;
    }
    .of-tip-title {
        font-size: 0.88rem;
    }
}

/* ===== Mobile Polish: 390px (iPhone SE / small phones) ===== */
@media (max-width: 390px) {
    /* Review page */
    .of-review-single {
        padding: 14px 8px;
    }
    .of-review-hero {
        padding: 14px 10px;
    }
    .of-review-hero-inner {
        gap: 14px;
    }
    .of-review-logo {
        width: 52px;
        height: 52px;
    }
    .of-review-title {
        font-size: 1.1rem;
    }
    .of-review-bonus {
        font-size: 0.85rem;
    }
    .of-review-hero-cta {
        width: 100%;
    }
    .of-review-hero-cta .of-btn-lg {
        width: 100%;
        text-align: center;
    }
    /* Tab bar scrollable */
    .of-review-tab-bar {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .of-review-tab-bar::-webkit-scrollbar {
        display: none;
    }
    .of-tab-label {
        flex: 0 0 auto;
        font-size: 0.6rem;
        padding: 7px 6px;
        min-width: 60px;
    }
    .of-tab-panel {
        padding: 10px;
    }
    /* Pros/cons */
    .of-review-pros-cons {
        padding: 10px;
        border-radius: 10px;
    }
    /* Listing cards */
    .of-sb-card {
        padding: 12px 10px;
    }
    .of-sb-logo-img {
        width: 42px;
        height: 42px;
    }
    .of-sb-btn-play {
        padding: 9px 12px;
        font-size: 0.78rem;
    }
    /* Odds table - ultra compact */
    .of-odds-table-head,
    .of-odds-table-row {
        grid-template-columns: 1fr 40px 40px 40px 42px;
        padding: 5px 6px;
        gap: 2px;
    }
    .of-odds-col-val {
        font-size: 0.68rem;
    }
    .of-odds-match-teams {
        font-size: 0.78rem;
    }
    .of-btn-sm {
        padding: 4px 8px;
        font-size: 0.68rem;
    }
}
