/* ── PAGE HEADER ── */
        .fighters-page-header {
            background: #000;
            padding: 60px 0 40px;
            text-align: center;
            border-bottom: 1px solid #1a1a1a;
        }
        .fighters-page-header h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 900;
            letter-spacing: 2px;
            color: #fff;
            text-transform: uppercase;
            margin: 0 0 10px;
        }
        .fighters-page-header p {
            color: #888;
            font-size: 1rem;
            margin: 0 0 16px;
        }

        /* ── STATUS BADGE ── */
        .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 5px 16px;
            border-radius: 20px;
            font-size: .72rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }
        .status-badge .dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: currentColor;
        }
        .status-badge.live {
            background: rgba(34,197,94,.12);
            color: #22c55e;
            border: 1px solid rgba(34,197,94,.3);
        }
        .status-badge.live .dot { animation: blink 1.4s ease-in-out infinite; }
        .status-badge.demo {
            background: rgba(150,150,150,.08);
            color: #666;
            border: 1px solid #222;
        }
        @keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }

        /* ── SEARCH BAR ── */
        .search-row {
            display: flex;
            gap: 10px;
            align-items: center;
            margin: 32px 0 28px;
        }
        .search-input {
            flex: 1;
            background: #111;
            border: 1px solid #2a2a2a;
            border-radius: 30px;
            color: #fff;
            padding: 12px 22px;
            font-size: .95rem;
            outline: none;
            transition: border-color .2s;
        }
        .search-input:focus { border-color: #e00; }
        .search-input::placeholder { color: #444; }
        .btn-search {
            background: #e00;
            color: #fff;
            border: none;
            border-radius: 30px;
            padding: 11px 26px;
            font-weight: 700;
            font-size: .85rem;
            text-transform: uppercase;
            letter-spacing: .5px;
            cursor: pointer;
            white-space: nowrap;
            transition: background .2s;
        }
        .btn-search:hover { background: #c00; }
        .btn-clear {
            color: #666;
            font-size: .85rem;
            text-decoration: none;
            white-space: nowrap;
        }
        .btn-clear:hover { color: #aaa; }

        /* ── GRID ── */
        .fighters-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 22px;
            padding-bottom: 60px;
        }

        /* ── FIGHTER CARD ── */
        .fighter-card {
            background: #111;
            border: 1px solid #1e1e1e;
            border-radius: 14px;
            overflow: hidden;
            transition: border-color .25s, transform .2s;
        }
        .fighter-card:hover {
            border-color: #e00;
            transform: translateY(-3px);
        }

        /* Card head */
        .fc-head {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 20px 20px 14px;
        }
        .fc-avatar {
            width: 56px;
            height: 56px;
            min-width: 56px;
            border-radius: 50%;
            background: #e00;
            color: #fff;
            font-size: 1.2rem;
            font-weight: 900;
            display: flex;
            align-items: center;
            justify-content: center;
            letter-spacing: 1px;
        }
        .fc-name {
            font-size: 1.05rem;
            font-weight: 800;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: .5px;
            line-height: 1.2;
        }
        .fc-alias {
            font-size: .82rem;
            color: #e00;
            font-style: italic;
            margin: 2px 0 5px;
        }
        .fc-division {
            display: inline-block;
            background: #e00;
            color: #fff;
            font-size: .62rem;
            font-weight: 800;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 3px 10px;
            border-radius: 20px;
        }

        /* Stats row */
        .fc-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            border-top: 1px solid #1e1e1e;
            border-bottom: 1px solid #1e1e1e;
        }
        .fc-stat {
            text-align: center;
            padding: 14px 6px;
            border-right: 1px solid #1e1e1e;
        }
        .fc-stat:last-child { border-right: none; }
        .fc-stat-val {
            font-size: 1.6rem;
            font-weight: 900;
            color: #fff;
            line-height: 1;
        }
        .fc-stat-val.wins   { color: #22c55e; }
        .fc-stat-val.losses { color: #ef4444; }
        .fc-stat-val.draws  { color: #94a3b8; }
        .fc-stat-val.kos    { color: #e00; }
        .fc-stat-lbl {
            font-size: .62rem;
            color: #555;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-top: 4px;
        }

        /* Meta pills */
        .fc-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            padding: 14px 20px;
        }
        .fc-pill {
            background: rgba(255,255,255,.04);
            border: 1px solid #222;
            border-radius: 20px;
            color: #aaa;
            font-size: .72rem;
            padding: 3px 10px;
            white-space: nowrap;
        }
        .fc-pill.record {
            color: #f5c518;
            border-color: rgba(245,197,24,.25);
            background: rgba(245,197,24,.06);
        }

        /* Profile link */
        .fc-link {
            display: block;
            margin: 0 20px 20px;
            background: #e00;
            color: #fff;
            text-align: center;
            text-decoration: none;
            font-weight: 800;
            font-size: .82rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding: 13px;
            border-radius: 30px;
            transition: background .2s;
        }
        .fc-link:hover { background: #c00; color: #fff; }

        /* Empty state */
        .empty-state {
            grid-column: 1 / -1;
            text-align: center;
            padding: 80px 20px;
            color: #444;
        }
        .empty-state i { font-size: 2.5rem; display: block; margin-bottom: 14px; }
        .empty-state p { margin: 0; font-size: 1rem; }

        /* ── FILTER SELECT ── */
        .filter-select {
            background: #111;
            border: 1px solid #2a2a2a;
            border-radius: 30px;
            color: #aaa;
            padding: 11px 18px;
            font-size: .85rem;
            outline: none;
            cursor: pointer;
            transition: border-color .2s;
            appearance: none;
            -webkit-appearance: none;
            padding-right: 34px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23555'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
        }
        .filter-select:focus { border-color: #e00; }
        .filter-select option { background: #1a1a1a; color: #ccc; }

        /* ── ACTIVE FILTERS BAR ── */
        .active-filters {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 16px;
        }
        .filter-chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(229,9,20,.12);
            border: 1px solid rgba(229,9,20,.3);
            color: #e00;
            border-radius: 20px;
            padding: 3px 12px;
            font-size: .72rem;
            font-weight: 700;
            letter-spacing: .5px;
        }
        .filter-chip button {
            background: none;
            border: none;
            color: inherit;
            cursor: pointer;
            padding: 0;
            font-size: .8rem;
            line-height: 1;
        }
