    .ark-post-reactions {
        margin: 18px 0;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,.05);
        border-radius: 12px;
        padding: 32px 20px;
    }
    .ark-post-reactions-head {
        text-align: center;
        margin-bottom: 24px;
    }
    .ark-post-reactions-title {
        margin: 0;
        color: #fff;
        font-size: 18px;
        font-weight: 400;
        line-height: 1.35;
    }
    .ark-post-reactions-total {
        margin-top: 8px;
        color: #8e9098;
        font-size: 14px;
        font-weight: 700;
    }
    .ark-post-reactions-grid {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-wrap: nowrap;
        gap: 28px;
    }
    .ark-post-reactions .ark-react-btn {
        appearance: none;
        border: 0;
        background: transparent;
        padding: 8px 6px;
        min-width: 74px;
        min-height: 96px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        color: #8e9098;
        font-family: inherit;
        cursor: pointer;
        border-radius: 10px;
        transition: transform .2s ease, background .2s ease, color .2s ease;
    }
    .ark-post-reactions .ark-react-btn:hover {
        transform: translateY(-3px) scale(1.05);
        color: #fff;
        background: rgba(255,255,255,.04);
    }
    .ark-post-reactions .ark-react-btn.reacted {
        color: #fff;
        background: rgba(59,130,246,.14);
        box-shadow: inset 0 0 0 1px rgba(59,130,246,.32);
    }
    .ark-post-reactions .ark-react-emoji {
        font-size: 38px;
        line-height: 1;
    }
    .ark-post-reactions .ark-react-count {
        margin-top: 8px;
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        line-height: 1.2;
    }
    .ark-post-reactions .ark-react-name {
        margin-top: 2px;
        color: #8e9098;
        font-size: 12px;
        font-weight: 500;
        line-height: 1.2;
    }
    .ark-post-reactions .ark-react-btn.reacted .ark-react-name,
    .ark-post-reactions .ark-react-btn:hover .ark-react-name {
        color: #c7c9cf;
    }

    @media (max-width: 768px) {
        .ark-post-reactions {
            padding: 14px 10px;
        }
        .ark-post-reactions-head {
            margin-bottom: 10px;
        }
        .ark-post-reactions-title {
            font-size: 13px;
        }
        .ark-post-reactions-total {
            font-size: 11px;
            margin-top: 4px;
        }
        .ark-post-reactions-grid {
            display: flex;
            flex-wrap: nowrap;
            justify-content: center;
            gap: 6px;
        }
        .ark-post-reactions .ark-react-btn {
            width: auto;
            min-width: 0;
            min-height: 0;
            padding: 6px 8px;
            border-radius: 8px;
            gap: 2px;
        }
        .ark-post-reactions .ark-react-emoji {
            font-size: 20px;
        }
        .ark-post-reactions .ark-react-count {
            margin-top: 2px;
            font-size: 11px;
        }
        .ark-post-reactions .ark-react-name {
            font-size: 9px;
            margin-top: 1px;
        }
    }

    /* ══════════════════════════════════════════════
       LIGHT MODE OVERRIDES — Reactions Bar
    ══════════════════════════════════════════════ */
    [data-theme="light"] .ark-post-reactions { background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.06); }
    [data-theme="light"] .ark-post-reactions-title { color: var(--ac-text); }
    [data-theme="light"] .ark-post-reactions-total { color: rgba(0,0,0,0.45); }
    [data-theme="light"] .ark-post-reactions .ark-react-btn { color: rgba(0,0,0,0.45); }
    [data-theme="light"] .ark-post-reactions .ark-react-btn:hover { color: var(--ac-text); background: rgba(0,0,0,0.04); }
    [data-theme="light"] .ark-post-reactions .ark-react-btn.reacted { color: var(--ac-text); background: rgba(37,99,235,0.08); box-shadow: inset 0 0 0 1px rgba(37,99,235,0.25); }
    [data-theme="light"] .ark-post-reactions .ark-react-count { color: var(--ac-text); }
    [data-theme="light"] .ark-post-reactions .ark-react-name { color: rgba(0,0,0,0.45); }
    [data-theme="light"] .ark-post-reactions .ark-react-btn.reacted .ark-react-name,
    [data-theme="light"] .ark-post-reactions .ark-react-btn:hover .ark-react-name { color: rgba(0,0,0,0.65); }
