/* ============================================================
   BONUS HUNT — Luvreizel design (navy + orange)
   Préfixe : bh-     scopé sous body.theme-luv
   Tokens d'accent : --luv-orange / --luv-orange-2 / --luv-orange-deep
   ============================================================ */

/* ── Hero ─────────────────────────────────────────── */
body.theme-luv .bh-hero {
    position: relative;
    isolation: isolate;
    padding: 70px 24px 38px;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
}
body.theme-luv .bh-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse at center,
                rgba(255, 138, 31, 0.25) 0%,
                rgba(255, 138, 31, 0.08) 30%,
                transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
body.theme-luv .bh-hero-content {
    position: relative;
    z-index: 1;
    max-width: 880px;
}
body.theme-luv .bh-title {
    font-family: var(--luv-font-display);
    font-size: clamp(34px, 6vw, 56px);
    font-weight: 400;
    color: var(--luv-text);
    margin: 0 0 12px;
    letter-spacing: 0.5px;
    line-height: 1.05;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
}
body.theme-luv .bh-title .text-accent { color: var(--luv-orange); }
body.theme-luv .bh-subtitle {
    color: var(--luv-text-dim);
    font-size: 15px;
    font-weight: 500;
    max-width: 720px;
    margin: 0 auto 16px;
    line-height: 1.55;
}
body.theme-luv .bh-hero-chips {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}
body.theme-luv .bh-hero-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: var(--luv-r-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--luv-line-strong);
    color: var(--luv-text-dim);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
body.theme-luv .bh-btn--cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--luv-font-heading);
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 44px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--luv-orange), var(--luv-orange-deep));
    color: #1a0a00;
    box-shadow: 0 10px 28px rgba(255, 138, 31, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
body.theme-luv .bh-btn--cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(255, 138, 31, 0.45);
}

/* ── Vue Liste ────────────────────────────────────── */
body.theme-luv .bh-listing {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 24px;
}
body.theme-luv .bh-listing-tabs {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 18px;
    padding: 4px;
    background: var(--luv-card);
    border: 1px solid var(--luv-line);
    border-radius: var(--luv-r-md);
    width: max-content;
    max-width: 100%;
    flex-wrap: wrap;
}
body.theme-luv .bh-listing-tab {
    position: relative;
    background: transparent;
    border: none;
    color: var(--luv-text-dim);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: calc(var(--luv-r-md) - 4px);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s ease, color 0.2s ease;
    font-family: var(--luv-font-body);
}
body.theme-luv .bh-listing-tab:hover {
    color: var(--luv-text);
    background: rgba(255, 138, 31, 0.08);
}
body.theme-luv .bh-listing-tab.active {
    color: var(--luv-orange-2);
    background: rgba(255, 138, 31, 0.15);
    box-shadow: inset 0 0 0 1px rgba(255, 138, 31, 0.35);
}
body.theme-luv .bh-listing-tab-count {
    font-size: 11px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--luv-text-mute);
    min-width: 20px;
    text-align: center;
}
body.theme-luv .bh-listing-tab.active .bh-listing-tab-count {
    background: rgba(255, 138, 31, 0.25);
    color: var(--luv-orange-2);
}
body.theme-luv .bh-listing-toolbar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}
body.theme-luv .bh-listing-search-wrap {
    position: relative;
    flex: 1;
    min-width: 220px;
}
body.theme-luv .bh-listing-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--luv-text-mute);
    pointer-events: none;
}
body.theme-luv .bh-listing-search {
    width: 100%;
    padding: 11px 16px 11px 40px;
    background: var(--luv-card);
    border: 1px solid var(--luv-line-strong);
    border-radius: var(--luv-r-md);
    color: var(--luv-text);
    font-size: 14px;
    font-family: var(--luv-font-body);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
body.theme-luv .bh-listing-search:focus {
    border-color: var(--luv-orange);
    box-shadow: 0 0 0 3px rgba(255, 138, 31, 0.18);
}
body.theme-luv .bh-listing-search::placeholder {
    color: var(--luv-text-mute);
}
body.theme-luv .bh-listing-sort {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}
body.theme-luv .bh-listing-sort-label {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--luv-text-mute);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-right: 4px;
}
body.theme-luv .bh-hunt-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
body.theme-luv .bh-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 22px;
}
body.theme-luv .bh-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    background: var(--luv-card);
    border: 1px solid var(--luv-line-strong);
    border-radius: var(--luv-r-md);
    color: var(--luv-text-dim);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--luv-font-body);
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
body.theme-luv .bh-page-btn:hover:not(:disabled):not(.active) {
    border-color: var(--luv-orange);
    color: var(--luv-orange);
}
body.theme-luv .bh-page-btn.active {
    background: var(--luv-orange);
    border-color: var(--luv-orange);
    color: #1a0a00;
}
body.theme-luv .bh-page-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}
body.theme-luv .bh-hunt-card {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--luv-card);
    border: 1px solid var(--luv-line-strong);
    border-radius: var(--luv-r-lg);
    padding: 20px 28px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
body.theme-luv .bh-hunt-card:hover {
    border-color: rgba(255, 138, 31, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
body.theme-luv .bh-hunt-card-left {
    flex: 0 0 280px;
    min-width: 0;
}
body.theme-luv .bh-hunt-card-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: var(--luv-r-sm);
    background: rgba(41, 200, 230, 0.18);
    color: #29c8e6;
    margin-bottom: 6px;
}
body.theme-luv .bh-hunt-card-badge.bh-badge--done {
    background: rgba(255, 138, 31, 0.16);
    color: var(--luv-orange-2);
}
body.theme-luv .bh-hunt-card-name {
    font-family: var(--luv-font-display);
    font-weight: 800;
    font-size: 17px;
    color: var(--luv-text);
    margin: 0 0 4px;
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
body.theme-luv .bh-hunt-card-date {
    font-size: 12px;
    color: var(--luv-text-mute);
    font-weight: 500;
}
body.theme-luv .bh-badge-private {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 700;
    color: var(--luv-text-mute);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--luv-line-strong);
    border-radius: var(--luv-r-sm);
    padding: 2px 8px;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
body.theme-luv .bh-hunt-card-creator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--luv-text-dim);
    margin-top: 2px;
}
body.theme-luv .bh-hunt-card-avatar {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
}
body.theme-luv .bh-hunt-card-stats {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 32px;
    min-width: 0;
}
body.theme-luv .bh-hunt-card-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
body.theme-luv .bh-hunt-card-stat-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--luv-text-mute);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
body.theme-luv .bh-hunt-card-stat-value {
    font-family: var(--luv-font-mono);
    font-size: 16px;
    font-weight: 700;
    color: var(--luv-text);
    white-space: nowrap;
}
body.theme-luv .bh-hunt-card-stat-value.positive { color: var(--luv-green); }
body.theme-luv .bh-hunt-card-stat-value.negative { color: var(--luv-red); }
body.theme-luv .bh-hunt-card-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    align-items: center;
}
body.theme-luv .bh-btn--card {
    padding: 10px 26px;
    font-size: 13px;
    font-weight: 700;
    border-radius: var(--luv-r-md);
}
body.theme-luv .bh-btn.bh-btn--card-icon {
    width: 38px;
    min-width: 38px;
    height: 38px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--luv-r-md);
}
body.theme-luv .bh-empty-listing {
    text-align: center;
    padding: 60px 24px;
    color: var(--luv-text-mute);
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
body.theme-luv .bh-empty-listing p {
    font-size: 14px;
    max-width: 400px;
    margin: 12px auto 0;
}

/* ── En-tête vue détail ──────────────────────────── */
body.theme-luv .bh-detail-header {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto 28px;
    /* 110px top : laisse passer la navbar pill fixe (top:22px + 70px). */
    padding: 110px 24px 0;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
body.theme-luv .bh-detail-title-wrap {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-family: var(--luv-font-heading);
    font-weight: 800;
}
body.theme-luv .bh-detail-title {
    font-family: var(--luv-font-display);
    font-size: 26px;
    color: var(--luv-text);
    margin: 0;
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
body.theme-luv .bh-detail-creator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--luv-text-dim);
    font-weight: 500;
}
body.theme-luv .bh-detail-creator-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}
body.theme-luv .bh-detail-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

/* ── Cartes statistiques ─────────────────────────── */
body.theme-luv .bh-stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    max-width: 1200px;
    margin: 0 auto 28px;
    padding: 0 24px;
}
body.theme-luv .bh-stat-card {
    background: var(--luv-card);
    border: 1px solid var(--luv-line-strong);
    border-radius: var(--luv-r-lg);
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
body.theme-luv .bh-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
body.theme-luv .bh-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--luv-r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(255, 138, 31, 0.14);
    color: var(--luv-orange);
}
body.theme-luv .bh-stat-icon--cost      { background: rgba(245,158,11,0.14);  color: #F59E0B; }
body.theme-luv .bh-stat-icon--win       { background: rgba(34,211,238,0.14);  color: #22d3ee; }
body.theme-luv .bh-stat-icon--profit    { background: rgba(20,196,106,0.14);  color: var(--luv-green); }
body.theme-luv .bh-stat-icon--breakeven { background: rgba(167,139,250,0.14); color: #a78bfa; }
body.theme-luv .bh-stat-icon--be-evol   { background: rgba(236,72,153,0.14);  color: #ec4899; }
body.theme-luv .bh-stat-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
body.theme-luv .bh-stat-label {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--luv-text-mute);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}
body.theme-luv .bh-stat-sublabel {
    font-size: 10px;
    font-weight: 500;
    color: var(--luv-text-mute);
    opacity: 0.75;
    margin-top: -2px;
}
body.theme-luv .bh-stat-value {
    font-family: var(--luv-font-mono);
    font-size: 20px;
    font-weight: 700;
    color: var(--luv-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
body.theme-luv .bh-stat-value.positive { color: var(--luv-green); }
body.theme-luv .bh-stat-value.negative { color: var(--luv-red); }
body.theme-luv .bh-stat-editable {
    cursor: pointer;
    transition: color 0.2s ease;
    position: relative;
}
body.theme-luv .bh-stat-editable:hover { color: var(--luv-orange); }
body.theme-luv .bh-stat-editable:hover::after {
    content: '✎';
    font-size: 12px;
    margin-left: 4px;
}
body.theme-luv .bh-row-btn--disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* ── Barre d'actions ─────────────────────────────── */
body.theme-luv .bh-actions-bar {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto 16px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
body.theme-luv .bh-actions-right {
    margin-left: auto;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* ── Boutons ──────────────────────────────────────── */
body.theme-luv .bh-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--luv-font-body);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: var(--luv-r-md);
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease,
                background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}
body.theme-luv .bh-btn--primary {
    background: var(--luv-orange);
    color: #1a0a00;
    box-shadow: 0 6px 16px rgba(255, 138, 31, 0.28);
}
body.theme-luv .bh-btn--primary:hover {
    background: var(--luv-orange-2);
    box-shadow: 0 8px 22px rgba(255, 138, 31, 0.4);
    transform: translateY(-1px);
}
body.theme-luv .bh-btn--outline {
    background: transparent;
    border: 1px solid var(--luv-line-strong);
    color: var(--luv-text-dim);
}
body.theme-luv .bh-btn--outline:hover {
    border-color: var(--luv-orange);
    color: var(--luv-orange);
    background: rgba(255, 138, 31, 0.08);
}
body.theme-luv .bh-btn--danger {
    background: transparent;
    border: 1px solid rgba(230, 57, 70, 0.4);
    color: var(--luv-red);
}
body.theme-luv .bh-btn--danger:hover {
    background: rgba(230, 57, 70, 0.12);
}
body.theme-luv .bh-btn--success {
    background: linear-gradient(135deg, #14c46a, #0f9a52);
    color: #04200f;
    border: none;
    box-shadow: 0 6px 16px rgba(20, 196, 106, 0.28);
}
body.theme-luv .bh-btn--success:hover {
    box-shadow: 0 8px 22px rgba(20, 196, 106, 0.4);
    transform: translateY(-1px);
}
body.theme-luv .bh-btn--warning {
    background: transparent;
    border: 1px solid rgba(255, 138, 31, 0.55);
    color: var(--luv-orange);
}
body.theme-luv .bh-btn--warning:hover {
    background: rgba(255, 138, 31, 0.14);
    border-color: var(--luv-orange);
    color: var(--luv-orange-2);
}

/* ── Résultat de recherche déjà pris (slot/proposition) ────────── */
.bh-game-result--taken {
    opacity: 0.5;
    cursor: not-allowed;
    position: relative;
}
.bh-game-result--taken:hover {
    background: rgba(255, 255, 255, 0.02);
}
.bh-taken-tag {
    display: inline-block;
    margin-left: 6px;
    padding: 1px 8px;
    border-radius: 999px;
    font-size: 10px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background: rgba(230, 57, 70, 0.15);
    color: var(--luv-red);
    border: 1px solid rgba(230, 57, 70, 0.3);
    font-family: var(--luv-font-body, inherit);
    vertical-align: middle;
}

/* ── Cadre « En cours » sur les cards de la liste ─────────────── */
.bh-hunt-card {
    position: relative;
}
.bh-hunt-card--active {
    border: 2px solid var(--luv-orange) !important;
    box-shadow: 0 0 0 1px rgba(255, 138, 31, 0.15),
                0 14px 38px rgba(255, 138, 31, 0.18) !important;
    background:
        radial-gradient(120% 60% at 50% -20%, rgba(255, 138, 31, 0.10), transparent 60%),
        var(--luv-card, transparent);
}
.bh-hunt-card-status-label {
    position: absolute;
    top: -12px;
    left: 18px;
    background: var(--luv-bg, #0a1428);
    padding: 2px 14px;
    border-radius: 999px;
    font-family: var(--luv-font-display, 'Bowlby One', sans-serif);
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.6;
    color: var(--luv-orange);
    border: 1.5px solid var(--luv-orange);
    text-shadow: 0 0 12px rgba(255, 138, 31, 0.45);
    pointer-events: none;
    z-index: 2;
}
@media (max-width: 640px) {
    .bh-hunt-card-status-label {
        left: 12px;
        font-size: 11px;
        padding: 2px 10px;
    }
}
body.theme-luv .bh-btn--full {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 14px;
    margin-top: 8px;
}
body.theme-luv .bh-btn--small {
    padding: 6px 12px;
    font-size: 12px;
    gap: 5px;
}
body.theme-luv .bh-chat-trigger-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: rgba(255, 138, 31, 0.18);
    color: var(--luv-orange-2);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

/* ── Barre de tri ────────────────────────────────── */
body.theme-luv .bh-sort-bar {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto 16px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
body.theme-luv .bh-sort-label {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--luv-text-mute);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
body.theme-luv .bh-sort-btn {
    background: var(--luv-card);
    border: 1px solid var(--luv-line);
    color: var(--luv-text-dim);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    font-family: var(--luv-font-body);
}
body.theme-luv .bh-sort-btn:hover,
body.theme-luv .bh-sort-btn.active {
    background: rgba(255, 138, 31, 0.12);
    border-color: rgba(255, 138, 31, 0.45);
    color: var(--luv-orange-2);
}

/* ── Barre de progression ────────────────────────── */
body.theme-luv .bh-progress-wrap {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}
body.theme-luv .bh-progress-bar {
    width: 120px;
    height: 6px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    overflow: hidden;
}
body.theme-luv .bh-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--luv-orange-deep), var(--luv-orange));
    border-radius: 3px;
    transition: width 0.4s ease;
}
body.theme-luv .bh-progress-text {
    font-size: 11px;
    font-weight: 700;
    color: var(--luv-text-mute);
    white-space: nowrap;
}

/* ── Tableau ─────────────────────────────────────── */
body.theme-luv .bh-table-wrap {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 24px;
}
body.theme-luv .bh-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--luv-card);
    border: 1px solid var(--luv-line-strong);
    border-radius: var(--luv-r-lg);
    overflow: hidden;
}
body.theme-luv .bh-table thead th {
    background: rgba(0, 0, 0, 0.2);
    color: var(--luv-text-mute);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--luv-line-strong);
}
body.theme-luv .bh-table tbody tr { transition: background 0.2s ease; }
body.theme-luv .bh-table tbody tr:hover {
    background: rgba(255, 138, 31, 0.05);
}
body.theme-luv .bh-table tbody td {
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--luv-text);
    border-bottom: 1px solid var(--luv-line);
    vertical-align: middle;
}
body.theme-luv .bh-table tbody tr:last-child td { border-bottom: none; }
body.theme-luv .bh-slot-order-cell {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
body.theme-luv .bh-drag-handle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border-radius: 8px;
    border: 1px solid rgba(255, 138, 31, 0.32);
    background: rgba(255, 138, 31, 0.12);
    color: var(--luv-orange-2);
    cursor: grab;
    user-select: none;
}
body.theme-luv .bh-drag-handle svg { pointer-events: none; }
body.theme-luv .bh-drag-handle:hover {
    background: rgba(255, 138, 31, 0.22);
    border-color: rgba(255, 138, 31, 0.5);
}
body.theme-luv .bh-drag-handle:active { cursor: grabbing; }
body.theme-luv .bh-draggable-row td:first-child { width: 92px; }
body.theme-luv .bh-draggable-row.bh-dragging { opacity: 0.45; }
body.theme-luv .bh-table tbody tr.bh-drag-over-top td {
    box-shadow: inset 0 3px 0 var(--luv-orange);
}
body.theme-luv .bh-table tbody tr.bh-drag-over-bottom td {
    box-shadow: inset 0 -3px 0 var(--luv-orange);
}

/* Ligne ouverte */
body.theme-luv .bh-table tbody tr.bh-opened {
    background: rgba(41, 200, 230, 0.06);
}
body.theme-luv .bh-table tbody tr.bh-opened td:first-child {
    box-shadow: inset 3px 0 0 #29c8e6;
}

/* Badges provider */
body.theme-luv .bh-provider-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--luv-line);
    color: var(--luv-text-dim);
}

/* Multi & gain */
body.theme-luv .bh-multi {
    font-family: var(--luv-font-mono);
    font-weight: 700;
    color: var(--luv-orange-2);
}
body.theme-luv .bh-multi.bh-pending {
    color: var(--luv-text-mute);
    font-style: italic;
    font-weight: 400;
}
body.theme-luv .bh-win {
    font-family: var(--luv-font-mono);
    font-weight: 700;
}
body.theme-luv .bh-win.positive { color: var(--luv-green); }
body.theme-luv .bh-win.negative { color: var(--luv-red); }
body.theme-luv .bh-win.bh-pending {
    color: var(--luv-text-mute);
    font-style: italic;
    font-weight: 400;
}

/* Actions tableau */
body.theme-luv .bh-row-actions { display: flex; gap: 6px; }
body.theme-luv .bh-row-btn {
    width: 32px;
    height: 32px;
    border-radius: var(--luv-r-sm);
    border: 1px solid var(--luv-line);
    background: transparent;
    color: var(--luv-text-dim);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
body.theme-luv .bh-row-btn:hover {
    background: rgba(255, 138, 31, 0.1);
    border-color: rgba(255, 138, 31, 0.4);
    color: var(--luv-orange);
}
body.theme-luv .bh-row-btn--open {
    border-color: rgba(255, 138, 31, 0.4);
    color: var(--luv-orange);
    background: rgba(255, 138, 31, 0.08);
}
body.theme-luv .bh-row-btn--open:hover { background: rgba(255, 138, 31, 0.18); }
body.theme-luv .bh-row-btn--delete:hover {
    background: rgba(230, 57, 70, 0.12);
    border-color: rgba(230, 57, 70, 0.4);
    color: var(--luv-red);
}
body.theme-luv .bh-row-btn--opened {
    border-color: rgba(41, 200, 230, 0.4);
    color: #29c8e6;
    pointer-events: none;
    opacity: 0.6;
}

/* État vide */
body.theme-luv .bh-empty {
    text-align: center;
    padding: 60px 24px;
    color: var(--luv-text-mute);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
body.theme-luv .bh-empty p { font-size: 14px; max-width: 400px; }

/* ── Status badges ───────────────────────────────── */
body.theme-luv .bh-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid transparent;
    font-family: var(--luv-font-body);
    white-space: nowrap;
}
body.theme-luv button.bh-status-badge {
    cursor: pointer;
    background: none;
    transition: filter 0.2s ease;
}
body.theme-luv button.bh-status-badge:hover { filter: brightness(1.2); }
body.theme-luv .bh-status--waiting {
    color: #f5a623;
    background: rgba(245, 166, 35, 0.12);
    border-color: rgba(245, 166, 35, 0.3);
}
body.theme-luv .bh-status--collected {
    color: var(--luv-green);
    background: rgba(20, 196, 106, 0.12);
    border-color: rgba(20, 196, 106, 0.3);
}
body.theme-luv .bh-status--opened {
    color: #29c8e6;
    background: rgba(41, 200, 230, 0.12);
    border-color: rgba(41, 200, 230, 0.3);
}
body.theme-luv .bh-bounty-tag {
    display: inline-flex;
    align-items: center;
    margin-left: 6px;
    padding: 2px 7px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffca28;
    background: rgba(255, 202, 40, 0.15);
    border: 1px solid rgba(255, 202, 40, 0.35);
    vertical-align: middle;
}

/* ── Modal ───────────────────────────────────────── */
body.theme-luv .bh-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 10, 22, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    /* > 1000 pour passer au-dessus de la navbar pill fixe. */
    z-index: 1100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
body.theme-luv .bh-modal-overlay.active { display: flex; }
body.theme-luv .bh-modal {
    background: var(--luv-card);
    border: 1px solid var(--luv-line-strong);
    border-radius: var(--luv-r-lg);
    padding: 28px;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
    animation: bhModalIn 0.25s ease;
}
body.theme-luv .bh-modal--chat {
    max-width: 760px;
    padding: 22px;
}
@keyframes bhModalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0)    scale(1); }
}
body.theme-luv .bh-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}
body.theme-luv .bh-modal-header--chat {
    margin-bottom: 12px;
    font-family: var(--luv-font-heading);
    font-weight: 800;
}
body.theme-luv .bh-modal-header h3 {
    font-family: var(--luv-font-display);
    font-size: 20px;
    color: var(--luv-text);
    margin: 0;
    letter-spacing: 0.02em;
}
body.theme-luv .bh-modal-close {
    width: 34px;
    height: 34px;
    border-radius: var(--luv-r-sm);
    border: 1px solid var(--luv-line);
    background: transparent;
    color: var(--luv-text-dim);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
body.theme-luv .bh-modal-close:hover {
    background: rgba(230, 57, 70, 0.12);
    border-color: rgba(230, 57, 70, 0.4);
    color: var(--luv-red);
}
body.theme-luv .bh-delete-body { text-align: center; padding: 22px 0 14px; }
body.theme-luv .bh-delete-icon { margin-bottom: 14px; }
body.theme-luv .bh-delete-text {
    color: var(--luv-text-dim);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 10px;
}
body.theme-luv .bh-delete-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding-top: 8px;
}
body.theme-luv .bh-delete-actions .bh-btn { flex: 1; }

/* Recherche de slot */
body.theme-luv .bh-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}
body.theme-luv .bh-search-icon {
    position: absolute;
    left: 14px;
    color: var(--luv-text-mute);
    pointer-events: none;
}
body.theme-luv .bh-search-input {
    width: 100%;
    padding: 12px 16px 12px 40px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--luv-line);
    border-radius: var(--luv-r-md);
    color: var(--luv-text);
    font-size: 14px;
    font-family: var(--luv-font-body);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
body.theme-luv .bh-search-input:focus {
    border-color: var(--luv-orange);
    box-shadow: 0 0 0 3px rgba(255, 138, 31, 0.18);
}
body.theme-luv .bh-search-input::placeholder {
    color: var(--luv-text-mute);
    font-size: 13px;
}
body.theme-luv .bh-random-btn {
    position: absolute;
    right: 8px;
    background: var(--luv-orange);
    border: none;
    border-radius: var(--luv-r-sm);
    color: #1a0a00;
    padding: 6px 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
    z-index: 1;
}
body.theme-luv .bh-random-btn:hover { opacity: 0.85; }
body.theme-luv .bh-random-btn:disabled { opacity: 0.5; cursor: not-allowed; }
body.theme-luv .bh-search-results {
    max-height: 280px;
    overflow-y: auto;
    border: 1px solid var(--luv-line);
    border-radius: var(--luv-r-md);
    background: rgba(0, 0, 0, 0.25);
    margin-bottom: 14px;
    display: none;
}
body.theme-luv .bh-search-hint {
    padding: 20px;
    text-align: center;
    color: var(--luv-text-mute);
    font-size: 13px;
}
body.theme-luv .bh-game-result {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    cursor: pointer;
    transition: background 0.2s ease;
    border-bottom: 1px solid var(--luv-line);
}
body.theme-luv .bh-game-result:last-child { border-bottom: none; }
body.theme-luv .bh-game-result:hover { background: rgba(255, 138, 31, 0.06); }
body.theme-luv .bh-game-result img {
    width: auto;
    max-width: 56px;
    height: 38px;
    object-fit: contain;
    border-radius: var(--luv-r-sm);
    border: 1px solid var(--luv-line);
    flex-shrink: 0;
}
body.theme-luv .bh-game-placeholder {
    width: 56px;
    height: 38px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--luv-r-sm);
    border: 1px solid var(--luv-line);
    flex-shrink: 0;
}
body.theme-luv .bh-game-result-info { flex: 1; min-width: 0; }
body.theme-luv .bh-game-result-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--luv-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
body.theme-luv .bh-game-result-provider {
    font-size: 11px;
    color: var(--luv-text-mute);
    margin-top: 2px;
}
body.theme-luv .bh-selected-preview {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(255, 138, 31, 0.08);
    border: 1px solid rgba(255, 138, 31, 0.35);
    border-radius: var(--luv-r-md);
    margin-bottom: 14px;
}
body.theme-luv .bh-selected-preview img {
    width: auto;
    max-width: 72px;
    height: 48px;
    object-fit: contain;
    border-radius: var(--luv-r-sm);
    border: 1px solid var(--luv-line);
    flex-shrink: 0;
}
body.theme-luv .bh-selected-info { flex: 1; min-width: 0; }
body.theme-luv .bh-selected-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--luv-text);
}
body.theme-luv .bh-selected-provider {
    font-size: 11px;
    color: var(--luv-text-mute);
    margin-top: 2px;
}
body.theme-luv .bh-change-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--luv-line);
    border-radius: var(--luv-r-sm);
    color: var(--luv-text-dim);
    font-size: 12px;
    font-weight: 600;
    font-family: var(--luv-font-body);
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}
body.theme-luv .bh-change-btn:hover {
    border-color: rgba(230, 57, 70, 0.4);
    color: var(--luv-red);
}

/* Formulaire */
body.theme-luv .bh-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
body.theme-luv .bh-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}
body.theme-luv .bh-form-row .bh-form-group { margin-bottom: 0; }
body.theme-luv .bh-form-group label {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--luv-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
body.theme-luv .bh-form-group input,
body.theme-luv .bh-form-group select {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--luv-line-strong);
    border-radius: var(--luv-r-md);
    padding: 12px 14px;
    font-size: 14px;
    font-family: inherit;
    color: var(--luv-text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    height: 44px;
    box-sizing: border-box;
}
body.theme-luv .bh-form-group input::placeholder { color: var(--luv-text-mute); }
body.theme-luv .bh-form-group input:focus,
body.theme-luv .bh-form-group select:focus {
    border-color: var(--luv-orange);
    box-shadow: 0 0 0 3px rgba(255, 138, 31, 0.18);
}

/* Checkbox bounty */
body.theme-luv .bh-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--luv-text);
    user-select: none;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--luv-line-strong);
    border-radius: var(--luv-r-md);
    padding: 12px 14px;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
    width: 100%;
    height: 44px;
}
body.theme-luv .bh-checkbox-label:hover { border-color: var(--luv-orange); }
body.theme-luv .bh-checkbox-label input[type="checkbox"] { display: none; }
body.theme-luv .bh-checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid var(--luv-line-strong);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.04);
    transition: background 0.2s ease, border-color 0.2s ease;
    position: relative;
    flex-shrink: 0;
}
body.theme-luv .bh-checkbox-label input[type="checkbox"]:checked + .bh-checkbox-custom {
    background: var(--luv-orange);
    border-color: var(--luv-orange);
}
body.theme-luv .bh-checkbox-label input[type="checkbox"]:checked + .bh-checkbox-custom::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: solid #1a0a00;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Modal ouverture - infos slot */
body.theme-luv .bh-open-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--luv-line);
    border-radius: var(--luv-r-md);
    font-family: var(--luv-font-heading);
    font-weight: 800;
    margin-bottom: 20px;
}
body.theme-luv .bh-open-slot {
    font-family: var(--luv-font-display);
    font-size: 16px;
    color: var(--luv-text);
}
body.theme-luv .bh-open-bet {
    font-size: 13px;
    color: var(--luv-text-dim);
}
body.theme-luv .bh-open-bet strong { color: var(--luv-orange); }
body.theme-luv .bh-open-preview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 138, 31, 0.1);
    border: 1px solid rgba(255, 138, 31, 0.35);
    border-radius: var(--luv-r-md);
    padding: 14px 18px;
    margin-top: 12px;
}
body.theme-luv .bh-open-preview span {
    font-size: 13px;
    color: var(--luv-text-dim);
}
body.theme-luv .bh-open-preview strong {
    font-family: var(--luv-font-mono);
    font-size: 20px;
    font-weight: 800;
    color: var(--luv-orange);
}

/* ── Cards mobile ────────────────────────────────── */
body.theme-luv .bh-cards-mobile {
    display: none;
    flex-direction: column;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
body.theme-luv .bh-mobile-card {
    background: var(--luv-card);
    border: 1px solid var(--luv-line-strong);
    border-radius: var(--luv-r-lg);
    padding: 18px;
    transition: border-color 0.2s ease;
}
body.theme-luv .bh-mobile-card.bh-opened {
    border-color: rgba(41, 200, 230, 0.3);
    box-shadow: inset 3px 0 0 #29c8e6;
}
body.theme-luv .bh-mobile-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--luv-font-heading);
    font-weight: 800;
    margin-bottom: 12px;
    min-width: 0;
}
body.theme-luv .bh-mobile-card-name {
    font-family: var(--luv-font-display);
    font-size: 16px;
    color: var(--luv-text);
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
}
body.theme-luv .bh-mobile-card-num {
    font-size: 12px;
    font-weight: 700;
    color: var(--luv-text-mute);
    background: rgba(0, 0, 0, 0.25);
    padding: 2px 10px;
    border-radius: 999px;
}
body.theme-luv .bh-mobile-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}
body.theme-luv .bh-mobile-card-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
body.theme-luv .bh-mobile-card-item span:first-child {
    font-size: 10px;
    font-weight: 700;
    color: var(--luv-text-mute);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
body.theme-luv .bh-mobile-card-item span:last-child {
    font-family: var(--luv-font-mono);
    font-size: 14px;
    font-weight: 700;
    color: var(--luv-text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
body.theme-luv .bh-mobile-card-actions { display: flex; gap: 8px; }

/* ── Chat / Guess / Propositions ─────────────────── */
body.theme-luv .bh-chat-subtitle {
    margin: 0;
    color: var(--luv-text-dim);
    font-size: 13px;
    line-height: 1.5;
}
body.theme-luv .bh-chat-meta-bar {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: 14px;
}
body.theme-luv .bh-chat-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid var(--luv-line-strong);
    background: rgba(0, 0, 0, 0.25);
    color: var(--luv-text-mute);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}
body.theme-luv .bh-chat-messages {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--luv-line);
    border-radius: var(--luv-r-lg);
    min-height: 220px;
    max-height: 420px;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
body.theme-luv .bh-chat-empty {
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--luv-text-mute);
    font-size: 14px;
    padding: 12px;
}
body.theme-luv .bh-chat-message {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
body.theme-luv .bh-chat-message--own { flex-direction: row-reverse; }
body.theme-luv .bh-chat-avatar,
body.theme-luv .bh-chat-avatar-placeholder {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    flex-shrink: 0;
}
body.theme-luv .bh-chat-avatar {
    object-fit: cover;
    border: 1px solid var(--luv-line);
}
body.theme-luv .bh-chat-avatar-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 138, 31, 0.18);
    color: var(--luv-orange-2);
    font-size: 14px;
    font-weight: 800;
}
body.theme-luv .bh-chat-bubble {
    max-width: min(78%, 720px);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--luv-line);
    border-radius: 18px;
    padding: 12px 14px;
}
body.theme-luv .bh-chat-message--own .bh-chat-bubble {
    background: rgba(255, 138, 31, 0.1);
    border-color: rgba(255, 138, 31, 0.35);
}
body.theme-luv .bh-chat-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 11px;
}
body.theme-luv .bh-chat-message--own .bh-chat-meta { justify-content: flex-end; }
body.theme-luv .bh-chat-author {
    color: var(--luv-text);
    font-weight: 700;
}
body.theme-luv .bh-chat-time {
    color: var(--luv-text-mute);
    font-weight: 500;
}
body.theme-luv .bh-chat-body {
    color: var(--luv-text-dim);
    font-size: 14px;
    line-height: 1.55;
    white-space: pre-wrap;
    word-break: break-word;
}
body.theme-luv .bh-chat-form { margin-top: 16px; }
body.theme-luv .bh-chat-label {
    display: block;
    margin-bottom: 8px;
    font-size: 11.5px;
    font-weight: 800;
    color: var(--luv-text-mute);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}
body.theme-luv .bh-chat-input {
    width: 100%;
    resize: vertical;
    min-height: 88px;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--luv-line);
    border-radius: var(--luv-r-md);
    color: var(--luv-text);
    font-size: 14px;
    font-family: var(--luv-font-body);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
body.theme-luv .bh-chat-input:focus {
    border-color: var(--luv-orange);
    box-shadow: 0 0 0 3px rgba(255, 138, 31, 0.18);
}
body.theme-luv .bh-chat-input:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}
body.theme-luv .bh-chat-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 12px;
}
body.theme-luv .bh-chat-hint {
    color: var(--luv-text-mute);
    font-size: 12px;
    line-height: 1.5;
}

/* Guess */
body.theme-luv .bh-guess-owner-controls {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
body.theme-luv .bh-guess-status-badge { margin-left: auto; }
body.theme-luv .bh-guess-winner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    margin-bottom: 14px;
    background: linear-gradient(135deg,
                rgba(255, 138, 31, 0.16),
                rgba(255, 202, 40, 0.1));
    border: 1px solid var(--luv-orange);
    border-radius: var(--luv-r-lg);
}
body.theme-luv .bh-guess-winner svg {
    flex-shrink: 0;
    color: #ffca28;
}
body.theme-luv .bh-guess-winner-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
body.theme-luv .bh-guess-winner-label {
    font-size: 11px;
    font-family: var(--luv-font-heading);
    font-weight: 800;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
body.theme-luv .bh-guess-winner-name {
    font-family: var(--luv-font-display);
    font-size: 16px;
    color: var(--luv-text);
}
body.theme-luv .bh-guess-winner-detail {
    font-size: 13px;
    color: var(--luv-text-mute);
}
body.theme-luv .bh-guess-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: var(--luv-r-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--luv-line);
    transition: border-color 0.2s ease;
}
body.theme-luv .bh-guess-item--own {
    background: rgba(255, 138, 31, 0.1);
    border-color: rgba(255, 138, 31, 0.35);
}
body.theme-luv .bh-guess-item--winner {
    background: linear-gradient(135deg,
                rgba(255, 138, 31, 0.18),
                rgba(255, 202, 40, 0.1));
    border-color: var(--luv-orange);
}
body.theme-luv .bh-guess-info {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
}
body.theme-luv .bh-guess-author {
    font-weight: 700;
    font-size: 13px;
    color: var(--luv-text);
    white-space: nowrap;
}
body.theme-luv .bh-guess-value {
    font-family: var(--luv-font-mono);
    font-weight: 700;
    font-size: 14px;
    color: var(--luv-orange-2);
    white-space: nowrap;
}
body.theme-luv .bh-guess-diff {
    font-size: 12px;
    color: var(--luv-text-mute);
    white-space: nowrap;
}
body.theme-luv .bh-guess-rank {
    font-size: 12px;
    font-weight: 800;
    color: var(--luv-text-mute);
    min-width: 28px;
    text-align: center;
}
body.theme-luv .bh-guess-trophy { flex-shrink: 0; }
body.theme-luv .bh-guess-input-row {
    display: flex;
    gap: 10px;
    align-items: stretch;
}
body.theme-luv .bh-guess-input {
    min-height: auto !important;
    resize: none;
    flex: 1;
}
body.theme-luv .bh-guess-list { gap: 8px; }

/* Propositions */
body.theme-luv .bh-proposal-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid var(--luv-line);
}
body.theme-luv .bh-proposal-item:last-child { border-bottom: none; }
body.theme-luv .bh-proposal--accepted,
body.theme-luv .bh-proposal--rejected { opacity: 0.55; }

/* File d'attente : numéro de position, le plus ancien en haut */
body.theme-luv .bh-proposal-queue {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    margin-top: 5px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.08);
    color: var(--luv-text-mute);
}
body.theme-luv .bh-proposal-queue--next {
    background: var(--luv-orange);
    color: #000;
}
body.theme-luv .bh-proposal--next {
    background: linear-gradient(90deg, rgba(255, 140, 0, 0.08), transparent 65%);
    border-radius: 8px;
}
body.theme-luv .bh-proposal-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
body.theme-luv .bh-proposal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
body.theme-luv .bh-proposal-slot {
    font-size: 14px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}
body.theme-luv .bh-proposal-provider {
    font-size: 12px;
    color: var(--luv-text-mute);
}
body.theme-luv .bh-proposal-badge {
    font-size: 10.5px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
body.theme-luv .bh-proposal-badge--pending {
    background: rgba(255, 152, 0, 0.15);
    color: #ff9800;
}
body.theme-luv .bh-proposal-badge--accepted {
    background: rgba(20, 196, 106, 0.15);
    color: var(--luv-green);
}
body.theme-luv .bh-proposal-badge--rejected {
    background: rgba(230, 57, 70, 0.15);
    color: var(--luv-red);
}
body.theme-luv .bh-proposal-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    flex-wrap: wrap;
}
body.theme-luv .bh-proposal-bet-input {
    width: 100px;
    padding: 7px 10px;
    border: 1px solid var(--luv-line);
    border-radius: var(--luv-r-sm);
    background: rgba(0, 0, 0, 0.25);
    color: var(--luv-text);
    font-size: 13px;
    font-family: var(--luv-font-mono);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
body.theme-luv .bh-proposal-bet-input:focus {
    border-color: var(--luv-orange);
    box-shadow: 0 0 0 3px rgba(255, 138, 31, 0.18);
    outline: none;
}
body.theme-luv .bh-proposal-form {
    padding: 16px;
    border-top: 1px solid var(--luv-line);
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
}
body.theme-luv .bh-proposal-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
body.theme-luv .bh-proposal-search-wrap .bh-search-icon {
    position: absolute;
    left: 12px;
    pointer-events: none;
    color: var(--luv-text-mute);
}
body.theme-luv .bh-proposal-search-wrap .bh-search-input {
    width: 100%;
    padding: 10px 14px 10px 38px;
}

/* ── Animation flash ouverture bonus ─────────────── */
@keyframes bhFlash {
    0%   { background-color: rgba(41, 200, 230, 0.28); }
    100% { background-color: transparent; }
}
body.theme-luv .bh-flash { animation: bhFlash 0.8s ease; }

/* ── Responsif ───────────────────────────────────── */
@media (max-width: 1024px) {
    body.theme-luv .bh-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    body.theme-luv .bh-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    body.theme-luv .bh-actions-bar {
        flex-direction: column;
        align-items: stretch;
    }
    body.theme-luv .bh-actions-right {
        margin-left: 0;
        flex-wrap: wrap;
    }
    body.theme-luv .bh-sort-bar {
        flex-wrap: wrap;
    }
    body.theme-luv .bh-progress-wrap {
        margin-left: 0;
        width: 100%;
        margin-top: 4px;
    }
    body.theme-luv .bh-progress-bar { flex: 1; }

    body.theme-luv .bh-listing-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    body.theme-luv .bh-listing-sort { flex-wrap: wrap; }

    body.theme-luv .bh-hunt-card {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 16px 20px;
    }
    body.theme-luv .bh-hunt-card-left { flex: none; }
    body.theme-luv .bh-hunt-card-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    body.theme-luv .bh-hunt-card-actions { justify-content: stretch; }
    body.theme-luv .bh-hunt-card-actions .bh-btn {
        flex: 1;
        justify-content: center;
    }

    body.theme-luv .bh-detail-header {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    body.theme-luv .bh-detail-actions { flex-wrap: wrap; }

    body.theme-luv .bh-chat-form-footer {
        flex-direction: column;
        align-items: stretch;
    }
    body.theme-luv .bh-modal-overlay {
        padding: 12px;
        align-items: flex-start;
    }
    body.theme-luv .bh-modal--chat {
        padding: 18px;
        max-height: calc(100dvh - 24px);
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }
    body.theme-luv .bh-modal--chat .bh-chat-messages,
    body.theme-luv .bh-modal--chat .bh-proposals-list {
        min-height: 100px;
        max-height: none;
        flex: 1 1 auto;
        overflow-y: auto;
    }
    body.theme-luv .bh-modal--chat .bh-proposal-form { flex-shrink: 0; }
    body.theme-luv .bh-chat-badge { align-self: flex-start; }
    body.theme-luv .bh-chat-bubble { max-width: 100%; }
    body.theme-luv .bh-proposal-actions {
        flex-direction: column;
        align-items: stretch;
    }
    body.theme-luv .bh-proposal-bet-input { width: 100%; }

    body.theme-luv .bh-table-wrap { display: none; }
    body.theme-luv .bh-cards-mobile { display: flex; }

    body.theme-luv .bh-form-row { grid-template-columns: 1fr; }
    body.theme-luv .bh-modal { padding: 22px; }
}
@media (max-width: 480px) {
    body.theme-luv .bh-stats { grid-template-columns: 1fr; }
    body.theme-luv .bh-stat-card { padding: 14px; }
    body.theme-luv .bh-stat-value { font-size: 18px; }
    body.theme-luv .bh-chat-messages { padding: 12px; }
}

/* ── Cibles tactiles ≥44px sur mobile (audit UI/UX 06/2026) ── */
@media (max-width: 768px) {
    body.theme-luv .bh-modal-close,
    body.theme-luv .bh-row-btn {
        width: 44px;
        height: 44px;
    }
    body.theme-luv .bh-sort-btn {
        min-height: 44px;
    }
}
