/* F2AT — Leads Received real hourly chart.
   Read-only frontend UI polish. No tracking/wallet mutation. */
.lcpi-front-desktop .lcpi-leads-chart-panel {
    position: relative;
    overflow: hidden;
    min-height: 222px;
    padding: 18px 18px 16px;
    background:
        radial-gradient(circle at 82% 20%, rgba(168, 85, 247, .18), transparent 34%),
        linear-gradient(180deg, rgba(12, 20, 48, .96), rgba(7, 12, 32, .98));
}

.lcpi-front-desktop .lcpi-leads-chart-panel::before {
    content: "";
    position: absolute;
    inset: 48px 18px 28px 18px;
    pointer-events: none;
    opacity: .22;
    background-image:
        linear-gradient(rgba(104, 128, 255, .42) 1px, transparent 1px),
        linear-gradient(90deg, rgba(104, 128, 255, .42) 1px, transparent 1px);
    background-size: 64px 42px;
    mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
}

.lcpi-front-desktop .lcpi-leads-chart-panel h3 {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 10px;
    font-size: 17px;
    font-weight: 800;
    color: #eef3ff;
}

.lcpi-front-desktop .lcpi-leads-chart-panel h3 small {
    margin-left: auto;
    font-size: 12px;
    font-weight: 700;
    color: rgba(190, 198, 229, .72);
}

.lcpi-front-desktop .lcpi-chart-title-icon {
    display: inline-grid;
    place-items: center;
    width: 21px;
    height: 21px;
    font-size: 16px;
    filter: drop-shadow(0 0 12px rgba(52, 211, 255, .55));
}

.lcpi-front-desktop .lcpi-hourly-chart {
    position: relative;
    z-index: 2;
    min-height: 160px;
}

.lcpi-front-desktop .lcpi-hourly-chart svg {
    display: block;
    width: 100%;
    height: 164px;
    overflow: visible;
}

.lcpi-front-desktop .lcpi-chart-grid line {
    stroke: rgba(126, 151, 255, .16);
    stroke-width: 1;
}

.lcpi-front-desktop .lcpi-lead-point circle {
    fill: #eaf6ff;
    stroke: rgba(75, 225, 255, .9);
    stroke-width: 2;
    filter: drop-shadow(0 0 8px rgba(75, 225, 255, .65));
}

.lcpi-front-desktop .lcpi-lead-xlabel {
    fill: rgba(197, 207, 240, .68);
    font-size: 10px;
    font-weight: 700;
    text-anchor: middle;
}

.lcpi-front-desktop .lcpi-chart-meta {
    position: absolute;
    right: 18px;
    top: 6px;
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(12, 22, 54, .76);
    border: 1px solid rgba(117, 145, 255, .18);
    color: rgba(218, 225, 255, .74);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}

.lcpi-front-desktop .lcpi-chart-meta strong {
    color: #fff;
    font-size: 14px;
}

.lcpi-front-desktop .lcpi-chart-meta span {
    font-size: 11px;
    white-space: nowrap;
}

.lcpi-front-desktop .lcpi-chart-empty {
    display: grid;
    place-items: center;
    min-height: 150px;
    text-align: center;
    color: rgba(213, 222, 255, .78);
}

.lcpi-front-desktop .lcpi-chart-empty strong {
    display: block;
    margin-bottom: 5px;
    color: #eef3ff;
    font-size: 16px;
}

.lcpi-front-desktop .lcpi-chart-empty span {
    max-width: 260px;
    font-size: 12px;
    line-height: 1.35;
}

@media (max-width: 1120px) {
    .lcpi-front-desktop .lcpi-leads-chart-panel {
        min-height: 210px;
    }
    .lcpi-front-desktop .lcpi-hourly-chart svg {
        height: 150px;
    }
}
