        /* ── League name banner on home page ── */
        .league-page-name {
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #e63333;
            margin-bottom: 6px;
            opacity: 0.85;
        }

        /* ── Boxing Quote Card ── */
        .boxing-quote-card {
            background: linear-gradient(135deg, #111 0%, #1c1c1c 100%);
            border-radius: 12px;
            padding: 22px 26px 18px;
            margin-bottom: 28px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 24px rgba(0,0,0,0.22);
        }
        .bq-watermark {
            position: absolute;
            top: -18px;
            right: 18px;
            font-size: 130px;
            font-weight: 900;
            color: rgba(230,51,51,0.10);
            line-height: 1;
            font-family: Georgia, 'Times New Roman', serif;
            pointer-events: none;
            user-select: none;
        }
        .bq-inner {
            position: relative;
            z-index: 1;
        }
        .bq-quote-wrap {
            max-height: 76px;
            overflow: hidden;
            position: relative;
            transition: max-height 0.4s ease;
        }
        .bq-quote-wrap.expanded {
            max-height: 600px;
        }
        .bq-text {
            font-size: 15px;
            font-style: italic;
            color: rgba(255,255,255,0.86);
            line-height: 1.72;
            margin: 0;
            font-weight: 400;
        }
        .bq-fade {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 38px;
            background: linear-gradient(to bottom, transparent, #141414);
            pointer-events: none;
        }
        .bq-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 13px;
            gap: 10px;
            flex-wrap: wrap;
        }
        .bq-attr {
            font-size: 12px;
            font-weight: 700;
            color: #e63333;
            text-transform: uppercase;
            letter-spacing: 0.07em;
        }
        .bq-attr strong {
            color: #e63333;
        }
        .bq-context {
            color: rgba(255,255,255,0.38);
            font-weight: 500;
            text-transform: none;
            letter-spacing: 0;
            font-style: italic;
            font-size: 11px;
            margin-left: 6px;
        }
        .bq-toggle {
            background: none;
            border: 1px solid rgba(230,51,51,0.35);
            border-radius: 20px;
            color: #e63333;
            font-size: 11px;
            font-weight: 700;
            padding: 4px 13px;
            cursor: pointer;
            transition: all 0.2s ease;
            white-space: nowrap;
            flex-shrink: 0;
            font-family: inherit;
            letter-spacing: 0.03em;
        }
        .bq-toggle:hover {
            background: rgba(230,51,51,0.10);
            border-color: #e63333;
        }
        #bqRefreshBtn:hover {
            border-color: #e63333;
            color: #e63333;
        }
        #bqRefreshBtn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        @media (max-width: 480px) {
            .boxing-quote-card { padding: 18px 18px 15px; }
            .bq-watermark { font-size: 90px; top: -10px; right: 12px; }
            .bq-text { font-size: 14px; }
        }

        /* ── About / Our Story page ───────────────────────────────── */
        #aboutPage { padding: 0; }
        #aboutPage .about-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 20px 80px;
        }
        /* hero */
        /* ── Hero — full dark redesign for public launch ── */
        .about-hero {
            background: linear-gradient(135deg, #0d0d1a 0%, #1a1a2e 45%, #0f2044 100%);
            border-radius: 16px;
            padding: 64px 52px;
            margin-bottom: 24px;
            border-top: none;
            display: grid;
            grid-template-columns: 1fr 310px;
            gap: 52px;
            align-items: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0,0,0,0.22);
        }
        .about-hero::before {
            content: '';
            position: absolute;
            top: -80px; right: -80px;
            width: 380px; height: 380px;
            background: radial-gradient(circle, rgba(230,51,51,0.10) 0%, transparent 68%);
            pointer-events: none;
        }
        .about-hero::after {
            content: '';
            position: absolute;
            bottom: -60px; left: 30%;
            width: 280px; height: 280px;
            background: radial-gradient(circle, rgba(102,126,234,0.07) 0%, transparent 68%);
            pointer-events: none;
        }
        .about-hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(230,51,51,0.15);
            border: 1px solid rgba(230,51,51,0.30);
            color: #ff8080;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            padding: 6px 14px;
            border-radius: 20px;
            margin-bottom: 22px;
        }
        .about-hero h1 {
            font-size: 56px;
            font-weight: 900;
            color: white;
            line-height: 1.04;
            margin-bottom: 20px;
            letter-spacing: -2px;
        }
        .about-hero h1 span { color: #e63333; }
        .about-hero-body {
            font-size: 16px;
            color: rgba(255,255,255,0.65);
            line-height: 1.75;
            margin-bottom: 32px;
            max-width: 520px;
        }
        .about-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
        .about-hero-cta-primary {
            padding: 15px 34px;
            background: #e63333;
            color: white;
            font-size: 15px;
            font-weight: 800;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.25s ease;
            letter-spacing: 0.01em;
        }
        .about-hero-cta-primary:hover {
            background: #cc1f1f;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(230,51,51,0.45);
        }
        .about-hero-cta-secondary {
            padding: 15px 26px;
            background: rgba(255,255,255,0.08);
            color: rgba(255,255,255,0.80);
            font-size: 15px;
            font-weight: 700;
            border: 1px solid rgba(255,255,255,0.18);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.25s ease;
        }
        .about-hero-cta-secondary:hover {
            background: rgba(255,255,255,0.14);
            border-color: rgba(255,255,255,0.32);
            color: white;
        }
        .about-hero-proof { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
        .about-hero-proof-item { font-size: 12px; color: rgba(255,255,255,0.38); font-weight: 500; }
        .about-hero-proof-item strong { color: rgba(255,255,255,0.72); font-weight: 700; }
        .about-hero-proof-divider { color: rgba(255,255,255,0.18); font-size: 14px; }
        /* Stats panel on dark background */
        .about-hero-stats {
            display: flex;
            flex-direction: column;
            gap: 0;
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.10);
            overflow: hidden;
        }
        .about-hero-spec {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            padding: 13px 18px;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }
        .about-hero-spec:last-child { border-bottom: none; }
        .about-hero-spec-label { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.38); text-transform: uppercase; letter-spacing: 0.06em; white-space: nowrap; }
        .about-hero-spec-value { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.85); text-align: right; }
        .about-hero-spec-value.highlight {
            color: #4ade80;
            font-size: 12px;
            background: rgba(74,222,128,0.12);
            border: 1px solid rgba(74,222,128,0.25);
            padding: 3px 9px;
            border-radius: 20px;
            font-weight: 700;
        }
        /* shared labels */
        .about-section-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #e63333; margin-bottom: 8px; }
        .about-section-title { font-size: 26px; font-weight: 700; color: #222; margin-bottom: 8px; }
        .about-section-subtitle { font-size: 15px; color: #666; max-width: 580px; line-height: 1.65; }
        .about-section-header { margin-bottom: 28px; }
        /* features */
        .about-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 40px; }
        .about-feature-card {
            background: white; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            padding: 26px 22px; transition: all 0.3s ease; border-left: 4px solid #e63333;
        }
        .about-feature-card:nth-child(2) { border-left-color: #667eea; }
        .about-feature-card:nth-child(3) { border-left-color: #10b981; }
        .about-feature-card:nth-child(4) { border-left-color: #f59e0b; }
        .about-feature-card:nth-child(5) { border-left-color: #8b5cf6; }
        .about-feature-card:nth-child(6) { border-left-color: #e63333; }
        .about-feature-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.12); transform: translateY(-3px); }
        .about-feature-icon { font-size: 26px; margin-bottom: 12px; }
        .about-feature-card h3 { font-size: 15px; font-weight: 700; color: #222; margin-bottom: 8px; }
        .about-feature-card p { font-size: 13px; color: #666; line-height: 1.65; }
        /* trade market spotlight */
        .about-trade-spotlight {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            border-radius: 16px;
            padding: 36px;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
        }
        .about-trade-spotlight::before {
            content: '';
            position: absolute;
            top: -60px; right: -60px;
            width: 220px; height: 220px;
            background: radial-gradient(circle, rgba(230,51,51,0.12) 0%, transparent 70%);
            pointer-events: none;
        }
        .about-trade-spotlight-badge {
            display: inline-block;
            background: rgba(230,51,51,0.18);
            color: #ff7070;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            padding: 5px 14px;
            border-radius: 20px;
            margin-bottom: 24px;
            border: 1px solid rgba(230,51,51,0.28);
        }
        .about-trade-spotlight-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 44px;
            align-items: start;
        }
        .about-trade-spotlight-icon {
            font-size: 34px;
            margin-bottom: 14px;
        }
        .about-trade-spotlight-left h3 {
            font-size: 24px;
            font-weight: 900;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: -0.5px;
            line-height: 1.2;
        }
        .about-trade-spotlight-left p {
            font-size: 14px;
            color: rgba(255,255,255,0.65);
            line-height: 1.75;
            margin-bottom: 12px;
        }
        .about-trade-spotlight-right {
            padding-top: 8px;
        }
        .about-trade-spotlight-point {
            display: flex;
            gap: 14px;
            align-items: flex-start;
            margin-bottom: 22px;
        }
        .about-trade-spotlight-point:last-child { margin-bottom: 0; }
        .about-trade-spotlight-point-icon {
            font-size: 18px;
            width: 38px;
            height: 38px;
            background: rgba(255,255,255,0.07);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .about-trade-spotlight-point-title {
            font-size: 14px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 4px;
        }
        .about-trade-spotlight-point-body {
            font-size: 13px;
            color: rgba(255,255,255,0.55);
            line-height: 1.65;
        }
        /* how it works */
        .about-how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 40px; }
        .about-how-card {
            background: white; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            padding: 26px 20px; text-align: center; transition: all 0.3s ease;
        }
        .about-how-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.12); transform: translateY(-3px); }
        .about-how-step { width: 30px; height: 30px; background: #e63333; color: white; border-radius: 50%; font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
        .about-how-icon { font-size: 24px; margin-bottom: 10px; }
        .about-how-card h3 { font-size: 14px; font-weight: 700; color: #222; margin-bottom: 8px; }
        .about-how-card p { font-size: 13px; color: #666; line-height: 1.6; }
        /* scoring */
        .about-scoring-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 40px; }
        .about-scoring-table { background: white; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); overflow: hidden; }
        .about-scoring-table-head { background: #e63333; padding: 14px 20px; display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 0.06em; }
        .about-scoring-row { display: flex; align-items: center; justify-content: space-between; padding: 13px 20px; border-bottom: 1px solid #f0f0f0; transition: background 0.15s; }
        .about-scoring-row:last-child { border-bottom: none; }
        .about-scoring-row:hover { background: #f8f8f8; }
        .about-scoring-row.featured { background: #fffbf0; }
        .about-scoring-row.featured:hover { background: #fff8e1; }
        .about-scoring-row-label { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #444; }
        .about-scoring-row-icon { font-size: 16px; width: 22px; text-align: center; }
        .about-scoring-row-pts { font-size: 15px; font-weight: 700; color: #e63333; }
        .about-scoring-row.featured .about-scoring-row-pts { color: #d97706; font-size: 16px; }
        .about-divisions-card { background: white; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); overflow: hidden; }
        .about-divisions-head { background: #667eea; padding: 14px 20px; display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 0.06em; }
        .about-division-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; border-bottom: 1px solid #f0f0f0; transition: background 0.15s; }
        .about-division-row:last-child { border-bottom: none; }
        .about-division-row:hover { background: #f8f8f8; }
        .about-division-name { font-size: 14px; font-weight: 600; color: #333; }
        .about-division-weights { font-size: 12px; color: #999; margin-top: 2px; }
        .about-division-count { font-size: 13px; font-weight: 700; color: #667eea; background: #f0f2ff; padding: 3px 10px; border-radius: 20px; }
        /* origin strip */
        .about-origin-strip {
            background: white; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            padding: 30px 34px; margin-bottom: 40px; border-left: 4px solid #e63333;
            display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: center;
        }
        .about-origin-strip p { font-size: 14px; color: #555; line-height: 1.75; margin: 0; }
        .about-origin-strip p strong { color: #222; }
        .about-season-pills { display: flex; flex-direction: column; gap: 7px; flex-shrink: 0; }
        .about-season-pill { display: flex; align-items: center; justify-content: space-between; gap: 16px; background: #f8f8f8; border-radius: 6px; padding: 8px 13px; min-width: 220px; }
        .about-season-pill-year { font-size: 13px; font-weight: 800; color: #e63333; }
        .about-season-pill-winner { font-size: 13px; font-weight: 700; color: #222; }
        .about-season-pill-stat { font-size: 12px; color: #999; }
        /* market */
        .about-market-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 40px; }
        .about-market-card { background: white; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); padding: 26px 22px; transition: all 0.3s ease; border-top: 3px solid #e63333; }
        .about-market-card:nth-child(2) { border-top-color: #667eea; }
        .about-market-card:nth-child(3) { border-top-color: #10b981; }
        .about-market-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.12); transform: translateY(-3px); }
        .about-market-card-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #999; margin-bottom: 8px; }
        .about-market-card-number { font-size: 32px; font-weight: 800; line-height: 1.1; margin-bottom: 10px; }
        .about-market-card:nth-child(1) .about-market-card-number { color: #e63333; }
        .about-market-card:nth-child(2) .about-market-card-number { color: #667eea; }
        .about-market-card:nth-child(3) .about-market-card-number { color: #10b981; }
        .about-market-card p { font-size: 13px; color: #666; line-height: 1.65; }
        /* cta */
        .about-cta-banner { background: white; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); padding: 44px; text-align: center; border-top: 4px solid #e63333; }
        .about-cta-banner h2 { font-size: 24px; font-weight: 800; color: #222; margin-bottom: 10px; }
        .about-cta-banner p { font-size: 15px; color: #666; margin-bottom: 26px; max-width: 460px; margin-left: auto; margin-right: auto; line-height: 1.65; }
        .about-btn { display: inline-block; padding: 12px 26px; font-size: 14px; font-weight: 700; border-radius: 6px; cursor: pointer; border: none; transition: all 0.3s ease; text-decoration: none; }
        .about-btn:hover { transform: translateY(-2px); }
        .about-btn-red { background: #e63333; color: white; }
        .about-btn-red:hover { background: #cc2222; box-shadow: 0 4px 12px rgba(230,51,51,0.3); }
        .about-btn-outline { background: transparent; color: #667eea; border: 2px solid #667eea; }
        .about-btn-outline:hover { background: #667eea; color: white; }
        .about-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
        /* clarity strip */
        .about-clarity-strip {
            background: #111; border-radius: 10px; padding: 30px 40px; margin-bottom: 40px; text-align: center;
        }
        .about-clarity-headline {
            font-size: 21px; font-weight: 800; color: white; line-height: 1.35; margin-bottom: 10px; letter-spacing: -0.01em;
        }
        .about-clarity-sub {
            font-size: 14px; color: rgba(255,255,255,0.55); font-weight: 500; line-height: 1.6;
        }
        .about-clarity-tag {
            display: inline-block; margin-top: 14px; background: #e63333; color: white;
            font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
            padding: 5px 12px; border-radius: 4px;
        }
        /* ── Public launch announcement strip ── */
        .about-launch-strip {
            display: flex;
            align-items: center;
            gap: 18px;
            background: linear-gradient(135deg, #fff8f8 0%, #fff3f3 100%);
            border: 1px solid #fcd5d5;
            border-left: 4px solid #e63333;
            border-radius: 10px;
            padding: 18px 24px;
            margin-bottom: 24px;
            flex-wrap: wrap;
        }
        .about-launch-icon { font-size: 24px; flex-shrink: 0; line-height: 1; }
        .about-launch-text { flex: 1; font-size: 14px; color: #444; line-height: 1.6; min-width: 180px; }
        .about-launch-text strong { color: #b91c1c; font-weight: 700; }
        .about-launch-btn {
            padding: 10px 22px;
            background: #e63333;
            color: white;
            font-size: 13px;
            font-weight: 800;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
            white-space: nowrap;
            flex-shrink: 0;
            letter-spacing: 0.01em;
        }
        .about-launch-btn:hover {
            background: #cc1f1f;
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(230,51,51,0.35);
        }

        /* ── Join / Register section ── */
        .about-join-section {
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
            padding: 48px 52px;
            margin-bottom: 40px;
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 52px;
            align-items: center;
            border-top: 4px solid #e63333;
        }
        .about-join-headline {
            font-size: 30px;
            font-weight: 900;
            color: #111;
            line-height: 1.15;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }
        .about-join-sub {
            font-size: 15px;
            color: #666;
            line-height: 1.70;
            margin-bottom: 28px;
            max-width: 440px;
        }
        .about-join-checks { display: flex; flex-direction: column; gap: 10px; }
        .about-join-check {
            font-size: 14px;
            color: #333;
            font-weight: 600;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            line-height: 1.4;
        }
        .about-join-check::before {
            content: '✓';
            color: #10b981;
            font-weight: 900;
            font-size: 13px;
            margin-top: 1px;
            flex-shrink: 0;
        }
        .about-join-card {
            background: #f9f9f9;
            border: 1px solid #eee;
            border-radius: 12px;
            padding: 30px 24px;
            text-align: center;
        }
        .about-join-card-title { font-size: 19px; font-weight: 900; color: #111; margin-bottom: 4px; letter-spacing: -0.3px; }
        .about-join-card-sub { font-size: 13px; color: #aaa; margin-bottom: 22px; }
        .about-join-card-cta {
            display: block;
            width: 100%;
            padding: 16px;
            background: #e63333;
            color: white;
            font-size: 16px;
            font-weight: 800;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.25s ease;
            margin-bottom: 12px;
            letter-spacing: 0.01em;
        }
        .about-join-card-cta:hover {
            background: #cc1f1f;
            transform: translateY(-2px);
            box-shadow: 0 8px 22px rgba(230,51,51,0.38);
        }
        .about-join-signin {
            background: none;
            border: none;
            color: #667eea;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            padding: 0;
            margin-bottom: 22px;
            display: block;
            width: 100%;
            text-align: center;
            line-height: 1.4;
        }
        .about-join-signin:hover { text-decoration: underline; }
        .about-join-badges { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
        .about-join-badge { font-size: 11px; color: #888; background: #efefef; padding: 4px 11px; border-radius: 20px; font-weight: 600; }

        /* why different */
        .about-diff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 40px; }
        .about-diff-card {
            background: white; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            padding: 26px 22px; border-left: 4px solid #111;
        }
        .about-diff-card:nth-child(2) { border-left-color: #e63333; }
        .about-diff-card:nth-child(3) { border-left-color: #667eea; }
        .about-diff-card:nth-child(4) { border-left-color: #10b981; }
        .about-diff-icon { font-size: 22px; margin-bottom: 10px; }
        .about-diff-card h4 { font-size: 15px; font-weight: 700; color: #222; margin-bottom: 7px; line-height: 1.3; }
        .about-diff-card p { font-size: 13px; color: #666; line-height: 1.65; margin: 0; }
        .about-diff-card--mission {
            grid-column: 1 / -1;
            background: #111;
            border-left-color: #e63333;
            border-left-width: 5px;
            position: relative;
            overflow: hidden;
        }
        .about-diff-card--mission::before {
            content: '';
            position: absolute;
            top: 0; right: 0; bottom: 0;
            width: 220px;
            background: linear-gradient(135deg, transparent 0%, rgba(230,51,51,0.06) 100%);
            pointer-events: none;
        }
        .about-diff-card--mission .about-diff-icon { font-size: 26px; }
        .about-diff-card--mission h4 { color: #fff; font-size: 17px; letter-spacing: -0.01em; }
        .about-diff-card--mission p { color: rgba(255,255,255,0.68); font-size: 14px; max-width: 720px; line-height: 1.7; }

        @media (max-width: 1100px) {
            .about-features-grid { grid-template-columns: repeat(2, 1fr); }
            .about-how-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 1100px) {
            .about-join-section { grid-template-columns: 1fr 290px; gap: 36px; }
        }
        @media (max-width: 900px) {
            .about-hero { grid-template-columns: 1fr; padding: 44px 36px; }
            .about-hero-stats { display: none; }
            .about-hero h1 { font-size: 44px; }
            .about-join-section { grid-template-columns: 1fr; padding: 36px 28px; }
            .about-scoring-wrapper { grid-template-columns: 1fr; }
            .about-origin-strip { grid-template-columns: 1fr; }
            .about-market-grid { grid-template-columns: 1fr 1fr; }
            .about-trade-spotlight-inner { grid-template-columns: 1fr; gap: 28px; }
        }
        @media (max-width: 640px) {
            .about-features-grid { grid-template-columns: 1fr; }
            .about-how-grid { grid-template-columns: 1fr; }
            .about-market-grid { grid-template-columns: 1fr; }
            .about-trade-spotlight { padding: 26px 22px; }
            .about-trade-spotlight-left h3 { font-size: 20px; }
            .about-hero { padding: 36px 22px; }
            .about-hero h1 { font-size: 34px; letter-spacing: -1px; }
            .about-hero-actions { gap: 10px; }
            .about-hero-cta-primary, .about-hero-cta-secondary { width: 100%; text-align: center; }
            .about-launch-strip { flex-direction: column; align-items: flex-start; gap: 12px; }
            .about-join-section { padding: 28px 20px; }
            .about-join-headline { font-size: 22px; }
        }

        /* ══════════════ FIGHT PREVIEW MODAL ══════════════ */
        .ff-modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(10,10,20,0.65);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            padding: 20px;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
        }
        .ff-modal-overlay.open { display: flex; }
        .ff-modal {
            background: #fff;
            border-radius: 20px;
            padding: 32px 28px 28px;
            max-width: 500px;
            width: 100%;
            position: relative;
            box-shadow: 0 24px 80px rgba(0,0,0,0.35);
            animation: ffModalIn 0.22s cubic-bezier(0.34,1.56,0.64,1);
        }
        @keyframes ffModalIn {
            from { opacity: 0; transform: scale(0.88) translateY(12px); }
            to   { opacity: 1; transform: scale(1)    translateY(0); }
        }
        .ff-modal-close {
            position: absolute; top: 14px; right: 16px;
            background: #f3f4f6; border: none;
            width: 28px; height: 28px; border-radius: 50%;
            font-size: 14px; cursor: pointer; color: #666;
            display: flex; align-items: center; justify-content: center;
            transition: background 0.15s, color 0.15s;
        }
        .ff-modal-close:hover { background: #e5e7eb; color: #111; }
        .ff-modal-eyebrow {
            display: inline-flex; align-items: center; gap: 6px;
            font-size: 10px; font-weight: 800; letter-spacing: 0.14em;
            text-transform: uppercase; color: #e63333;
            background: #fff0f0; padding: 4px 10px; border-radius: 20px;
            margin-bottom: 12px;
        }
        .ff-modal-title {
            font-size: 18px; font-weight: 800; color: #111;
            margin-bottom: 14px; line-height: 1.35;
        }
        .ff-modal-body {
            font-size: 14.5px; color: #444; line-height: 1.75;
            border-top: 1px solid #f0f0f0; padding-top: 14px;
        }

        /* ══════════════ PREVIEW BUTTON ══════════════ */
        /* Preview button footer — sits at the bottom of both H2H cards and fight rows */
        .card-preview-footer {
            padding: 0 14px 12px;
            display: flex;
        }
        .h2h-card .card-preview-footer { justify-content: center; }
        .fight-row .card-preview-footer { justify-content: center; }

        /* fight-row inner row keeps the existing horizontal layout */
        .fight-row-main {
            display: flex; align-items: center; gap: 14px;
        }

        /* trophies + stars stacked in a right-side column */
        .fight-row-right {
            display: flex; flex-direction: column;
            align-items: flex-end; flex-shrink: 0; gap: 3px;
        }

        /* fight-row becomes a column when it has a preview footer */
        .fight-row--has-preview {
            flex-direction: column; align-items: stretch; gap: 0;
        }
        .fight-row--has-preview .fight-row-main { padding-bottom: 6px; }

        .ff-preview-btn {
            display: inline-flex; align-items: center; gap: 5px;
            padding: 4px 11px; border: none;
            background: linear-gradient(135deg, #fff0f0 0%, #ffeaea 100%);
            border: 1px solid #fdd;
            border-radius: 20px; font-size: 12px; font-weight: 700;
            color: #c0392b; cursor: pointer;
            transition: all 0.18s; white-space: nowrap;
        }
        .ff-preview-btn:hover {
            background: linear-gradient(135deg, #fee 0%, #fdd 100%);
            transform: translateY(-1px);
            box-shadow: 0 3px 10px rgba(230,51,51,0.2);
        }

        /* ══════════════ RECENT RESULTS CARDS ══════════════ */
        .rr-section-hd {
            display: flex; align-items: baseline; gap: 12px; margin-bottom: 16px;
        }
        .rr-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
            gap: 12px;
            margin-bottom: 40px;
        }
        .rr-card {
            background: #fff; border-radius: 16px; padding: 16px 12px 14px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.07);
            border: 2px solid transparent; position: relative; overflow: hidden;
            transition: transform 0.18s, box-shadow 0.18s; text-align: center;
        }
        .rr-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.12); }
        .rr-card::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0;
            height: 4px; background: var(--tc);
        }
        .rr-team-lbl {
            display: inline-block;
            font-size: 10px; font-weight: 800; text-transform: uppercase;
            letter-spacing: 0.07em; color: #fff;
            background: var(--tc); border-radius: 20px;
            padding: 2px 10px; margin-bottom: 8px;
        }
        .rr-portrait {
            width: 62px; height: 62px; border-radius: 50%;
            border: 2.5px solid var(--tc); overflow: hidden; margin: 0 auto 9px;
            background: #f0f0f0; display: flex; align-items: center; justify-content: center;
        }
        .rr-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: none; }
        .rr-portrait .rr-fallback { font-size: 24px; line-height: 1; }
        .rr-fighter-name { font-size: 12px; font-weight: 700; color: #111; margin-bottom: 5px; line-height: 1.3; }
        .rr-h2h-badge {
            display: inline-block; padding: 1px 7px;
            background: #eff6ff; color: #2563eb; border-radius: 4px;
            font-size: 10px; font-weight: 700; margin-bottom: 5px;
        }
        .rr-result { font-size: 12.5px; font-weight: 700; margin-bottom: 4px; line-height: 1.3; }
        .rr-result.win  { color: #16a34a; }
        .rr-result.loss { color: #dc2626; }
        .rr-result.draw { color: #ea580c; }
        .rr-pts {
            font-size: 15px; font-weight: 900; color: #16a34a;
            letter-spacing: -0.3px; margin-bottom: 6px;
        }
        .rr-review-btn {
            background: none; border: none; font-size: 20px; cursor: pointer;
            line-height: 1; padding: 2px; transition: transform 0.15s;
            display: inline-block;
        }
        .rr-review-btn:hover { transform: scale(1.25); }
        @media (max-width: 480px) { .rr-grid { grid-template-columns: repeat(2, 1fr); } }
