/* ============================================================
   CALLS.CSS — Luvreizel design (navy + orange, casino motifs)
   Redesign 2026-05 : layout compact, stage focal central,
   queue horizontale, FAQ en bas, sidebars sticky.
   Scoped sous body.theme-luv.
   ============================================================ */

body.theme-luv {
    --luv-bg: #0a1428;
    --luv-bg-2: #0c1830;
    --luv-card: #0f1c36;
    --luv-card-2: #122142;
    --luv-line: rgba(255, 255, 255, 0.08);
    --luv-line-strong: rgba(255, 255, 255, 0.14);

    --luv-orange: #ff8a1f;
    --luv-orange-2: #ffb84a;
    --luv-orange-deep: #d96400;

    --luv-red: #e63946;
    --luv-green: #14c46a;
    --luv-purple: #b14bd8;
    --luv-cyan: #29c8e6;

    --luv-text: #f3f6fb;
    --luv-text-dim: #aab3c5;
    /* #6c7891 ne faisait que 3.82:1 sur les cartes (WCAG AA = 4.5:1) */
    --luv-text-mute: #8b96ab;

    --luv-r-sm: 8px;
    --luv-r-md: 12px;
    --luv-r-lg: 18px;
    --luv-r-pill: 999px;

    --luv-font-display: 'Bowlby One', 'Impact', sans-serif;
    --luv-font-heading: 'Poppins', 'Inter', system-ui, sans-serif;
    --luv-font-body: 'Space Grotesk', system-ui, sans-serif;
    --luv-font-mono: 'JetBrains Mono', ui-monospace, monospace;

    background-color: var(--luv-bg);
    background-image: none;
    color: var(--luv-text);
    font-family: var(--luv-font-body);
}

/* ====================== BACKGROUND + DECO ====================== */
body.theme-luv .luv-bg-field {
    position: fixed;
    inset: 0;
    z-index: 0;
    background: var(--luv-bg);
    overflow: hidden;
    pointer-events: none;
}
body.theme-luv .luv-bg-field::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Aurora chaude — halos orange/ambre diffus (remplace l'ancien damier, refresh) */
    background-image:
        radial-gradient(ellipse 48% 58% at 16% 26%, rgba(255, 138, 31, 0.11), transparent 64%),
        radial-gradient(ellipse 52% 60% at 86% 20%, rgba(255, 184, 74, 0.09), transparent 66%),
        radial-gradient(ellipse 55% 55% at 74% 90%, rgba(216, 80, 20, 0.07), transparent 64%),
        radial-gradient(ellipse 46% 52% at 30% 94%, rgba(255, 150, 40, 0.06), transparent 64%);
    filter: blur(12px);
    opacity: 1;
}
body.theme-luv .luv-bg-field::after {
    content: '';
    position: absolute;
    top: -240px;
    left: 50%;
    transform: translateX(-50%);
    width: 1100px;
    height: 520px;
    background: radial-gradient(ellipse at center, rgba(255,138,31,0.18) 0%, rgba(255,138,31,0.06) 30%, transparent 65%);
    filter: blur(80px);
    pointer-events: none;
}

body.theme-luv .luv-floating-deco {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
body.theme-luv .luv-deco {
    position: absolute;
    opacity: 0.55;
    rotate: var(--rot, 0deg);
    animation: luvFloaty 8s ease-in-out infinite;
    will-change: transform;
}
@keyframes luvFloaty {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) {
    body.theme-luv .luv-deco { animation: none; }
}
body.theme-luv .luv-deco-chip-purple { top: 12%; left: 2%;   --rot: -14deg; animation-delay: 0s; }
body.theme-luv .luv-deco-chip-cyan   { top: 68%; left: 1.5%; --rot: 12deg;  animation-delay: 1.2s; }
body.theme-luv .luv-deco-chip-red    { top: 18%; right: 3%;  --rot: 8deg;   animation-delay: 0.6s; }
body.theme-luv .luv-deco-chip-green  { top: 72%; right: 2%;  --rot: -8deg;  animation-delay: 2.1s; }

body.theme-luv > section,
body.theme-luv > .footer {
    position: relative;
    z-index: 1;
}

/* ====================== NAVBAR + FOOTER theming ====================== */
body.theme-luv .navbar {
    background: transparent;
    border-bottom: none;
}
body.theme-luv .navbar-logo-img {
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}
body.theme-luv .nav-link {
    font-family: var(--luv-font-body);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--luv-text-dim);
}
body.theme-luv .nav-link:hover { color: var(--luv-text); background: transparent; }
body.theme-luv .nav-link.active { color: var(--luv-orange); background: transparent; }
body.theme-luv .nav-link.active::after { background: var(--luv-orange); }
body.theme-luv .btn-nav-login {
    color: var(--luv-orange);
    border: 1.5px solid var(--luv-orange);
}
body.theme-luv .btn-nav-login:hover {
    background: var(--luv-orange);
    color: #1a0a00;
}
body.theme-luv .btn-nav-profile {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--luv-line-strong);
}
body.theme-luv .btn-nav-profile:hover {
    border-color: var(--luv-orange);
    background: rgba(255, 138, 31, 0.08);
}

body.theme-luv .footer {
    position: relative;
    isolation: isolate;
    background: rgba(10, 20, 40, 0.55);
    border-top: 1px solid var(--luv-line);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    overflow: hidden;
}
body.theme-luv .footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 20, 40, 0.35) 0%, rgba(10, 20, 40, 0.85) 100%);
    pointer-events: none;
    z-index: 0;
}
body.theme-luv .footer-top,
body.theme-luv .footer-bottom { position: relative; z-index: 1; }
body.theme-luv .footer-section h4::after { background: var(--luv-orange); }
body.theme-luv .footer-section a:hover { color: var(--luv-orange); }
body.theme-luv .footer-brand-name { color: var(--luv-text); }
body.theme-luv .footer-tagline strong { color: var(--luv-text); }
body.theme-luv .footer-socials a {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--luv-line);
    color: var(--luv-text-dim);
}
body.theme-luv .footer-socials a:hover {
    color: var(--luv-orange);
    border-color: var(--luv-orange);
    background: rgba(255, 138, 31, 0.10);
}
body.theme-luv .footer-age {
    background: rgba(230, 57, 70, 0.08);
    border-color: rgba(230, 57, 70, 0.32);
    color: var(--luv-text-dim);
}
body.theme-luv .footer-age:hover {
    background: linear-gradient(180deg, rgba(230, 57, 70, 0.14), rgba(255, 138, 31, 0.06));
    color: var(--luv-text);
}
body.theme-luv .footer-age-link { color: var(--luv-orange); }
body.theme-luv .footer-age a { color: var(--luv-orange); }
body.theme-luv .footer-bottom { color: var(--luv-text-mute); border-top: 1px solid var(--luv-line); }
body.theme-luv .footer-bottom a { color: var(--luv-orange) !important; }
body.theme-luv .footer-bottom a:hover { color: var(--luv-orange-2) !important; }

body.theme-luv ::selection { background: var(--luv-orange); color: #1a0a00; }
body.theme-luv ::-webkit-scrollbar-thumb:hover { background: var(--luv-orange-deep); }

@keyframes callsFadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes callsSpin { to { transform: rotate(360deg); } }
@keyframes callsLivepulse {
    0%   { box-shadow: 0 0 0 0 rgba(255, 90, 102, 0.7); }
    70%  { box-shadow: 0 0 0 7px rgba(255, 90, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 90, 102, 0); }
}
@keyframes callsBlink { 50% { opacity: 0.35; } }

/* ====================== HERO ====================== */
/* Hero de base (utilisé tel quel par /calls/leaderboard) — version centrée. */
body.theme-luv .calls-hero {
    position: relative;
    isolation: isolate;
    padding: 70px 20px 38px;
    overflow: hidden;
    animation: callsFadeUp 0.5s ease both;
}
body.theme-luv .calls-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 .calls-hero-content {
    max-width: 1180px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Variante "split" pour la page /calls redessinée : titre+chips à gauche, tabs+CTA à droite. */
body.theme-luv .calls-hero.calls-hero-split {
    max-width: 1340px;
    margin: 0 auto;
    padding: 24px 28px 18px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 28px;
    overflow: visible;
}
body.theme-luv .calls-hero.calls-hero-split::before { content: none; }
body.theme-luv .calls-hero-left { min-width: 0; }

/* Titre/sous-titre/chips — version par défaut (leaderboard, centrée et grande) */
body.theme-luv .calls-title {
    margin: 0;
    font-family: var(--luv-font-display);
    font-size: clamp(40px, 8vw, 72px);
    line-height: 0.95;
    letter-spacing: 0.5px;
    font-weight: 400;
    color: var(--luv-text);
}
body.theme-luv .calls-title .text-accent {
    color: var(--luv-orange);
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}
body.theme-luv .calls-subtitle {
    margin: 18px auto 0;
    color: var(--luv-text-dim);
    font-size: 17px;
    line-height: 1.55;
    max-width: 580px;
}
body.theme-luv .calls-hero-chips {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
body.theme-luv .calls-hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: var(--luv-r-pill);
    border: 1px solid var(--luv-line-strong);
    background: rgba(255, 255, 255, 0.03);
    color: var(--luv-text-dim);
    font-family: var(--luv-font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
body.theme-luv .calls-hero-chip svg { color: var(--luv-orange); }

/* Version compacte (page /calls) — overrides dans le scope .calls-hero-split */
body.theme-luv .calls-hero.calls-hero-split .calls-title {
    font-size: clamp(30px, 4vw, 46px);
    letter-spacing: 0.4px;
}
body.theme-luv .calls-hero.calls-hero-split .calls-subtitle {
    margin: 10px 0 0;
    font-size: 13.5px;
    line-height: 1.5;
    max-width: 520px;
    text-align: left;
}
body.theme-luv .calls-hero.calls-hero-split .calls-hero-chips {
    margin-top: 12px;
    gap: 6px;
    justify-content: flex-start;
}
body.theme-luv .calls-hero.calls-hero-split .calls-hero-chip {
    padding: 5px 10px;
    font-size: 10px;
    letter-spacing: 0.08em;
}

body.theme-luv .calls-hero.calls-hero-split .calls-hero-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

/* Tabs Calls / Classement, version pill segmentée */
body.theme-luv .calls-subnav {
    display: inline-flex;
    padding: 3px;
    border-radius: var(--luv-r-pill);
    border: 1px solid var(--luv-line-strong);
    background: rgba(255, 255, 255, 0.03);
}
body.theme-luv .calls-subnav-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 16px;
    border-radius: var(--luv-r-pill);
    background: transparent;
    color: var(--luv-text-dim);
    font-family: var(--luv-font-body);
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: background .18s, color .18s;
}
body.theme-luv .calls-subnav-link:hover { color: var(--luv-text); }
body.theme-luv .calls-subnav-link.active {
    background: var(--luv-orange);
    color: #1a0a00;
    box-shadow: 0 4px 12px rgba(255, 138, 31, 0.3);
}

body.theme-luv .calls-cta-make-call,
body.theme-luv .calls-cta-login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--luv-r-pill);
    font-family: var(--luv-font-body);
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform .12s, filter .15s, background .15s, color .15s;
}
body.theme-luv .calls-cta-make-call {
    background: var(--luv-orange);
    color: #1a0a00;
    box-shadow: 0 6px 18px rgba(255, 138, 31, 0.28);
}
body.theme-luv .calls-cta-make-call:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}
body.theme-luv .calls-cta-make-call:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}
body.theme-luv .calls-cta-login {
    background: transparent;
    border: 1px solid var(--luv-line-strong);
    color: var(--luv-text);
}
body.theme-luv .calls-cta-login:hover {
    border-color: var(--luv-orange);
    background: rgba(255, 138, 31, 0.08);
    color: var(--luv-text);
}

/* ====================== LINK BANNER ====================== */
body.theme-luv .calls-link-banner {
    position: relative;
    z-index: 1;
    max-width: 1340px;
    margin: 0 auto 12px;
    padding: 0 28px;
}
body.theme-luv .calls-link-banner-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: var(--luv-r-sm);
    border: 1px solid rgba(255, 138, 31, 0.30);
    background: rgba(255, 138, 31, 0.05);
}
body.theme-luv .calls-link-banner-icon {
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px rgba(255, 138, 31, 0.4));
}
body.theme-luv .calls-link-banner-text {
    flex: 1;
    min-width: 0;
    font-size: 12.5px;
    line-height: 1.4;
}
body.theme-luv .calls-link-banner-text strong {
    color: var(--luv-text);
    display: block;
    font-size: 13px;
    margin-bottom: 1px;
}
body.theme-luv .calls-link-banner-text span {
    color: var(--luv-text-dim);
    font-size: 11.5px;
}
body.theme-luv .calls-link-banner-text code {
    background: rgba(255, 138, 31, 0.12);
    color: var(--luv-orange);
    padding: 1px 5px;
    border-radius: 4px;
    font-family: var(--luv-font-mono);
    font-size: 11.5px;
}
body.theme-luv .calls-link-banner-btn {
    flex-shrink: 0;
    padding: 7px 14px;
    border-radius: var(--luv-r-pill);
    background: var(--luv-orange);
    color: #1a0a00;
    border: none;
    font-family: var(--luv-font-body);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: filter .15s, transform .1s;
    white-space: nowrap;
}
body.theme-luv .calls-link-banner-btn:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

/* Banner pause */
body.theme-luv .calls-paused-wrap {
    max-width: 1340px;
    margin: 0 auto 12px;
    padding: 0 28px;
    position: relative;
    z-index: 1;
}
body.theme-luv .calls-paused-banner {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 138, 31, 0.35);
    background: rgba(255, 138, 31, 0.08);
    color: var(--luv-orange-2);
    border-radius: var(--luv-r-md);
    padding: 10px 14px;
    font-family: var(--luv-font-mono);
    font-size: 12px;
    font-weight: 600;
}

/* ====================== PAGE GRID (3 colonnes) ====================== */
body.theme-luv .calls-section {
    padding: 0 0 32px;
    position: relative;
    z-index: 1;
}
body.theme-luv .calls-page-grid {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr) 320px;
    gap: 16px;
    align-items: start;
}

/* ====================== CARD PRIMITIVE ====================== */
body.theme-luv .calls-card {
    border-radius: var(--luv-r-md);
    border: 1px solid var(--luv-line);
    background: var(--luv-card);
    overflow: hidden;
}
body.theme-luv .calls-card-head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--luv-line);
    font-family: var(--luv-font-mono);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--luv-text-mute);
}
body.theme-luv .calls-card-head svg { color: var(--luv-orange); }
body.theme-luv .calls-card-meta {
    margin-left: auto;
    font-family: var(--luv-font-mono);
    font-size: 10px;
    color: var(--luv-text-mute);
    letter-spacing: 0.14em;
}

body.theme-luv .calls-col-left { position: sticky; top: 110px; }
body.theme-luv .calls-col-right {
    position: sticky;
    top: 110px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
body.theme-luv .calls-col-center {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
}

/* ====================== LEFT SIDEBAR : MEILLEURS PROFITS ====================== */
body.theme-luv .calls-top-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    max-height: 560px;
    overflow: auto;
}
body.theme-luv .calls-top-empty {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--luv-text-mute);
    font-family: var(--luv-font-mono);
    font-size: 12px;
    text-align: center;
}
/* ── 1er : ligne « champion » ── */
body.theme-luv .calls-top-champ {
    position: relative;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    align-items: center;
    gap: 11px;
    padding: 10px 10px 10px 14px;
    border-radius: var(--luv-r-sm);
    background: linear-gradient(135deg, rgba(255, 138, 31, 0.16), rgba(255, 138, 31, 0.04));
    border: 1px solid rgba(255, 138, 31, 0.45);
    overflow: hidden;
    cursor: pointer;
    transition: transform .18s, box-shadow .18s;
}
body.theme-luv .calls-top-champ::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(var(--luv-orange), var(--luv-orange-2));
}
body.theme-luv .calls-top-champ:hover {
    transform: translateX(2px);
    box-shadow: 0 0 0 1px rgba(255, 138, 31, 0.4);
}
body.theme-luv .calls-top-champ-thumb { position: relative; }
body.theme-luv .calls-top-img-lg {
    width: 46px;
    height: 58px;
    border-radius: 7px;
    border: 1px solid rgba(255, 138, 31, 0.5);
    object-fit: cover;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 18px rgba(255, 138, 31, 0.25);
    display: block;
}
body.theme-luv .calls-top-medal {
    position: absolute;
    top: -5px; left: -5px;
    font-size: 16px;
    filter: drop-shadow(0 1px 2px #000);
}
body.theme-luv .calls-top-rt { text-align: right; }
body.theme-luv .calls-top-big {
    font-family: var(--luv-font-mono);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}
body.theme-luv .calls-top-prize-pill {
    display: inline-block;
    margin-top: 5px;
    padding: 2px 8px;
    border-radius: var(--luv-r-pill);
    background: rgba(255, 138, 31, 0.16);
    border: 1px solid rgba(255, 138, 31, 0.4);
    color: var(--luv-orange-2);
    font-family: var(--luv-font-mono);
    font-size: 9.5px;
    font-weight: 600;
}

/* ── 2-3 + suivantes : rail couleur + numéro/médaille ── */
body.theme-luv .calls-top-item {
    position: relative;
    display: grid;
    grid-template-columns: 24px 32px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 7px 9px 7px 12px;
    border-radius: var(--luv-r-sm);
    background: rgba(0, 0, 0, 0.18);
    overflow: hidden;
    cursor: pointer;
    transition: transform .18s, background .18s;
}
body.theme-luv .calls-top-item::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--luv-line-strong);
}
body.theme-luv .calls-top-item.r2::before { background: #d7dbe0; }
body.theme-luv .calls-top-item.r3::before { background: #d98d64; }
body.theme-luv .calls-top-item:hover {
    transform: translateX(2px);
    background: rgba(0, 0, 0, 0.28);
}
body.theme-luv .calls-top-mk {
    text-align: center;
    font-family: var(--luv-font-mono);
    font-size: 13px;
    font-weight: 700;
    color: var(--luv-text-mute);
}
body.theme-luv .calls-top-item.r2 .calls-top-mk,
body.theme-luv .calls-top-item.r3 .calls-top-mk { font-size: 16px; }
body.theme-luv .calls-top-img {
    width: 32px;
    height: 40px;
    border-radius: 5px;
    border: 1px solid var(--luv-line);
    object-fit: cover;
    background: rgba(255, 255, 255, 0.04);
}
body.theme-luv .calls-top-info { min-width: 0; }
body.theme-luv .calls-top-name {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--luv-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
body.theme-luv .calls-top-caller {
    font-family: var(--luv-font-mono);
    font-size: 9.5px;
    color: var(--luv-text-mute);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
body.theme-luv .calls-top-rt2 { text-align: right; }
body.theme-luv .calls-top-big2 {
    font-family: var(--luv-font-mono);
    font-size: 13.5px;
    font-weight: 700;
    text-align: right;
}
body.theme-luv .calls-top-prizem {
    font-family: var(--luv-font-mono);
    font-size: 9px;
    color: var(--luv-orange-2);
    text-align: right;
    margin-top: 2px;
}

/* Couleurs gain/perte/neutre (partagées par profits + historique) */
body.theme-luv .positive { color: var(--luv-green); }
body.theme-luv .negative { color: var(--luv-red); }
body.theme-luv .neutral  { color: var(--luv-text-mute); }

/* ====================== RIGHT SIDEBAR : PODIUM DU MOIS ====================== */
body.theme-luv .calls-podium-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
}
body.theme-luv .calls-podium-empty {
    min-height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    color: var(--luv-text-mute);
    font-family: var(--luv-font-mono);
    font-size: 12px;
    text-align: center;
}
body.theme-luv .calls-podium-item {
    display: grid;
    grid-template-columns: 24px 30px minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    border-radius: var(--luv-r-sm);
    border: 1px solid transparent;
    background: rgba(0, 0, 0, 0.16);
}
body.theme-luv .calls-podium-item.top-gold   { border-color: rgba(255, 138, 31, 0.32); background: rgba(255, 138, 31, 0.06); }
body.theme-luv .calls-podium-item.top-silver { border-color: rgba(215, 219, 224, 0.24); }
body.theme-luv .calls-podium-item.top-bronze { border-color: rgba(217, 141, 100, 0.28); }
body.theme-luv .calls-podium-item.is-me {
    border-color: var(--luv-orange);
    background: rgba(255, 138, 31, 0.10);
}
body.theme-luv .calls-podium-rank {
    width: 22px;
    text-align: center;
    font-size: 14px;
    line-height: 1;
}
body.theme-luv .calls-podium-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--luv-line);
}
body.theme-luv .calls-podium-avatar-fb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--luv-orange), var(--luv-orange-2));
    color: #1a0f00;
    font-family: var(--luv-font-mono);
    font-size: 11px;
    font-weight: 800;
}
body.theme-luv .calls-podium-info { min-width: 0; }
body.theme-luv .calls-podium-name {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--luv-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
body.theme-luv .calls-podium-sub {
    font-family: var(--luv-font-mono);
    font-size: 10px;
    color: var(--luv-text-mute);
}
body.theme-luv .calls-podium-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
}
body.theme-luv .calls-podium-win {
    font-family: var(--luv-font-mono);
    font-size: 11px;
    font-weight: 700;
    color: var(--luv-green);
}
body.theme-luv .calls-podium-prize {
    justify-self: center;
    font-family: var(--luv-font-mono);
    font-size: 15px;
    font-weight: 800;
    color: var(--luv-orange);
    letter-spacing: 0.01em;
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 138, 31, 0.42);
    background: rgba(255, 138, 31, 0.14);
    white-space: nowrap;
    line-height: 1.1;
}
body.theme-luv .calls-podium-item.top-gold .calls-podium-prize {
    color: var(--luv-orange);
    border-color: rgba(255, 138, 31, 0.6);
    background: rgba(255, 138, 31, 0.2);
    box-shadow: 0 2px 10px rgba(255, 138, 31, 0.18);
}
/* Cellule vide pour conserver l'alignement de la grille quand pas de prix. */
body.theme-luv .calls-podium-prize-slot { display: block; width: 0; }
body.theme-luv .calls-podium-footer {
    border-top: 1px solid var(--luv-line);
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
body.theme-luv .calls-podium-me-label {
    font-family: var(--luv-font-mono);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--luv-text-mute);
}
body.theme-luv .calls-podium-me-empty {
    font-family: var(--luv-font-mono);
    font-size: 11px;
    color: var(--luv-text-mute);
    text-align: center;
    padding: 6px 4px;
}

/* ====================== STAGE (carte focale centrale) ====================== */
body.theme-luv .calls-stage {
    border-radius: var(--luv-r-md);
    border: 1px solid var(--luv-line);
    background: var(--luv-card);
    overflow: hidden;
    animation: callsFadeUp 0.4s ease both;
}
body.theme-luv .calls-stage-banner {
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--luv-line);
    font-family: var(--luv-font-mono);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--luv-text-mute);
}
body.theme-luv .calls-stage-banner .banner-sub {
    color: var(--luv-text-dim);
    font-size: 10.5px;
    letter-spacing: 0.14em;
    font-weight: 500;
}
body.theme-luv .calls-stage-banner .pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 9px;
    border-radius: var(--luv-r-sm);
    background: var(--luv-red);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
}
body.theme-luv .calls-stage-banner .pill.next {
    background: var(--luv-orange-2);
    color: #1a0a00;
}
body.theme-luv .calls-stage-banner .pill.empty {
    background: rgba(255, 255, 255, 0.06);
    color: var(--luv-text-dim);
    border: 1px solid var(--luv-line-strong);
}
body.theme-luv .calls-stage-banner .pill .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    animation: callsBlink 1.4s ease-in-out infinite;
}
body.theme-luv .calls-stage-banner .pill.next .dot { background: #1a0a00; animation: none; }
body.theme-luv .calls-stage-banner .pill.empty .dot { background: var(--luv-text-mute); animation: none; }

body.theme-luv .calls-stage-body {
    padding: 16px;
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
}
body.theme-luv .calls-stage-cover {
    position: relative;
    aspect-ratio: 1 / 1;
    width: 100%;
    border-radius: var(--luv-r-sm);
    overflow: hidden;
    border: 1px solid var(--luv-line-strong);
    background: rgba(255, 255, 255, 0.04);
}
body.theme-luv .calls-stage-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
body.theme-luv .calls-stage-cover .calls-stage-cover-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--luv-text-mute);
    font-family: var(--luv-font-display);
    font-size: 28px;
    letter-spacing: 2px;
    background: linear-gradient(135deg, rgba(255,138,31,0.10), rgba(177,75,216,0.10));
}
body.theme-luv .calls-stage-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
body.theme-luv .calls-stage-name {
    margin: 0;
    font-family: var(--luv-font-display);
    font-size: clamp(22px, 2.6vw, 32px);
    line-height: 1.05;
    letter-spacing: 0.4px;
    font-weight: 400;
    color: var(--luv-text);
}
body.theme-luv .calls-stage-provider {
    margin-top: 8px;
    font-family: var(--luv-font-mono);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--luv-text-mute);
}
body.theme-luv .calls-stage-caller {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--luv-text-dim);
    font-size: 12.5px;
}
body.theme-luv .calls-stage-caller .avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--luv-purple), var(--luv-cyan));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--luv-font-display);
    font-size: 10px;
    color: #fff;
    flex-shrink: 0;
}
body.theme-luv .calls-stage-caller img.avatar {
    object-fit: cover;
    background: var(--luv-card-2);
    border: 1px solid var(--luv-line-strong);
}
body.theme-luv .calls-stage-caller strong { color: var(--luv-text); font-weight: 700; }
body.theme-luv .calls-stage-comment {
    margin-top: 10px;
    padding: 8px 12px;
    border-left: 2px solid var(--luv-orange);
    background: rgba(255, 138, 31, 0.05);
    border-radius: 0 6px 6px 0;
    color: var(--luv-orange-2);
    font-size: 12.5px;
    font-style: italic;
}

/* Stage empty / disabled */
body.theme-luv .calls-stage-empty {
    padding: 36px 24px 40px;
    text-align: center;
}
body.theme-luv .calls-stage-empty-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    border-radius: 12px;
    background: rgba(255, 138, 31, 0.08);
    border: 1px solid rgba(255, 138, 31, 0.32);
    color: var(--luv-orange);
    display: flex;
    align-items: center;
    justify-content: center;
}
body.theme-luv .calls-stage-empty.disabled .calls-stage-empty-icon {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--luv-line-strong);
    color: var(--luv-text-mute);
}
body.theme-luv .calls-stage-empty-title {
    margin: 0;
    font-family: var(--luv-font-display);
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: 0.4px;
    color: var(--luv-text);
}
body.theme-luv .calls-stage-empty-text {
    margin: 10px auto 0;
    max-width: 420px;
    color: var(--luv-text-dim);
    font-size: 13.5px;
    line-height: 1.55;
}
body.theme-luv .calls-stage-empty-text strong { color: var(--luv-text); }
body.theme-luv .calls-stage-empty-actions {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* ====================== QUEUE STRIP HORIZONTAL ====================== */
body.theme-luv .calls-queue {
    border-radius: var(--luv-r-md);
    border: 1px solid var(--luv-line);
    background: var(--luv-card);
    overflow: hidden;
}
body.theme-luv .calls-queue-head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--luv-line);
    font-family: var(--luv-font-mono);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--luv-text-mute);
}
body.theme-luv .calls-queue-head svg { color: var(--luv-orange); }
body.theme-luv .calls-queue-count {
    margin-left: auto;
    min-width: 22px;
    height: 20px;
    padding: 0 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--luv-r-pill);
    background: rgba(255, 138, 31, 0.14);
    border: 1px solid rgba(255, 138, 31, 0.38);
    color: var(--luv-orange);
    font-family: var(--luv-font-mono);
    font-size: 11px;
    font-weight: 700;
}
body.theme-luv .calls-queue-track {
    display: flex;
    gap: 10px;
    /* padding-bottom réduit : laisse respirer le scrollbar sous les cartes */
    padding: 14px 12px 8px;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start;
    overscroll-behavior-x: contain;
    /* Pas de scroll-snap : le snap "mandatory" décalait la file au-delà de
       3 cartes (le navigateur re-cadrait sur une carte au rendu). */
    scroll-snap-type: none;
    /* Firefox */
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 138, 31, 0.55) transparent;
}
/* WebKit/Chromium : scrollbar horizontal stylé aux couleurs de la marque */
body.theme-luv .calls-queue-track::-webkit-scrollbar { height: 10px; }
body.theme-luv .calls-queue-track::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--luv-r-pill);
    margin: 0 12px;                 /* le rail ne touche pas les bords des cartes */
}
body.theme-luv .calls-queue-track::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, rgba(255, 138, 31, 0.5), rgba(255, 138, 31, 0.8));
    border: 2px solid transparent;  /* + background-clip = padding visuel = thumb fin */
    background-clip: padding-box;
    border-radius: var(--luv-r-pill);
    transition: background .18s;
}
body.theme-luv .calls-queue-track::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, rgba(255, 138, 31, 0.8), var(--luv-orange));
    background-clip: padding-box;
}
body.theme-luv .calls-queue-card {
    flex: 0 0 220px;
    border-radius: var(--luv-r-sm);
    border: 1px solid var(--luv-line);
    background: rgba(0, 0, 0, 0.18);
    padding: 9px 10px;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    transition: border-color .18s, transform .18s, background .18s;
    cursor: default;
    position: relative;
}
body.theme-luv .calls-queue-card:hover {
    border-color: var(--luv-orange);
    transform: translateY(-1px);
}
body.theme-luv .calls-queue-card .pos {
    position: absolute;
    top: -7px;
    left: -7px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--luv-card);
    border: 1px solid var(--luv-line-strong);
    color: var(--luv-text-mute);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--luv-font-mono);
    font-size: 10px;
    font-weight: 700;
}
body.theme-luv .calls-queue-card.is-next {
    border-color: rgba(255, 138, 31, 0.45);
    background: rgba(255, 138, 31, 0.05);
}
body.theme-luv .calls-queue-card.is-next .pos {
    color: var(--luv-orange);
    border-color: var(--luv-orange);
}
body.theme-luv .calls-queue-card .thumb {
    width: 44px;
    height: 56px;
    border-radius: 5px;
    border: 1px solid var(--luv-line);
    object-fit: cover;
    background: rgba(255, 255, 255, 0.04);
}
body.theme-luv .calls-queue-card .qinfo { min-width: 0; }
body.theme-luv .calls-queue-card .qname {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--luv-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
body.theme-luv .calls-queue-card .qprov {
    margin-top: 1px;
    font-family: var(--luv-font-mono);
    font-size: 9.5px;
    color: var(--luv-text-mute);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
body.theme-luv .calls-queue-card .qcaller {
    margin-top: 4px;
    font-family: var(--luv-font-mono);
    font-size: 10.5px;
    color: var(--luv-text-dim);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
body.theme-luv .calls-queue-empty {
    flex: 1;
    padding: 20px 12px;
    text-align: center;
    color: var(--luv-text-mute);
    font-family: var(--luv-font-mono);
    font-size: 11px;
    letter-spacing: 0.06em;
}

/* ====================== RIGHT SIDEBAR : HISTORIQUE ====================== */
body.theme-luv .calls-history-list {
    padding: 6px;
    max-height: 700px;
    overflow: auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
body.theme-luv .call-history-item {
    position: relative;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 8px 11px 8px 12px;
    border-radius: var(--luv-r-sm);
    background: rgba(0, 0, 0, 0.18);
    transition: transform .18s, background .18s;
    cursor: pointer;
    overflow: hidden;
}
body.theme-luv .call-history-item::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--luv-text-mute);
}
body.theme-luv .call-history-item.win::before  { background: var(--luv-green); }
body.theme-luv .call-history-item.loss::before { background: var(--luv-red); }
body.theme-luv .call-history-item.even::before { background: var(--luv-text-mute); }
body.theme-luv .call-history-item:hover {
    transform: translateX(2px);
    background: rgba(0, 0, 0, 0.28);
}
body.theme-luv .call-history-img {
    width: 34px;
    height: 44px;
    border-radius: 5px;
    border: 1px solid var(--luv-line);
    object-fit: cover;
    background: rgba(255, 255, 255, 0.04);
}
body.theme-luv .call-history-info { min-width: 0; }
body.theme-luv .call-history-name {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--luv-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
body.theme-luv .call-history-sub {
    font-family: var(--luv-font-mono);
    font-size: 9px;
    color: var(--luv-text-mute);
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
body.theme-luv .call-history-sub .call-history-pv { color: var(--luv-text-dim); }
body.theme-luv .call-history-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
}
body.theme-luv .call-history-big {
    font-family: var(--luv-font-mono);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}
body.theme-luv .call-history-date {
    font-family: var(--luv-font-mono);
    font-size: 8.5px;
    color: var(--luv-text-mute);
    letter-spacing: 0.04em;
}
body.theme-luv .calls-history-empty {
    padding: 32px 16px;
    text-align: center;
    color: var(--luv-text-mute);
    font-family: var(--luv-font-mono);
    font-size: 11.5px;
    letter-spacing: 0.04em;
}

/* ====================== LOADING ====================== */
body.theme-luv .calls-loading {
    border-radius: var(--luv-r-md);
    border: 1px dashed var(--luv-line-strong);
    background: rgba(255, 255, 255, 0.02);
    padding: 44px 28px;
    text-align: center;
    color: var(--luv-text-mute);
    font-family: var(--luv-font-mono);
    font-size: 12px;
    letter-spacing: 0.04em;
}
body.theme-luv .calls-spinner,
body.theme-luv .calls-spinner-sm {
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.16);
    border-top-color: var(--luv-orange);
    animation: callsSpin 0.8s linear infinite;
}
body.theme-luv .calls-spinner    { width: 30px; height: 30px; margin: 0 auto 8px; }
body.theme-luv .calls-spinner-sm { width: 14px; height: 14px; }

/* ====================== FAQ (bas de page, 2 colonnes) ====================== */
body.theme-luv .calls-faq-section {
    max-width: 1340px;
    margin: 0 auto;
    padding: 12px 28px 60px;
    position: relative;
    z-index: 1;
}
body.theme-luv .calls-faq-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
body.theme-luv .calls-faq-title {
    margin: 0;
    font-family: var(--luv-font-display);
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1;
    letter-spacing: 0.4px;
    font-weight: 400;
    color: var(--luv-text);
    text-transform: none;
    display: block;
}
body.theme-luv .calls-faq-title::before { content: none; }
body.theme-luv .calls-faq-kicker {
    font-family: var(--luv-font-mono);
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--luv-text-mute);
}
body.theme-luv .calls-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
body.theme-luv .calls-faq-item {
    border-radius: var(--luv-r-sm);
    border: 1px solid var(--luv-line);
    background: var(--luv-card);
    overflow: hidden;
    transition: border-color .15s, background-color .15s;
}
body.theme-luv .calls-faq-item[open] { border-color: var(--luv-orange); }
body.theme-luv .calls-faq-q {
    list-style: none;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--luv-text);
    font-family: var(--luv-font-heading);
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
    transition: background .15s;
}
body.theme-luv .calls-faq-q::-webkit-details-marker { display: none; }
body.theme-luv .calls-faq-item:hover .calls-faq-q { background: rgba(255, 255, 255, 0.02); }
body.theme-luv .calls-faq-arrow {
    transition: transform .25s, color .18s;
    color: var(--luv-text-mute);
    flex-shrink: 0;
}
body.theme-luv .calls-faq-item[open] .calls-faq-arrow {
    transform: rotate(180deg);
    color: var(--luv-orange);
}
body.theme-luv .calls-faq-a {
    margin: 0;
    padding: 0 14px 14px;
    color: var(--luv-text-dim);
    font-size: 12.5px;
    line-height: 1.55;
}
body.theme-luv .calls-faq-a code {
    background: rgba(255, 138, 31, 0.12);
    color: var(--luv-orange);
    padding: 1px 5px;
    border-radius: 4px;
    font-family: var(--luv-font-mono);
    font-size: 11.5px;
}

/* ====================== MODAL ====================== */
body.theme-luv .calls-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 8, 16, 0.82);
    backdrop-filter: blur(8px);
}
body.theme-luv .calls-modal {
    width: min(560px, 92vw);
    max-height: calc(100vh - 44px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: var(--luv-r-lg);
    border: 1px solid var(--luv-line-strong);
    background: var(--luv-card);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
    animation: callsFadeUp 0.25s ease both;
}
body.theme-luv .calls-modal-header {
    padding: 20px 22px;
    border-bottom: 1px solid var(--luv-line);
    background: transparent;
}
body.theme-luv .calls-modal-title {
    margin: 0;
    font-family: var(--luv-font-heading);
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--luv-text);
}
body.theme-luv .calls-modal-subtitle {
    margin: 6px 0 0;
    color: var(--luv-text-mute);
    font-family: var(--luv-font-mono);
    font-size: 12px;
    letter-spacing: 0.06em;
}
body.theme-luv .calls-modal-body {
    padding: 18px 22px;
    overflow: auto;
}
body.theme-luv .calls-search-wrap { position: relative; }
body.theme-luv .calls-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--luv-text-mute);
}
body.theme-luv .calls-search-input,
body.theme-luv .calls-comment-input {
    width: 100%;
    min-height: 42px;
    border-radius: var(--luv-r-sm);
    border: 1px solid var(--luv-line-strong);
    background: rgba(255, 255, 255, 0.04);
    color: var(--luv-text);
    font-family: var(--luv-font-body);
    font-size: 14px;
    outline: none;
    transition: border-color .15s, box-shadow .15s;
}
body.theme-luv .calls-search-input { padding: 0 14px 0 38px; }
body.theme-luv .calls-comment-input { padding: 0 12px; }
body.theme-luv .calls-search-input:focus,
body.theme-luv .calls-comment-input:focus {
    border-color: var(--luv-orange);
    box-shadow: 0 0 0 3px rgba(255, 138, 31, 0.15);
}
body.theme-luv .calls-random-btn,
body.theme-luv .calls-change-btn,
body.theme-luv .calls-modal-cancel,
body.theme-luv .calls-modal-confirm {
    min-height: 40px;
    border-radius: var(--luv-r-sm);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: filter .15s, background-color .15s, border-color .15s;
}
body.theme-luv .calls-random-btn {
    width: 100%;
    margin-top: 10px;
    border: 1px dashed rgba(255, 138, 31, 0.5);
    color: var(--luv-orange);
    background: rgba(255, 138, 31, 0.06);
}
body.theme-luv .calls-random-btn:hover { background: rgba(255, 138, 31, 0.12); }
body.theme-luv .calls-search-results {
    margin-top: 12px;
    border: 1px solid var(--luv-line);
    border-radius: var(--luv-r-md);
    max-height: 260px;
    overflow: auto;
    background: rgba(0, 0, 0, 0.24);
}
body.theme-luv .calls-search-hint,
body.theme-luv .calls-search-loading {
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--luv-text-mute);
    font-family: var(--luv-font-mono);
    font-size: 12px;
}
body.theme-luv .calls-game-result {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-bottom: 1px solid var(--luv-line);
    cursor: pointer;
    transition: background-color .15s;
}
body.theme-luv .calls-game-result:last-child { border-bottom: none; }
body.theme-luv .calls-game-result:hover { background: rgba(255, 138, 31, 0.08); }
body.theme-luv .calls-game-result img,
body.theme-luv .calls-game-placeholder {
    width: 54px;
    height: 36px;
    border-radius: 6px;
    border: 1px solid var(--luv-line);
    object-fit: cover;
    background: rgba(255, 255, 255, 0.04);
}
body.theme-luv .calls-game-result-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--luv-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
body.theme-luv .calls-game-result-provider {
    margin-top: 1px;
    color: var(--luv-text-mute);
    font-family: var(--luv-font-mono);
    font-size: 10.5px;
    letter-spacing: 0.06em;
}
body.theme-luv .calls-selected-preview {
    margin-top: 12px;
    border-radius: var(--luv-r-md);
    border: 1px solid var(--luv-line-strong);
    background: rgba(255, 255, 255, 0.03);
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
body.theme-luv .calls-selected-preview img {
    width: 70px;
    height: 44px;
    border-radius: 6px;
    border: 1px solid var(--luv-line);
    object-fit: cover;
}
body.theme-luv .calls-selected-info { min-width: 0; flex: 1; }
body.theme-luv .calls-selected-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--luv-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
body.theme-luv .calls-selected-provider {
    font-family: var(--luv-font-mono);
    font-size: 11px;
    color: var(--luv-text-mute);
    letter-spacing: 0.06em;
}
body.theme-luv .calls-change-btn {
    border: 1px solid var(--luv-line-strong);
    background: rgba(255, 255, 255, 0.04);
    color: var(--luv-text-dim);
    padding: 0 12px;
}
body.theme-luv .calls-change-btn:hover {
    border-color: var(--luv-red);
    color: var(--luv-red);
    background: rgba(230, 57, 70, 0.08);
}
body.theme-luv .calls-comment-wrap { margin-top: 14px; }
body.theme-luv .calls-comment-label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--luv-font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--luv-text-dim);
}
body.theme-luv .calls-comment-optional {
    color: var(--luv-text-mute);
    font-size: 10px;
}
body.theme-luv .calls-comment-counter {
    margin-top: 4px;
    text-align: right;
    font-family: var(--luv-font-mono);
    font-size: 11px;
    color: var(--luv-text-mute);
}
body.theme-luv .calls-modal-footer {
    border-top: 1px solid var(--luv-line);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 14px 22px;
}
body.theme-luv .calls-modal-cancel {
    border: 1px solid var(--luv-line-strong);
    color: var(--luv-text-dim);
    background: transparent;
    padding: 0 16px;
}
body.theme-luv .calls-modal-cancel:hover {
    color: var(--luv-text);
    background: rgba(255, 255, 255, 0.04);
}
body.theme-luv .calls-modal-confirm {
    border: 1px solid transparent;
    background: var(--luv-orange);
    color: #1a0a00;
    padding: 0 18px;
}
body.theme-luv .calls-modal-confirm:hover { filter: brightness(1.08); }
body.theme-luv .calls-modal-confirm:disabled { opacity: 0.45; cursor: not-allowed; filter: none; }

/* Reveal */
body.theme-luv .calls-reveal { opacity: 0; transform: translateY(12px); }
body.theme-luv .calls-reveal.calls-in-view {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .35s, transform .35s;
}

/* ====================== LIAISON RUMBLE (modal step 2) ====================== */
body.theme-luv .calls-link-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px;
    border-radius: var(--luv-r-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--luv-line);
    margin-bottom: 10px;
}
body.theme-luv .calls-link-feature:last-child { margin-bottom: 0; }
body.theme-luv .calls-link-feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 138, 31, 0.10);
    border-radius: var(--luv-r-sm);
}
body.theme-luv .calls-link-feature strong {
    font-size: 14px;
    color: var(--luv-text);
}
body.theme-luv .calls-link-steps {
    list-style: none;
    counter-reset: step;
    padding: 0;
    margin: 0 0 18px;
}
body.theme-luv .calls-link-steps li {
    counter-increment: step;
    position: relative;
    padding: 0 0 12px 36px;
    color: var(--luv-text-dim);
    font-size: 14px;
    line-height: 1.5;
}
body.theme-luv .calls-link-steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 138, 31, 0.15);
    color: var(--luv-orange);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--luv-font-mono);
}
body.theme-luv .calls-link-steps li:last-child { padding-bottom: 0; }
body.theme-luv .calls-link-form {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}
body.theme-luv .calls-link-form input[type="text"] {
    flex: 1;
    min-width: 0;
    background: var(--luv-bg);
    border: 1px solid var(--luv-line-strong);
    border-radius: var(--luv-r-sm);
    padding: 10px 12px;
    color: var(--luv-text);
    font-family: var(--luv-font-mono);
    font-size: 12px;
    outline: none;
    transition: border-color .15s;
}
body.theme-luv .calls-link-form input[type="text"]:focus { border-color: var(--luv-orange); }
body.theme-luv .calls-link-form input[type="text"]::placeholder { color: var(--luv-text-mute); }
body.theme-luv .calls-link-form button {
    flex-shrink: 0;
    background: var(--luv-orange);
    /* texte sombre sur orange (blanc = 2.36:1) — aligné sur les autres CTA */
    color: #1a0a00;
    border: none;
    border-radius: var(--luv-r-sm);
    padding: 10px 16px;
    font-family: var(--luv-font-body);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: background .15s;
    white-space: nowrap;
}
body.theme-luv .calls-link-form button:hover { background: var(--luv-orange-deep); }
body.theme-luv .calls-link-form button:disabled { opacity: .6; cursor: wait; }
body.theme-luv .calls-link-info-box {
    font-size: 12px;
    color: var(--luv-text-mute);
    display: flex;
    align-items: flex-start;
    gap: 4px;
    line-height: 1.5;
}
body.theme-luv .calls-link-success {
    color: var(--luv-green);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    padding: 10px;
    border-radius: var(--luv-r-sm);
    background: rgba(20, 196, 106, 0.08);
    border: 1px solid rgba(20, 196, 106, 0.25);
}
body.theme-luv .calls-link-error {
    /* rouge éclairci : --luv-red (#e63946) = 4.41:1, sous le seuil AA */
    color: #ff6b74;
    font-size: 14px;
    text-align: center;
    padding: 10px;
    border-radius: var(--luv-r-sm);
    background: rgba(230, 57, 70, 0.08);
    border: 1px solid rgba(230, 57, 70, 0.25);
}

/* ====================== VERIFY CARD (legacy, gardé pour /link/verify) ====================== */
body.theme-luv .calls-verify-card {
    border: 1px solid var(--luv-line-strong);
    border-radius: var(--luv-r-lg);
    background: var(--luv-card);
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
body.theme-luv .calls-verify-head {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
body.theme-luv .calls-verify-head svg { color: var(--luv-orange); }
body.theme-luv .calls-verify-title {
    margin: 0 0 4px;
    font-family: var(--luv-font-heading);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--luv-text);
}
body.theme-luv .calls-verify-text {
    margin: 0;
    font-size: 13px;
    color: var(--luv-text-dim);
    line-height: 1.55;
}
body.theme-luv .calls-verify-text code,
body.theme-luv .calls-verify-hint code {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--luv-line);
    border-radius: 6px;
    padding: 1px 6px;
    font-family: var(--luv-font-mono);
    color: var(--luv-text);
}
body.theme-luv .calls-verify-code-wrap {
    border: 1px dashed rgba(255, 138, 31, 0.5);
    border-radius: var(--luv-r-md);
    background: rgba(0, 0, 0, 0.25);
    padding: 14px 16px;
    text-align: center;
}
body.theme-luv .calls-verify-code {
    font-family: var(--luv-font-mono);
    font-size: 28px;
    font-weight: 800;
    color: var(--luv-text);
    letter-spacing: 6px;
    margin-bottom: 8px;
}
body.theme-luv .calls-verify-hint {
    font-size: 12px;
    color: var(--luv-text-dim);
    font-family: var(--luv-font-mono);
    letter-spacing: 0.04em;
}
body.theme-luv .calls-verify-btn {
    align-self: flex-start;
    min-height: 38px;
    border-radius: var(--luv-r-sm);
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #1a0a00;
    background: var(--luv-orange);
    border: 1px solid transparent;
    cursor: pointer;
    transition: filter .15s;
}
body.theme-luv .calls-verify-btn:hover { filter: brightness(1.08); }
body.theme-luv .calls-verify-btn:disabled { opacity: 0.6; cursor: not-allowed; filter: none; }

/* ====================== RESPONSIVE ====================== */
@media (max-width: 1240px) {
    body.theme-luv .calls-page-grid {
        grid-template-columns: 260px minmax(0, 1fr);
    }
    body.theme-luv .calls-col-right { display: none; }
}

@media (max-width: 960px) {
    body.theme-luv .calls-page-grid {
        grid-template-columns: 1fr;
        padding: 0 16px;
    }
    body.theme-luv .calls-col-left,
    body.theme-luv .calls-col-right {
        position: static;
        display: block;
    }
    body.theme-luv .calls-col-left { order: 3; }
    body.theme-luv .calls-col-center { order: 1; }
    body.theme-luv .calls-col-right {
        order: 2;
        display: flex;
    }
    body.theme-luv .calls-top-list,
    body.theme-luv .calls-history-list {
        max-height: 360px;
    }
    body.theme-luv .calls-hero.calls-hero-split {
        grid-template-columns: 1fr;
        padding: 16px 16px 18px;
    }
    body.theme-luv .calls-hero.calls-hero-split .calls-hero-right { align-items: flex-start; }
    body.theme-luv .calls-link-banner,
    body.theme-luv .calls-paused-wrap { padding: 0 16px; }
}

@media (max-width: 720px) {
    body.theme-luv .calls-hero:not(.calls-hero-split) { padding: 50px 14px 28px; }
    body.theme-luv .calls-stage-body {
        grid-template-columns: 1fr;
    }
    body.theme-luv .calls-stage-cover {
        max-width: 240px;
        margin: 0 auto;
    }
    body.theme-luv .calls-faq-grid {
        grid-template-columns: 1fr;
    }
    body.theme-luv .calls-hero.calls-hero-split .calls-hero-right {
        width: 100%;
    }
    body.theme-luv .calls-hero.calls-hero-split .calls-subnav { width: 100%; justify-content: stretch; }
    body.theme-luv .calls-hero.calls-hero-split .calls-subnav-link { flex: 1; justify-content: center; }
    body.theme-luv .calls-hero.calls-hero-split .calls-cta-make-call,
    body.theme-luv .calls-hero.calls-hero-split .calls-cta-login { width: 100%; justify-content: center; }
    body.theme-luv .luv-deco-chip-purple,
    body.theme-luv .luv-deco-chip-cyan { display: none; }
}

@media (max-width: 480px) {
    body.theme-luv .calls-hero.calls-hero-split { padding: 12px 12px 14px; }
    body.theme-luv .calls-hero:not(.calls-hero-split) { padding: 40px 12px 22px; }
    body.theme-luv .calls-hero:not(.calls-hero-split) .calls-title { font-size: clamp(28px, 9vw, 40px); }
    body.theme-luv .calls-hero:not(.calls-hero-split) .calls-subtitle { font-size: 15px; }
    body.theme-luv .calls-page-grid { padding: 0 12px; }
    body.theme-luv .calls-faq-section { padding: 12px 12px 50px; }
    body.theme-luv .calls-link-banner,
    body.theme-luv .calls-paused-wrap { padding: 0 12px; }
    body.theme-luv .calls-title { font-size: clamp(28px, 9vw, 38px); }
    body.theme-luv .calls-modal {
        width: 96vw;
        max-height: calc(100dvh - 24px);
    }
    body.theme-luv .calls-link-banner-inner {
        flex-wrap: wrap;
    }
    body.theme-luv .calls-link-banner-btn {
        width: 100%;
        text-align: center;
    }
    body.theme-luv .calls-link-form {
        flex-direction: column;
    }
    body.theme-luv .luv-floating-deco { display: none; }
}

/* ─── Super Calls ─────────────────────────────────────────────────
   Badge gold/red dans la liste/stage publique + bloc de configuration
   dans la modal de création. */

/* Badges */
body.theme-luv .calls-super-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #FFB800, #FF8A1F);
    color: #1a1208;
    box-shadow: 0 0 0 1px rgba(255, 184, 0, 0.45) inset,
                0 2px 8px rgba(255, 138, 31, 0.35);
    vertical-align: middle;
}
body.theme-luv .calls-super-badge svg { color: currentColor; }
body.theme-luv .calls-super-badge.is-lg {
    font-size: 11px;
    padding: 4px 10px;
}
body.theme-luv .calls-super-badge--bounty {
    background: linear-gradient(135deg, #ff5566, #b91029);
    color: #fff;
    box-shadow: 0 0 0 1px rgba(225, 29, 46, 0.50) inset,
                0 2px 10px rgba(225, 29, 46, 0.40);
}

/* Mise en évidence des cartes stage / queue */
body.theme-luv .calls-stage.is-super {
    border-color: rgba(255, 184, 0, 0.55) !important;
    box-shadow: 0 0 0 1px rgba(255, 184, 0, 0.25),
                0 16px 36px -10px rgba(255, 138, 31, 0.35);
}
body.theme-luv .calls-stage.is-super.super-bounty {
    border-color: rgba(225, 29, 46, 0.55) !important;
    box-shadow: 0 0 0 1px rgba(225, 29, 46, 0.25),
                0 16px 36px -10px rgba(225, 29, 46, 0.35);
}
body.theme-luv .calls-queue-card.is-super {
    border-color: rgba(255, 184, 0, 0.50) !important;
    background: linear-gradient(180deg, rgba(255, 184, 0, 0.08), transparent 70%);
}
body.theme-luv .calls-queue-card.is-super.super-bounty {
    border-color: rgba(225, 29, 46, 0.50) !important;
    background: linear-gradient(180deg, rgba(225, 29, 46, 0.10), transparent 70%);
}

/* Modal : bloc Super Call */
body.theme-luv .calls-super-wrap {
    margin-top: 14px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 184, 0, 0.30);
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 184, 0, 0.06), transparent 80%);
}
body.theme-luv .calls-super-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
body.theme-luv .calls-super-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
body.theme-luv .calls-super-title svg { color: #FFB800; }
body.theme-luv .calls-super-cost {
    font-size: 11px;
    font-weight: 700;
    color: #FFB800;
    background: rgba(255, 184, 0, 0.10);
    border: 1px solid rgba(255, 184, 0, 0.30);
    padding: 2px 7px;
    border-radius: 999px;
    letter-spacing: 0.02em;
    text-transform: none;
}
body.theme-luv .calls-super-switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
    flex: 0 0 auto;
}
body.theme-luv .calls-super-switch input { opacity: 0; width: 0; height: 0; }
body.theme-luv .calls-super-switch-slider {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 22px;
    transition: background .15s;
    cursor: pointer;
}
body.theme-luv .calls-super-switch-slider::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    left: 3px;
    top: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform .15s;
}
body.theme-luv .calls-super-switch input:checked + .calls-super-switch-slider {
    background: linear-gradient(135deg, #FFB800, #FF8A1F);
}
body.theme-luv .calls-super-switch input:checked + .calls-super-switch-slider::before {
    transform: translateX(18px);
}

body.theme-luv .calls-super-body { margin-top: 10px; }
body.theme-luv .calls-super-desc {
    font-size: 12px;
    color: var(--luv-text-dim);
    margin: 0 0 10px;
}
body.theme-luv .calls-super-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
body.theme-luv .calls-super-type input { display: none; }
body.theme-luv .calls-super-type-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    transition: border-color .15s, background .15s;
}
body.theme-luv .calls-super-type-name {
    font-weight: 800;
    font-size: 13px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
body.theme-luv .calls-super-type-cost {
    font-size: 12px;
    font-weight: 700;
    color: var(--luv-text-dim);
}
body.theme-luv .calls-super-type input:checked + .calls-super-type-card {
    border-color: rgba(255, 184, 0, 0.55);
    background: linear-gradient(180deg, rgba(255, 184, 0, 0.10), transparent 80%);
}
body.theme-luv .calls-super-type input[value="bounty"]:checked + .calls-super-type-card {
    border-color: rgba(225, 29, 46, 0.55);
    background: linear-gradient(180deg, rgba(225, 29, 46, 0.10), transparent 80%);
}
body.theme-luv .calls-super-type input[value="bounty"] + .calls-super-type-card .calls-super-type-cost::before {
    content: "+75 LP · ";
    color: #ff7a8a;
    font-weight: 700;
}
body.theme-luv .calls-super-balance {
    margin-top: 10px;
    font-size: 12px;
    color: var(--luv-text-dim);
}
body.theme-luv .calls-super-balance strong { color: #fff; }
body.theme-luv .calls-super-balance-err {
    margin-left: 6px;
    color: #ff5e6e;
    font-weight: 700;
}
body.theme-luv .calls-super-balance-mute { color: var(--luv-text-mute); }

/* ── Cibles tactiles ≥44px sur mobile (audit UI/UX 06/2026) ── */
@media (max-width: 768px) {
    body.theme-luv .calls-cta-make-call,
    body.theme-luv .calls-cta-login,
    body.theme-luv .calls-link-banner-btn,
    body.theme-luv .calls-change-btn {
        min-height: 44px;
    }
}
