/* ============================================================
   CALLS.CSS — Luvreizel design (navy + orange, casino motifs)
   Scoped under body.theme-luv so the rest of the site
   (which still uses theme.css gold/marine) is untouched.
   ============================================================ */

body.theme-luv {
    --luv-bg: #0a1428;
    --luv-card: #0f1c36;
    --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-text: #f3f6fb;
    --luv-text-dim: #aab3c5;
    --luv-text-mute: #6c7891;

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

    --luv-font-display: 'Bowlby One', 'Impact', 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 field with diamond pattern */
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;
    background-image:
        linear-gradient(45deg, rgba(255,255,255,0.025) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,255,255,0.025) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.025) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.025) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0;
    opacity: 0.4;
}

/* Floating decorative chips and cards */
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.85;
    animation: luvFloaty 8s ease-in-out infinite;
}
@keyframes luvFloaty {
    0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
    50%      { transform: translateY(-12px) rotate(calc(var(--rot, 0deg) + 3deg)); }
}
body.theme-luv .luv-deco-chip-purple { top: 8%;  left: 4%;   --rot: -12deg; animation-delay: 0s; }
body.theme-luv .luv-deco-chip-cyan   { top: 64%; left: 2%;   --rot: 14deg;  animation-delay: 1.2s; }
body.theme-luv .luv-deco-chip-red    { top: 12%; right: 6%;  --rot: 8deg;   animation-delay: 0.6s; }
body.theme-luv .luv-deco-chip-green  { top: 70%; right: 4%;  --rot: -8deg;  animation-delay: 2.1s; }
body.theme-luv .luv-deco-card-spade  { top: 40%; left: 6%;   --rot: -22deg; animation-delay: 1.8s; }
body.theme-luv .luv-deco-card-heart  { top: 30%; right: 14%; --rot: -14deg; animation-delay: 2.6s; }

/* Make sure content sits above the bg-field & floating deco */
body.theme-luv > section,
body.theme-luv > .footer {
    position: relative;
    z-index: 1;
}

/* Navbar — keep it stuck to viewport top (position: fixed inherited from index.css) */
body.theme-luv .navbar {
    background: rgba(10, 20, 40, 0.78);
    border-bottom: 1px solid var(--luv-line);
}
body.theme-luv .navbar-logo-img {
    filter: drop-shadow(0 0 10px rgba(255, 138, 31, 0.5));
}
body.theme-luv .navbar-logo-img:hover {
    filter: drop-shadow(0 0 22px rgba(255, 138, 31, 0.8));
}
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;
    box-shadow: 0 0 18px rgba(255, 138, 31, 0.45);
}
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);
}

/* Footer — recolor */
body.theme-luv .footer { background: transparent; border-top: 1px solid var(--luv-line); }
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-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; }

/* Selection / scrollbar */
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 callsPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ====================== HERO ====================== */
body.theme-luv .calls-hero {
    position: relative;
    isolation: isolate;
    padding: 70px 20px 38px;
}
body.theme-luv .calls-hero::before,
body.theme-luv .calls-hero::after { content: none; }

body.theme-luv .calls-hero-content {
    max-width: 1180px;
    margin: 0 auto;
    text-align: left;
    animation: callsFadeUp 0.5s ease both;
}

body.theme-luv .calls-title {
    font-family: var(--luv-font-display);
    font-size: clamp(48px, 8vw, 96px);
    line-height: 0.95;
    letter-spacing: 0.5px;
    font-weight: 400;
    color: var(--luv-text);
    margin: 0;
}
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 0 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: flex-start;
}
body.theme-luv .calls-hero-chip {
    border-radius: 999px;
    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;
    padding: 7px 12px;
}

/* ====================== LAYOUT ====================== */
body.theme-luv .calls-section {
    padding: 28px 20px 86px;
}
body.theme-luv .calls-page-layout {
    max-width: 1420px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(250px, 0.85fr) minmax(560px, 1.7fr) minmax(300px, 1fr);
    gap: 18px;
    align-items: start;
}
body.theme-luv .calls-left-column {
    grid-column: 1;
    position: sticky;
    top: 84px;
    height: calc(100vh - 102px);
    display: flex;
    flex-direction: column;
    gap: 18px;
}
body.theme-luv .calls-main {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
body.theme-luv .calls-right-column {
    grid-column: 3;
    position: sticky;
    top: 84px;
    max-height: calc(100vh - 102px);
    display: flex;
    flex-direction: column;
}

/* ====================== SIDEBARS ====================== */
body.theme-luv .calls-top-sidebar,
body.theme-luv .calls-queue-sidebar {
    position: relative;
    top: auto;
    height: calc((100vh - 120px) / 2);
    min-height: 250px;
    display: flex;
    flex-direction: column;
    border-radius: var(--luv-r-lg);
    border: 1px solid var(--luv-line);
    background: var(--luv-card);
    box-shadow: none;
    overflow: hidden;
}

body.theme-luv .calls-top-header,
body.theme-luv .calls-queue-header {
    min-height: 56px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--luv-line);
    font-family: var(--luv-font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--luv-text-mute);
}
body.theme-luv .calls-top-header svg,
body.theme-luv .calls-queue-header svg {
    color: var(--luv-orange);
}
body.theme-luv .calls-queue-count {
    margin-left: auto;
    min-width: 26px;
    height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(255, 138, 31, 0.15);
    border: 1px solid rgba(255, 138, 31, 0.4);
    color: var(--luv-orange);
    font-family: var(--luv-font-mono);
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
body.theme-luv .calls-top-list,
body.theme-luv .calls-queue-list {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}
body.theme-luv .calls-top-empty,
body.theme-luv .calls-queue-empty {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    color: var(--luv-text-mute);
    font-family: var(--luv-font-mono);
    font-size: 12px;
}

body.theme-luv .calls-top-item,
body.theme-luv .calls-queue-item {
    display: grid;
    grid-template-columns: auto 36px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid var(--luv-line);
    border-radius: var(--luv-r-md);
    padding: 8px;
    margin-bottom: 8px;
    transition: border-color .2s, transform .2s, background-color .2s;
}
body.theme-luv .calls-top-item:hover,
body.theme-luv .calls-queue-item:hover {
    border-color: var(--luv-orange);
    transform: translateX(3px);
}
body.theme-luv .calls-queue-item.is-selected {
    border-color: var(--luv-orange);
    background: rgba(255, 138, 31, 0.08);
}
body.theme-luv .calls-queue-item.is-frozen { opacity: 0.8; }

body.theme-luv .calls-top-rank,
body.theme-luv .calls-queue-rank {
    width: 24px; height: 24px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--luv-font-mono);
    font-size: 11px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--luv-line-strong);
    color: var(--luv-text-mute);
}
body.theme-luv .calls-top-item.top-gold .calls-top-rank   { border-color: var(--luv-orange); color: var(--luv-orange); }
body.theme-luv .calls-top-item.top-silver .calls-top-rank { border-color: #d7dbe0; color: #d7dbe0; }
body.theme-luv .calls-top-item.top-bronze .calls-top-rank { border-color: #d98d64; color: #d98d64; }

body.theme-luv .calls-top-img,
body.theme-luv .calls-queue-img {
    width: 36px; height: 48px;
    object-fit: cover;
    border-radius: 7px;
    border: 1px solid var(--luv-line);
}

body.theme-luv .calls-top-info,
body.theme-luv .calls-queue-info { min-width: 0; }
body.theme-luv .calls-top-name,
body.theme-luv .calls-queue-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--luv-text);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
body.theme-luv .calls-top-caller,
body.theme-luv .calls-queue-caller {
    font-family: var(--luv-font-mono);
    font-size: 11px;
    color: var(--luv-text-mute);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

body.theme-luv .calls-top-right {
    display: flex; flex-direction: column; align-items: flex-end; gap: 4px;
}
body.theme-luv .calls-top-profit,
body.theme-luv .call-history-result {
    border-radius: 6px;
    border: 1px solid transparent;
    font-family: var(--luv-font-mono);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
}
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); }
body.theme-luv .calls-top-profit.positive,
body.theme-luv .call-history-result.positive {
    background: rgba(20, 196, 106, 0.12);
    border-color: rgba(20, 196, 106, 0.35);
}
body.theme-luv .calls-top-profit.negative,
body.theme-luv .call-history-result.negative {
    background: rgba(230, 57, 70, 0.12);
    border-color: rgba(230, 57, 70, 0.35);
}
body.theme-luv .calls-top-profit.neutral,
body.theme-luv .call-history-result.neutral {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--luv-line);
}
body.theme-luv .calls-top-prize {
    font-family: var(--luv-font-mono);
    font-size: 10px;
    font-weight: 600;
    color: var(--luv-orange-2);
    letter-spacing: 0.04em;
}

/* ====================== EMPTY STATES ====================== */
body.theme-luv .calls-disabled,
body.theme-luv .calls-no-active {
    position: relative;
    border-radius: var(--luv-r-lg);
    border: 1px solid var(--luv-line-strong);
    background: var(--luv-card);
    padding: 36px 28px;
    text-align: center;
    overflow: hidden;
}
body.theme-luv .calls-disabled::before,
body.theme-luv .calls-no-active::before { content: none; }

body.theme-luv #callsActive > * + * {
    margin-top: 56px;
}

body.theme-luv .calls-disabled-shell,
body.theme-luv .calls-no-active-shell {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 460px;
    margin: 0 auto;
}

body.theme-luv .calls-disabled-icon,
body.theme-luv .calls-no-active-icon {
    width: 60px; height: 60px;
    border-radius: var(--luv-r-md);
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--luv-line-strong);
    color: var(--luv-text-mute);
    box-shadow: none;
    margin-bottom: 22px;
}
body.theme-luv .calls-no-active-icon {
    background: rgba(255, 138, 31, 0.08);
    border-color: rgba(255, 138, 31, 0.35);
    color: var(--luv-orange);
}

body.theme-luv .calls-disabled-title,
body.theme-luv .calls-no-active-title {
    margin: 0 0 10px;
    font-family: var(--luv-font-display);
    color: var(--luv-text);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.05;
}
body.theme-luv .calls-disabled-text,
body.theme-luv .calls-no-active-text {
    margin: 0;
    color: var(--luv-text-dim);
    font-size: 15px;
    line-height: 1.55;
}

body.theme-luv .calls-no-active-actions {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

body.theme-luv .calls-create-btn,
body.theme-luv .calls-login-btn {
    margin-top: 18px;
    min-height: 42px;
    border-radius: var(--luv-r-md);
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: 1px solid transparent;
    transition: filter .15s, transform .12s;
}
body.theme-luv .calls-create-btn {
    color: #1a0a00;
    background: var(--luv-orange);
    box-shadow: none;
}
body.theme-luv .calls-create-btn:hover { filter: brightness(1.08); transform: none; }
body.theme-luv .calls-login-btn {
    color: var(--luv-text);
    background: transparent;
    border-color: var(--luv-line-strong);
}
body.theme-luv .calls-login-btn:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--luv-text);
    border-color: var(--luv-orange);
}

/* ====================== ACTIVE CALL CARD ====================== */
body.theme-luv .calls-active-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
body.theme-luv .calls-active-card {
    border-radius: var(--luv-r-lg);
    border: 1px solid var(--luv-line-strong);
    background: var(--luv-card);
    box-shadow: none;
    overflow: hidden;
    animation: callsFadeUp 0.4s ease both;
}
body.theme-luv .calls-active-selected {
    border-color: var(--luv-orange);
}
body.theme-luv .calls-active-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 6px;
    border: none;
    background: var(--luv-red);
    padding: 5px 10px;
    margin: 14px;
    color: #fff;
    font-family: var(--luv-font-body);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 800;
}
body.theme-luv .calls-badge-pending {
    color: #1a0a00;
    background: var(--luv-orange-2);
}
body.theme-luv .calls-live-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #fff;
    animation: callsPulse 1.8s ease-out infinite;
}
body.theme-luv .calls-dot-pending { background: #1a0a00; }

body.theme-luv .calls-active-content {
    display: grid;
    grid-template-columns: minmax(150px, 32%) 1fr;
    gap: 16px;
    padding: 0 16px 16px;
}
body.theme-luv .calls-active-img {
    width: 100%;
    min-height: 140px;
    max-height: 200px;
    height: 100%;
    object-fit: cover;
    border-radius: var(--luv-r-md);
    border: 1px solid var(--luv-line-strong);
}
body.theme-luv .calls-active-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
body.theme-luv .calls-active-name {
    margin: 0;
    font-family: var(--luv-font-display);
    font-size: clamp(22px, 2.4vw, 32px);
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.05;
    color: var(--luv-text);
}
body.theme-luv .calls-active-provider {
    margin: 6px 0 0;
    font-family: var(--luv-font-mono);
    color: var(--luv-text-mute);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
body.theme-luv .calls-active-caller,
body.theme-luv .calls-active-comment {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--luv-text-dim);
    font-size: 13px;
    line-height: 1.45;
}
body.theme-luv .calls-active-caller span {
    color: var(--luv-text);
    font-weight: 700;
}
body.theme-luv .calls-active-comment {
    color: var(--luv-orange-2);
    border-left: 2px solid var(--luv-orange);
    padding-left: 10px;
}

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;
}

/* ====================== HISTORY ====================== */
body.theme-luv #callsHistory {
    min-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: var(--luv-r-lg);
    border: 1px solid var(--luv-line);
    background: var(--luv-card);
    padding: 18px;
}
body.theme-luv .calls-history-title {
    margin: 0 0 14px;
    font-family: var(--luv-font-display);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--luv-text);
}
body.theme-luv .calls-history-title svg { color: var(--luv-orange); }

body.theme-luv .calls-history-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: auto;
    padding-right: 2px;
}
body.theme-luv .call-history-item {
    border: 1px solid var(--luv-line);
    background: rgba(0, 0, 0, 0.22);
    border-radius: var(--luv-r-md);
    padding: 10px;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    transition: border-color .2s, transform .2s;
    cursor: pointer;
}
body.theme-luv .call-history-item:hover {
    border-color: var(--luv-orange);
    transform: translateY(-2px);
}
body.theme-luv .call-history-img,
body.theme-luv .calls-history-img {
    width: 54px; height: 72px;
    border-radius: 7px;
    border: 1px solid var(--luv-line);
    object-fit: cover;
}
body.theme-luv .call-history-info { min-width: 0; }
body.theme-luv .call-history-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--luv-text);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
body.theme-luv .call-history-provider,
body.theme-luv .call-history-caller {
    font-family: var(--luv-font-mono);
    font-size: 11px;
    color: var(--luv-text-mute);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
body.theme-luv .call-history-meta {
    display: flex; flex-direction: column; align-items: flex-end; gap: 6px;
}
body.theme-luv .call-history-date {
    font-family: var(--luv-font-mono);
    font-size: 11px;
    color: var(--luv-text-mute);
}
body.theme-luv .calls-history-empty,
body.theme-luv .calls-loading {
    border-radius: var(--luv-r-lg);
    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;
}

/* ====================== 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-display);
    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; }

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; }

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;
}

/* ====================== FAQ ====================== */
body.theme-luv .calls-faq {
    margin-top: 28px;
}
body.theme-luv .calls-faq-title {
    margin: 0 0 14px;
    font-family: var(--luv-font-display);
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--luv-text);
    text-transform: none;
    display: block;
}
body.theme-luv .calls-faq-title::before { content: none; }

body.theme-luv .calls-faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
body.theme-luv .calls-faq-item {
    border: 1px solid var(--luv-line);
    border-radius: var(--luv-r-md);
    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);
    background: var(--luv-card);
}
body.theme-luv .calls-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--luv-text);
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: color .15s;
}
body.theme-luv .calls-faq-q::-webkit-details-marker { display: none; }
body.theme-luv .calls-faq-q:hover { color: var(--luv-orange-2); }
body.theme-luv .calls-faq-arrow {
    flex-shrink: 0;
    color: var(--luv-text-mute);
    transition: transform .22s, color .18s;
}
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: 12px 16px 14px;
    border-top: 1px solid var(--luv-line);
    font-size: 14px;
    color: var(--luv-text-dim);
    line-height: 1.65;
}

/* ====================== VERIFY CARD ====================== */
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-display);
    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;
    box-shadow: none;
    cursor: pointer;
    transition: filter .15s, transform .12s;
}
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: 1230px) {
    body.theme-luv .calls-page-layout {
        grid-template-columns: minmax(0, 1fr);
    }
    body.theme-luv .calls-main,
    body.theme-luv .calls-left-column,
    body.theme-luv .calls-right-column {
        grid-column: 1;
    }
    body.theme-luv .calls-main { order: 1; }
    body.theme-luv .calls-left-column {
        order: 2;
        position: relative;
        top: 0;
        height: auto;
        min-height: unset;
    }
    body.theme-luv .calls-right-column {
        order: 3;
        position: relative;
        top: 0;
        height: auto;
    }
    body.theme-luv .calls-top-sidebar,
    body.theme-luv .calls-queue-sidebar {
        height: auto;
        min-height: 200px;
        max-height: 360px;
    }
    body.theme-luv #callsHistory {
        height: auto;
        min-height: 200px;
        max-height: 420px;
    }
    body.theme-luv .luv-deco-card-spade,
    body.theme-luv .luv-deco-card-heart { display: none; }
}

@media (max-width: 860px) {
    body.theme-luv .calls-section { padding: 14px 14px 60px; }
    body.theme-luv .calls-hero { padding: 50px 14px 28px; }
    body.theme-luv .calls-active-content { grid-template-columns: 1fr; }
    body.theme-luv .calls-active-img { min-height: 0; height: 200px; }
    body.theme-luv .call-history-item {
        grid-template-columns: 48px minmax(0, 1fr) auto;
        gap: 8px;
    }
    body.theme-luv .call-history-img,
    body.theme-luv .calls-history-img {
        width: 48px; height: 64px;
    }
    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 { padding: 40px 12px 22px; }
    body.theme-luv .calls-section { padding: 10px 10px 50px; }
    body.theme-luv .calls-active-name { font-size: 26px; }
    body.theme-luv .calls-hero-chips { gap: 6px; }
    body.theme-luv .calls-hero-chip { font-size: 10.5px; padding: 5px 10px; }
    body.theme-luv .calls-modal {
        width: 96vw;
        max-height: calc(100dvh - 24px);
    }
    body.theme-luv .calls-top-sidebar,
    body.theme-luv .calls-queue-sidebar {
        min-height: 180px;
        max-height: 300px;
    }
    body.theme-luv .luv-floating-deco { display: none; }
}
