        /* ── Shared utilities ───────────────────────────────────────────────── */
        .live-badge {
            display: inline-block; font-size: 0.58rem; font-weight: 800; letter-spacing: 0.1em;
            background: #e53e3e; color: #fff; border-radius: 4px;
            padding: 2px 6px; vertical-align: middle; margin-left: 6px;
            animation: livePulse 1.4s ease-in-out infinite;
        }
        @keyframes livePulse { 0%,100% { opacity:1; } 50% { opacity:0.5; } }

        /* Store expand row */
        .store-expand-row td { background: var(--bg); font-size: 0.8rem; color: var(--muted); }

        /* Store highlights grid */
        .store-highlights { grid-template-columns: repeat(4, 1fr); }
        @media (max-width: 600px) { .store-highlights { grid-template-columns: repeat(2, 1fr); } }

        /* ── Live Events Grid ────────────────────────────────────────────────── */
        .yoko-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 1.1rem;
            margin-top: 1rem;
        }

        /* Player card */
        .yoko-player-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 14px;
            overflow: hidden;
            transition: box-shadow 0.2s, transform 0.2s;
        }
        .yoko-player-card:hover {
            box-shadow: 0 8px 24px rgba(0,0,0,0.14);
            transform: translateY(-2px);
        }
        [data-theme="dark"] .yoko-player-card { background: linear-gradient(160deg, #1a2535, #1f3045); }

        /* Card header */
        .yoko-player-header {
            background: linear-gradient(135deg, var(--primary), #3d5472);
            padding: 0.85rem 1rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .yoko-player-avatar {
            width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
            border: 2px solid rgba(255,255,255,0.35);
            overflow: hidden; position: relative;
            background: rgba(255,255,255,0.1);
            display: flex; align-items: center; justify-content: center;
            font-size: 1rem; font-weight: 700; font-family: 'Cinzel', serif; color: #fff;
        }
        .yoko-player-avatar img { width: 100%; height: 100%; object-fit: cover; }
        .yoko-player-info { flex: 1; min-width: 0; }
        .yoko-player-name {
            font-family: 'Cinzel', serif;
            font-size: 1rem; font-weight: 700; color: #fff;
            display: block; margin-bottom: 0.3rem;
            white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
        }
        .yoko-player-record { display: flex; align-items: center; gap: 0.35rem; flex-wrap: wrap; }
        .yoko-w  { font-weight: 800; font-size: 0.9rem; color: #7af07a; }
        .yoko-l  { font-weight: 800; font-size: 0.9rem; color: #f07a7a; }
        .yoko-sep { color: rgba(255,255,255,0.4); font-size: 0.85rem; }
        .yoko-wr-track {
            flex: 1; min-width: 48px; max-width: 80px; height: 5px;
            background: rgba(255,255,255,0.15); border-radius: 99px; overflow: hidden;
        }
        .yoko-wr-fill { height: 100%; border-radius: 99px; transition: width 0.4s; }
        .yoko-wr-pct { font-size: 0.78rem; font-weight: 700; }

        /* Events inside a card */
        .yoko-player-events { padding: 0.85rem 1rem; display: flex; flex-direction: column; gap: 0.85rem; }
        .yoko-live-event { border-radius: 8px; background: var(--bg); border: 1px solid var(--border); padding: 0.65rem 0.8rem; }
        .yoko-live-event-title { font-weight: 700; font-size: 0.88rem; color: var(--text); margin-bottom: 0.4rem; line-height: 1.3; }
        .yoko-live-event-meta { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 0.55rem; }
        .yoko-ev-meta-pill {
            display: inline-flex; align-items: center; gap: 0.2rem;
            font-size: 0.7rem; background: var(--card); border: 1px solid var(--border);
            border-radius: 99px; padding: 2px 8px; color: var(--muted); white-space: nowrap;
        }
        .yoko-ev-meta-pill.rank-pill { border-color: var(--accent); color: var(--accent); }

        /* Round pills */
        .yoko-round-pills { display: flex; flex-wrap: wrap; gap: 0.4rem; }
        .yoko-round-pill {
            display: inline-flex; align-items: center; gap: 0.3rem;
            border-radius: 8px; padding: 0.3rem 0.55rem;
            font-size: 0.72rem; font-weight: 600;
            border: 1px solid transparent;
        }
        .yoko-round-pill.win  { background: rgba(72,199,130,0.12); border-color: rgba(72,199,130,0.4); color: var(--win); }
        .yoko-round-pill.loss { background: rgba(230,80,80,0.1);   border-color: rgba(230,80,80,0.35);  color: var(--loss); }
        .yoko-round-pill-rnd  { font-size: 0.65rem; opacity: 0.7; }
        .yoko-round-pill-res  { font-weight: 800; letter-spacing: 0.04em; }
        .yoko-round-pill-score{ font-size: 0.65rem; opacity: 0.75; }
        .yoko-round-pill-opp  { font-size: 0.68rem; color: var(--muted); font-weight: 400; max-width: 90px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

        /* Status / misc */
        .yoko-no-live { text-align: center; padding: 3rem 1rem; color: var(--muted); font-size: 0.9rem; line-height: 1.7; }
        .yoko-empty-hint { color: var(--muted); font-size: 0.82rem; padding: 0.5rem 0; }
        .yoko-status-bar { display: flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1rem; background: var(--bg); border-bottom: 1px solid var(--border); font-size: 0.82rem; color: var(--muted); flex-wrap: wrap; }
        .yoko-fetching { display: flex; align-items: center; gap: 0.5rem; color: var(--muted); font-size: 0.82rem; margin-top: 0.5rem; }
        .yoko-spinner { width: 14px; height: 14px; border: 2px solid var(--border); border-top-color: var(--accent); border-radius: 50%; animation: spin 0.7s linear infinite; display: inline-block; }
        @keyframes spin { to { transform: rotate(360deg); } }

        /* ── Hall of Fame (Competitive Titles) ──────────────────────────────── */
        .yoko-hall { display: flex; flex-direction: column; gap: 1rem; }

        /* Generic banner */
        .hof-banner {
            border-radius: 14px; overflow: hidden;
            border: 1px solid #223044;
            background: #16202B;
        }
        .hof-banner-header {
            display: flex; align-items: center; gap: 0.9rem;
            padding: 0.85rem 1.1rem;
            border-bottom: 1px solid #223044;
        }
        .hof-banner-icon { font-size: 1.6rem; line-height: 1; }
        .hof-banner-title { font-family: 'Cinzel', serif; font-size: 0.95rem; font-weight: 800; letter-spacing: 0.06em; }
        .hof-banner-sub   { font-size: 0.7rem; color: #8fa3b8; margin-top: 0.1rem; }

        /* Rei dos Piratas — ouro real */
        .hof-rei { background: linear-gradient(160deg, #3A2E00, #1E1A00); border-color: #E6C36A40; }
        .hof-rei .hof-banner-header { background: linear-gradient(90deg, #E6C36A18, transparent); border-color: #E6C36A25; }
        .hof-rei .hof-banner-title  { color: #E6C36A; }
        .hof-slots {
            display: flex; justify-content: space-around;
            padding: 1.1rem 0.75rem; gap: 0.5rem;
        }
        .hof-slot {
            display: flex; flex-direction: column; align-items: center;
            text-align: center; flex: 1; padding: 0 0.5rem;
            animation: fadeInUp 0.4s ease both;
        }
        .hof-slot-pending { opacity: 0.4; }
        @keyframes fadeInUp { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:none; } }
        .hof-year { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; color: #E6C36A; text-transform: uppercase; margin-bottom: 0.55rem; }
        .hof-avatar-wrap { position: relative; margin-bottom: 0.5rem; }
        .hof-avatar {
            width: 64px; height: 64px; border-radius: 50%;
            overflow: hidden; position: relative;
            background: #2A3441;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.3rem; font-weight: 800; font-family: 'Cinzel', serif; color: #EAEFF5;
            border: 2px solid #223044;
        }
        .hof-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
        .hof-avatar-mystery { background: #1e2a38; border-style: dashed; border-color: #223044; color: #4a6070; font-size: 1.4rem; }
        .hof-crown::before {
            content: '👑'; position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
            font-size: 1rem; z-index: 1;
        }
        .hof-slot-name { font-size: 0.78rem; font-weight: 700; color: #EAEFF5; margin-bottom: 0.2rem; }
        .hof-slot-stat { font-size: 0.68rem; color: #C9B98B; }

        /* Yonkou + Shichibukai */
        .hof-month-row { display: flex; gap: 1rem; }
        .hof-title-card {
            flex: 1; border-radius: 14px; overflow: hidden;
            background: #16202B;
        }
        .hof-title-card-header {
            display: flex; align-items: center; gap: 0.75rem;
            padding: 0.75rem 1rem;
            font-size: 1.3rem;
        }
        .hof-title-card-name { font-family: 'Cinzel', serif; font-size: 0.85rem; font-weight: 800; letter-spacing: 0.05em; }
        .hof-title-card-sub  { font-size: 0.68rem; margin-top: 0.1rem; opacity: 0.6; }

        /* Yonkou — vinho escuro */
        .hof-yonkou { background: linear-gradient(160deg, #4A0F14, #2E0A0D); border: 1px solid #8B2020; }
        .hof-yonkou .hof-title-card-header { background: linear-gradient(90deg, #F2B6B618, transparent); border-bottom: 1px solid #8B202040; color: #F2B6B6; }

        /* Shichibukai — verde petróleo */
        .hof-shichi { background: linear-gradient(160deg, #053737, #042626); border: 1px solid #1a6060; }
        .hof-shichi .hof-title-card-header { background: linear-gradient(90deg, #6FE3E318, transparent); border-bottom: 1px solid #1a606040; color: #6FE3E3; }

        .hof-rank-list { padding: 0.5rem 0; }
        .hof-rank-row {
            display: flex; align-items: center; gap: 0.6rem;
            padding: 0.4rem 1rem;
            transition: background 0.15s;
        }
        .hof-rank-row:hover { background: rgba(255,255,255,0.04); }
        .hof-rank-row.hof-rank-empty { opacity: 0.25; }
        .hof-rank-num { font-size: 0.68rem; font-weight: 700; color: #4a6070; min-width: 22px; }
        .hof-rank-avatar {
            width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
            overflow: hidden; position: relative;
            background: #2A3441;
            display: flex; align-items: center; justify-content: center;
            font-size: 0.7rem; font-weight: 700; font-family: 'Cinzel', serif; color: #EAEFF5;
        }
        .hof-rank-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
        .hof-rank-name { flex: 1; font-size: 0.8rem; font-weight: 600; color: #EAEFF5; }
        .hof-rank-wr   { font-size: 0.72rem; font-weight: 700; color: #8fa3b8; }

        /* Almirante — azul naval */
        .hof-almirante { background: linear-gradient(160deg, #0a1e38, #071428); border: 1px solid #1a4070; }
        .hof-almirante .hof-banner-header { background: linear-gradient(90deg, #4a9ef020, transparent); border-color: #1a407060; }
        .hof-almirante .hof-banner-title  { color: #7dc4ff; }
        .hof-almirante-inner {
            display: flex; align-items: center; gap: 1rem;
            padding: 1rem 1.25rem;
        }
        .hof-alm-avatar {
            width: 72px; height: 72px; border-radius: 50%; flex-shrink: 0;
            overflow: hidden; position: relative;
            background: #2A3441;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.5rem; font-weight: 800; font-family: 'Cinzel', serif; color: #EAEFF5;
            border: 2px solid #1a4070;
            box-shadow: 0 0 18px rgba(74,158,240,0.2);
        }
        .hof-alm-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
        .hof-alm-name { font-family: 'Cinzel', serif; font-size: 1.1rem; font-weight: 800; color: #7dc4ff; margin-bottom: 0.3rem; }
        .hof-alm-stat { font-size: 0.78rem; color: #8fa3b8; }
        .hof-alm-stat strong { color: #7dc4ff; }
        .hof-alm-empty { padding: 1rem 1.25rem; font-size: 0.82rem; color: #4a6070; font-style: italic; }

        /* ── Monthly History ─────────────────────────────────────────────────── */
        .hof-history-wrap {
            border-top: 1px solid #223044;
            margin-top: 0.25rem;
        }
        .hof-history-toggle {
            width: 100%; background: none; border: none; cursor: pointer;
            display: flex; align-items: center; justify-content: space-between;
            padding: 0.65rem 1rem; color: #8fa3b8; font-size: 0.78rem;
            font-family: inherit; transition: background 0.15s;
        }
        .hof-history-toggle:hover { background: rgba(255,255,255,0.04); }
        .hof-history-toggle-label { font-weight: 600; }
        .hof-history-toggle-icon { transition: transform 0.2s; }
        .hof-history-wrap.open .hof-history-toggle-icon { transform: rotate(180deg); }

        .hof-history-body {
            display: none;
            padding: 0 0 0.5rem;
            max-height: 320px;
            overflow-y: auto;
        }
        .hof-history-wrap.open .hof-history-body { display: block; }

        .hof-history-table {
            width: 100%; border-collapse: collapse; font-size: 0.75rem;
        }
        .hof-history-table thead th {
            padding: 0.35rem 1rem; text-align: left;
            font-size: 0.65rem; font-weight: 700; letter-spacing: 0.07em;
            text-transform: uppercase; color: #4a6070;
            border-bottom: 1px solid #223044;
        }
        .hof-history-table tbody tr:hover { background: rgba(255,255,255,0.03); }
        .hof-hist-month {
            padding: 0.4rem 1rem; white-space: nowrap;
            font-size: 0.72rem; font-weight: 600; color: #8fa3b8;
            vertical-align: top;
        }
        .hof-hist-names {
            padding: 0.35rem 0.5rem 0.35rem 0;
            vertical-align: top;
        }
        .hof-hist-chip {
            display: inline-block; margin: 2px 3px 2px 0;
            padding: 0.15rem 0.5rem; border-radius: 999px;
            font-size: 0.68rem; font-weight: 600; border: 1px solid;
        }
        .yonkou-chip { border-color: #F2B6B650; color: #F2B6B6; background: #F2B6B610; }
        .shichi-chip { border-color: #6FE3E350; color: #6FE3E3; background: #6FE3E310; }

        @media (max-width: 600px) {
            .hof-month-row { flex-direction: column; }
            .hof-slots { padding: 0.75rem 0.25rem; }
            .hof-avatar { width: 52px; height: 52px; font-size: 1rem; }
        }

        /* ── Hall of Fame — Light Mode overrides ────────────────────────────── */
        :root .hof-banner {
            background: #FFFFFF;
            border-color: #E1DDD6;
        }
        :root .hof-banner-header {
            border-color: #D6D1C7;
        }
        :root .hof-banner-sub { color: #5A6573; }

        /* Rei dos Piratas — ouro premium claro */
        :root .hof-rei { background: linear-gradient(160deg, #F6E8B1, #E8D38A); border-color: #C6A84F60; }
        :root .hof-rei .hof-banner-header { background: linear-gradient(90deg, #9A7B1912, transparent); border-color: #C6A84F40; }
        :root .hof-rei .hof-banner-title  { color: #9A7B19; }
        :root .hof-year  { color: #9A7B19; }
        :root .hof-slot-stat { color: #6F5F2A; }

        /* Avatares — neutro claro */
        :root .hof-avatar {
            background: #D9DEE3;
            color: #2C3440;
            border-color: #C6CACE;
        }
        :root .hof-avatar-mystery { background: #E8ECF0; border-color: #C6CACE; color: #8A96A3; }
        :root .hof-slot-name  { color: #1F2933; }
        :root .hof-rank-name  { color: #1F2933; }
        :root .hof-rank-num   { color: #8A96A3; }
        :root .hof-rank-wr    { color: #5A6573; }
        :root .hof-rank-avatar { background: #D9DEE3; color: #2C3440; }
        :root .hof-rank-row:hover { background: rgba(0,0,0,0.03); }
        :root .hof-rank-row.hof-rank-empty { opacity: 0.35; }

        /* Yonkou — vinho dessaturado claro */
        :root .hof-title-card { background: #FFFFFF; border: 1px solid #E1DDD6; }
        :root .hof-yonkou { background: #F4E6E6; border-color: #7A1F2640; }
        :root .hof-yonkou .hof-title-card-header { background: linear-gradient(90deg, #7A1F2610, transparent); border-bottom: 1px solid #7A1F2625; color: #7A1F26; }

        /* Shichibukai — oceânico sofisticado */
        :root .hof-shichi { background: #E6F3F2; border-color: #0F5C5C40; }
        :root .hof-shichi .hof-title-card-header { background: linear-gradient(90deg, #0F5C5C10, transparent); border-bottom: 1px solid #0F5C5C25; color: #0F5C5C; }

        /* Almirante — azul naval claro */
        :root .hof-almirante { background: #EAF1F8; border-color: #1A5FB440; }
        :root .hof-almirante .hof-banner-header { background: linear-gradient(90deg, #1A5FB410, transparent); border-color: #1A5FB430; }
        :root .hof-almirante .hof-banner-title { color: #1A4F8A; }
        :root .hof-alm-avatar {
            background: #D9DEE3;
            color: #2C3440;
            border-color: #1A5FB440;
            box-shadow: 0 0 14px rgba(26,95,180,0.12);
        }
        :root .hof-alm-name  { color: #1A4F8A; }
        :root .hof-alm-stat  { color: #5A6573; }
        :root .hof-alm-stat strong { color: #1A4F8A; }
        :root .hof-alm-empty { color: #8A96A3; }

        /* History section */
        :root .hof-history-wrap  { border-top-color: #D6D1C7; }
        :root .hof-history-toggle { color: #5A6573; }
        :root .hof-history-toggle:hover { background: rgba(0,0,0,0.03); }
        :root .hof-history-table thead th { color: #8A96A3; border-color: #D6D1C7; }
        :root .hof-history-table tbody tr:hover { background: rgba(0,0,0,0.02); }
        :root .hof-hist-month { color: #5A6573; }
        :root .yonkou-chip { border-color: #7A1F2640; color: #7A1F26; background: #7A1F2610; }
        :root .shichi-chip { border-color: #0F5C5C40; color: #0F5C5C; background: #0F5C5C10; }
