        /* ============ HOME PAGE ============ */
        .home-section-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 25px;
            color: #222;
        }

        .upcoming-fights {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 20px;
            margin-bottom: 50px;
        }

        .fight-card {
            background: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border-left: 4px solid #e63333;
        }

        .fight-card:hover {
            box-shadow: 0 4px 16px rgba(0,0,0,0.12);
            transform: translateY(-4px);
        }

        .fight-date {
            color: #999;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .fight-matchup {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
            margin-bottom: 15px;
        }

        .fighter-side {
            flex: 1;
            text-align: center;
        }

        .fighter-flag {
            font-size: 32px;
            margin-bottom: 8px;
        }

        .fighter-name {
            font-weight: 700;
            color: #222;
            line-height: 1.3;
            margin-bottom: 4px;
        }

        .fighter-country {
            font-size: 12px;
            color: #999;
        }

        .vs-text {
            color: #ccc;
            font-weight: 600;
            font-size: 12px;
            text-transform: uppercase;
            align-self: flex-start;
            margin-top: 20px;
        }

        .fight-details {
            background: #f8f8f8;
            padding: 12px;
            border-radius: 6px;
            font-size: 13px;
            line-height: 1.5;
            margin-bottom: 12px;
        }

        .fight-detail-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 6px;
        }

        .fight-detail-row:last-child {
            margin-bottom: 0;
        }

        .fight-detail-label {
            color: #999;
            font-weight: 600;
        }

        .fight-detail-value {
            color: #222;
            font-weight: 500;
        }

        .fight-belts {
            display: inline-flex;
            align-items: center;
            gap: 2px;
            font-size: 16px;
        }

        .news-section {
            background: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .news-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #222;
        }

        .news-items {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .news-item {
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }

        .news-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .news-date {
            color: #999;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 5px;
        }

        .news-text {
            color: #555;
            line-height: 1.6;
        }

        .news-loading {
            text-align: center;
            padding: 20px;
            color: #999;
        }

        @keyframes spin { to { transform: rotate(360deg); } }

        .news-item a {
            text-decoration: none;
            color: inherit;
            display: flex;
            gap: 12px;
            align-items: flex-start;
        }
        .news-item a:hover {
            color: #e63333;
        }
        .news-thumb {
            width: 80px;
            height: 60px;
            object-fit: cover;
            border-radius: 6px;
            flex-shrink: 0;
            background: #f0f0f0;
        }
        .news-text {
            flex: 1;
            min-width: 0;
        }
        .news-item a h4 {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 2px;
            line-height: 1.4;
        }
        .news-snippet {
            font-size: 12px;
            color: #888;
            margin-top: 3px;
            line-height: 1.4;
        }

        /* ============ UPCOMING SCHEDULE PAGE ============ */
        .schedule-page { padding: 0; }

        .schedule-top-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 28px;
            flex-wrap: wrap;
            gap: 12px;
        }
        .schedule-top-bar h2 {
            font-size: 22px;
            font-weight: 800;
            color: #111;
            margin: 0;
        }
        .schedule-live-badge {
            display: flex;
            align-items: center;
            gap: 6px;
            background: #f0fdf4;
            border: 1px solid #bbf7d0;
            color: #16a34a;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 5px 12px;
            border-radius: 20px;
        }
        .schedule-live-dot {
            width: 7px; height: 7px;
            border-radius: 50%;
            background: #16a34a;
            animation: pulse-dot 1.8s ease infinite;
        }
        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(0.7); }
        }

        .schedule-week { margin-bottom: 28px; }

        .schedule-date-header {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 12px;
        }
        .schedule-date-pill {
            background: #111827;
            color: #fff;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            padding: 6px 16px;
            border-radius: 20px;
            white-space: nowrap;
        }
        .schedule-date-line {
            flex: 1;
            height: 1px;
            background: linear-gradient(to right, #e5e7eb, transparent);
        }
        .schedule-fight-count {
            font-size: 11px;
            color: #9ca3af;
            font-weight: 600;
            white-space: nowrap;
        }

        /* H2H card */
        .h2h-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 10px;
            box-shadow: 0 1px 4px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.06);
            border: 1px solid rgba(0,0,0,0.06);
            transition: transform 0.18s ease, box-shadow 0.18s ease;
        }
        .h2h-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.08), 0 8px 28px rgba(0,0,0,0.1);
        }
        .h2h-top-bar { height: 5px; }

        .h2h-inner {
            display: flex;
            align-items: stretch;
            padding: 14px 18px 16px;
            gap: 0;
        }
        .h2h-team-col {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 6px;
            flex-shrink: 0;
            width: 68px;
        }
        .h2h-team-name {
            color: #fff;
            font-size: 11px;
            font-weight: 900;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 5px 10px;
            border-radius: 6px;
            width: 100%;
            text-align: center;
        }
        .h2h-team-label {
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #9ca3af;
        }
        .h2h-centre {
            flex: 1;
            text-align: center;
            padding: 0 16px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
        }
        .h2h-matchup-label {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: #fef3c7;
            color: #92400e;
            font-size: 9px;
            font-weight: 800;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            padding: 3px 10px;
            border-radius: 20px;
            margin: 0 auto 2px;
        }
        .h2h-vs-divider {
            font-size: 10px;
            font-weight: 900;
            color: #d1d5db;
            letter-spacing: 0.1em;
        }
        .h2h-vs-mobile { display: none; }
        .h2h-fight-name {
            font-size: 14px;
            font-weight: 800;
            color: #111827;
            line-height: 1.35;
        }
        .h2h-fight-detail {
            font-size: 12px;
            color: #6b7280;
            line-height: 1.4;
            margin-top: 1px;
        }
        .h2h-belt-row {
            font-size: 14px;
            margin-top: 4px;
        }
        .h2h-stars {
            font-size: 13px;
            letter-spacing: 1px;
            margin-top: 3px;
            line-height: 1;
            opacity: 0.9;
        }
        .fight-row-stars {
            font-size: 12px;
            letter-spacing: 0.5px;
            flex-shrink: 0;
            line-height: 1;
        }
        .home-fight-stars {
            font-size: 12px;
            letter-spacing: 1px;
            text-align: center;
            margin-top: 6px;
            padding-top: 6px;
            border-top: 1px solid #f0f0f0;
            color: #555;
        }

        /* Regular fight row */
        .fight-row {
            background: #fff;
            border-radius: 10px;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            padding: 12px 16px;
            gap: 14px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            border: 1px solid rgba(0,0,0,0.05);
            transition: transform 0.15s ease, box-shadow 0.15s ease;
        }
        .fight-row:hover {
            transform: translateY(-1px);
            box-shadow: 0 3px 10px rgba(0,0,0,0.09);
        }
        .fight-row-team {
            color: #fff;
            font-size: 10px;
            font-weight: 900;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 5px 10px;
            border-radius: 6px;
            flex-shrink: 0;
            min-width: 58px;
            text-align: center;
        }
        .fight-row-info { flex: 1; min-width: 0; }
        .fight-row-name {
            font-size: 14px;
            font-weight: 700;
            color: #111827;
            line-height: 1.3;
        }
        .fight-row-detail {
            font-size: 12px;
            color: #6b7280;
            margin-top: 2px;
            line-height: 1.4;
        }
        .fight-row-belts { font-size: 14px; flex-shrink: 0; }

        /* ============ LADDER PAGE ============ */
        .ladder-section {
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            overflow: hidden;
        }

        .ladder-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 20px;
            font-weight: 700;
            font-size: 18px;
        }

        .ladder-table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .ladder-table {
            width: 100%;
            min-width: 560px;
            border-collapse: collapse;
        }

        .ladder-table th,
        .ladder-table td {
            padding: 13px 10px;
            text-align: center;
            border-bottom: 1px solid #eee;
            vertical-align: middle;
        }

        /* Rank column */
        .ladder-table th:first-child,
        .ladder-table td:first-child {
            padding-left: 18px;
            padding-right: 8px;
            width: 36px;
        }

        /* Team name column — left-align */
        .ladder-table th:nth-child(2),
        .ladder-table td:nth-child(2) {
            text-align: left;
            padding-left: 14px;
            padding-right: 20px;
        }

        .ladder-table th {
            background: #f8f8f8;
            font-weight: 700;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #999;
        }

        .ladder-table tbody tr:hover {
            background: #f9f9f9;
        }

        .team-name {
            font-weight: 600;
            color: #222;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .team-color-dot {
            width: 14px;
            height: 14px;
            border-radius: 3px;
            flex-shrink: 0;
        }

        .stat-number {
            font-weight: 600;
            color: #555;
            font-size: 14px;
        }

        /* Pts column gets special treatment */
        .ladder-pts {
            font-size: 17px;
            font-weight: 800;
            color: #e63333;
        }

        /* ============ TEAMS PAGE ============ */
        .teams-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            align-items: start;
        }

        .squad-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.07);
            overflow: hidden;
            transition: box-shadow 0.2s ease, transform 0.2s ease;
        }

        .squad-card:hover {
            box-shadow: 0 8px 28px rgba(0,0,0,0.13);
            transform: translateY(-2px);
        }

        .squad-header {
            padding: 14px 18px 13px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid #f0f0f0;
        }

        .squad-name {
            font-size: 17px;
            font-weight: 800;
            letter-spacing: -0.3px;
        }

        .squad-count {
            font-size: 10px;
            font-weight: 700;
            color: #aaa;
            letter-spacing: 0.8px;
            text-transform: uppercase;
        }

        .squad-body { padding: 0; }

        .div-section { border-bottom: 1px solid #f4f4f4; }
        .div-section:last-child { border-bottom: none; }

        .div-label {
            padding: 6px 18px 5px;
            font-size: 9px;
            font-weight: 800;
            letter-spacing: 1.4px;
            text-transform: uppercase;
            color: #bbb;
            background: #fafafa;
            border-bottom: 1px solid #f0f0f0;
        }

        .fighter-row {
            display: flex;
            align-items: center;
            padding: 6px 18px;
            gap: 9px;
            border-bottom: 1px solid #f9f9f9;
            transition: background 0.12s;
        }
        .fighter-row:last-child { border-bottom: none; }
        .fighter-row:hover { background: #f7f7f7; }

        .f-flag { font-size: 13px; flex-shrink: 0; width: 20px; line-height: 1; }

        /* ── fighter info block ── */
        .f-info {
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: 3px;
        }

        .f-name {
            font-size: 12.5px;
            font-weight: 600;
            color: #1a1a1a;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            line-height: 1.25;
        }

        .f-meta {
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 3px;
        }

        .rd-badge {
            font-size: 9px;
            font-weight: 700;
            color: #aaa;
            background: #f2f2f2;
            padding: 2px 5px;
            border-radius: 3px;
            flex-shrink: 0;
            letter-spacing: 0.2px;
        }

        .f-pts-badge {
            font-size: 9.5px;
            font-weight: 700;
            color: #bbb;
            text-align: center;
            justify-self: center;
            padding: 2px 4px;
        }
        .f-pts-badge.has-pts {
            color: #16a34a;
            background: #f0fdf4;
            padding: 2px 6px;
            border-radius: 3px;
            text-align: center;
        }

        .f-date-badge {
            font-size: 9px;
            font-weight: 700;
            color: #2563eb;
            background: #eff6ff;
            padding: 2px 5px;
            border-radius: 3px;
            white-space: nowrap;
            justify-self: end;
        }
        .f-date-badge.empty {
            background: transparent;
            visibility: hidden;
            pointer-events: none;
            padding: 2px 5px;
        }

        /* ── FIGHTER AVATAR (Teams page) ── */
        .fighter-avatar-wrap {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            overflow: hidden;
            background: #f0f0f0;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            border: 2px solid #e8e8e8;
            transition: border-color 0.2s;
        }
        .fighter-row:hover .fighter-avatar-wrap { border-color: #ccc; }
        .fighter-avatar-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
        .fighter-avatar-wrap .avatar-fallback { line-height: 1; }

        /* ── FIGHTER PORTRAIT (H2H cards — schedule page) ── */
        .h2h-fighter-photo-wrap {
            width: 78px;
            height: 78px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid #ccc;
            background: #e8e8e8;
            margin: 0 auto 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .h2h-fighter-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
        .h2h-fighter-photo-wrap .photo-fallback { font-size: 30px; line-height: 1; }

        /* ── HOME PAGE H2H FIGHT CARD ── */
        .home-fight-card {
            background: white;
            border-radius: 14px;
            margin-bottom: 14px;
            box-shadow: 0 2px 14px rgba(0,0,0,0.09);
            overflow: hidden;
            transition: transform 0.18s ease, box-shadow 0.18s ease;
        }
        .home-fight-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(0,0,0,0.13);
        }
        .home-fight-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 9px 14px 8px;
            border-bottom: 1px solid #f0f0f0;
        }
        .home-fight-poster {
            display: flex;
            align-items: stretch;
            background: #f7f7f7;
            border-top: 1px solid #efefef;
            border-bottom: 1px solid #efefef;
        }
        .home-fight-fighter {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 14px 12px 12px;
            gap: 7px;
        }
        .home-fight-portrait {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid #e0e0e0;
            background: #e8e8e8;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .home-fight-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
        .home-fight-portrait .portrait-fallback { font-size: 36px; line-height: 1; }
        .home-fight-fighter-name {
            color: #1a1a1a;
            font-weight: 700;
            font-size: 12.5px;
            text-align: center;
            line-height: 1.3;
        }
        .home-fight-vs-col {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 6px;
        }
        .home-fight-vs-bubble {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(230,51,51,0.15);
            border: 2px solid rgba(230,51,51,0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #e63333;
            font-weight: 900;
            font-size: 11px;
        }
        .home-fight-footer {
            padding: 10px 14px;
            background: white;
        }
        .home-fight-detail { font-size: 12.5px; color: #555; }

        /* keep old selectors alive so non-teams code doesn't break */
        .team-card { display: none; }
        .team-header { display: none; }
        .team-body { display: none; }
        .team-roster-item {
            background: #f8f8f8;
            padding: 10px 12px;
            border-radius: 4px;
            font-size: 13px;
            color: #555;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .team-roster-item.highlighted {
            background: #e3f2fd;
            color: #1565c0;
            font-weight: 500;
        }

        .fighter-belt {
            font-size: 12px;
            color: #666;
            margin-top: 2px;
        }

        /* ============ RESULTS PAGE ============ */
        .results-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .results-form-section {
            background: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .results-form-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #222;
        }

        .form-section {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
            font-size: 14px;
        }

        .form-input,
        .form-select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 14px;
            font-family: inherit;
            transition: border-color 0.3s ease;
        }

        .form-input:focus,
        .form-select:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .form-checkbox {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .form-checkbox input {
            cursor: pointer;
        }

        .form-checkbox label {
            cursor: pointer;
            font-size: 14px;
            color: #555;
        }

        .submit-button {
            width: 100%;
            padding: 12px;
            background: #667eea;
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .submit-button:hover {
            background: #5568d3;
            transform: translateY(-2px);
        }

        .submit-button:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .results-history {
            background: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .results-history-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #222;
        }

        .result-item {
            padding: 15px;
            background: #f8f8f8;
            border-radius: 6px;
            margin-bottom: 12px;
            border-left: 4px solid #667eea;
        }

        .result-matchup {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .result-winner {
            color: #4caf50;
        }

        .result-details {
            font-size: 13px;
            color: #666;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 10px;
        }

        .result-detail-item {
            display: flex;
            flex-direction: column;
        }

        .result-detail-label {
            color: #999;
            font-size: 11px;
            text-transform: uppercase;
            font-weight: 600;
        }

        .result-detail-value {
            color: #333;
            font-weight: 500;
        }

        /* ============ SETUP PAGE ============ */
        .setup-page-container {
            background: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            max-width: 1000px;
        }

        .setup-page-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 30px;
            color: #222;
        }

        .setup-section {
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid #eee;
        }

        .setup-section:last-child {
            border-bottom: none;
            padding-bottom: 0;
            margin-bottom: 0;
        }

        .setup-section-title {
            font-size: 20px;
            font-weight: 700;
            color: #222;
            margin-bottom: 20px;
        }

        .league-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .info-field {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .info-label {
            font-weight: 600;
            color: #666;
            font-size: 13px;
            text-transform: uppercase;
        }

        .info-value {
            font-size: 16px;
            color: #222;
            font-weight: 500;
        }

        .info-input {
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 14px;
        }

        .teams-assignment {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .team-assignment-row {
            display: grid;
            grid-template-columns: 200px 1fr 100px;
            gap: 15px;
            align-items: end;
            padding: 15px;
            background: #f8f8f8;
            border-radius: 6px;
        }

        .team-assignment-name {
            font-weight: 600;
            color: #222;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .team-assignment-color {
            width: 12px;
            height: 12px;
            border-radius: 2px;
        }

        .team-assignment-input {
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 14px;
        }

        .team-assignment-button {
            padding: 10px 15px;
            background: #667eea;
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 13px;
        }

        .team-assignment-button:hover {
            background: #5568d3;
        }

        .team-assignment-button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* ══════════════════════════════════════════
           RECENTLY ADDED STRIP
        ══════════════════════════════════════════ */
        .ra-section {
            margin-bottom: 32px;
        }
        .ra-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 13px;
        }
        .ra-title {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 800;
            color: #111827;
            text-transform: uppercase;
            letter-spacing: 1.1px;
        }
        .ra-count-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #e63333, #ff6b6b);
            color: #fff;
            font-size: 10px;
            font-weight: 900;
            min-width: 20px;
            height: 20px;
            padding: 0 6px;
            border-radius: 10px;
            letter-spacing: 0;
        }
        .ra-scroll-outer {
            position: relative;
        }
        .ra-scroll-outer::after {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            bottom: 6px;
            width: 48px;
            background: linear-gradient(to right, transparent, #f8f8f8);
            pointer-events: none;
            z-index: 1;
        }
        .ra-track {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            padding-bottom: 8px;
            padding-right: 48px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .ra-track::-webkit-scrollbar { display: none; }

        .ra-card {
            flex-shrink: 0;
            width: 168px;
            background: #fff;
            border-radius: 13px;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.07);
            box-shadow: 0 1px 4px rgba(0,0,0,0.05), 0 4px 14px rgba(0,0,0,0.07);
            scroll-snap-align: start;
            transition: transform 0.18s ease, box-shadow 0.18s ease;
            cursor: default;
            display: flex;
            flex-direction: column;
        }
        .ra-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.08), 0 10px 28px rgba(0,0,0,0.11);
        }
        .ra-card-accent {
            height: 4px;
            flex-shrink: 0;
        }
        .ra-card-body {
            padding: 10px 12px 12px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        .ra-new-pill {
            display: inline-flex;
            align-items: center;
            gap: 3px;
            background: linear-gradient(135deg, #e63333, #ff6b6b);
            color: #fff;
            font-size: 8.5px;
            font-weight: 900;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            padding: 2px 7px;
            border-radius: 6px;
            margin-bottom: 7px;
            align-self: flex-start;
        }
        .ra-card-date {
            font-size: 10px;
            font-weight: 700;
            color: #9ca3af;
            text-transform: uppercase;
            letter-spacing: 0.7px;
            margin-bottom: 5px;
        }
        .ra-card-fight {
            font-size: 12.5px;
            font-weight: 800;
            color: #111827;
            line-height: 1.3;
            margin-bottom: 8px;
            flex: 1;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .ra-card-footer {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
            align-items: center;
            margin-top: auto;
        }
        .ra-card-team-badge {
            color: #fff;
            font-size: 9px;
            font-weight: 900;
            letter-spacing: 0.6px;
            text-transform: uppercase;
            padding: 2px 7px;
            border-radius: 5px;
        }
        .ra-card-h2h-badge {
            font-size: 9px;
            font-weight: 800;
            color: #92400e;
            background: #fef3c7;
            padding: 2px 7px;
            border-radius: 5px;
            letter-spacing: 0.4px;
            text-transform: uppercase;
        }
        .ra-card-stars {
            font-size: 11px;
            letter-spacing: 0.5px;
            line-height: 1;
        }
