/* ── Компактная полоса статистики ── */
.stats-compact {
    display: flex;
    align-items: center;
    background: var(--card);
    border-radius: var(--br-16);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 0.9rem 0;
}

.stats-compact__item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.35rem 0;
    position: relative;
    text-decoration: none;
    cursor: default;
    transition: var(--transition-ease-2);
}

.stats-compact__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(255, 255, 255, 0.04);
}

/* ── Точки ── */
.stats-compact__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--span);
    opacity: 0.45;
    flex-shrink: 0;
    transition: var(--transition-ease-2);
}

.stats-compact__dot--vip {
    background: var(--money);
    opacity: 0.7;
    box-shadow: 0 0 8px rgba(240, 178, 50, 0.3);
}

.stats-compact__dot--danger {
    background: #e85454;
    opacity: 0.5;
}

/* ── Текст ── */
.stats-compact__info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.stats-compact__number {
    font-family: var(--font-family-1);
    font-size: 1.35rem;
    font-weight: var(--font-weight-7);
    color: var(--span);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.stats-compact__label {
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--span-half);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

/* ── VIP ── */
.stats-compact__item--vip {
    cursor: pointer;
}

.stats-compact__item--vip .stats-compact__number {
    color: var(--money);
}

.stats-compact__item--vip .stats-compact__label {
    color: var(--money);
    opacity: 0.6;
}

.stats-compact__arrow {
    width: 14px;
    height: 14px;
    fill: var(--money);
    opacity: 0;
    transform: translate(-4px, 4px);
    transition: var(--transition-ease-2);
    flex-shrink: 0;
}

.stats-compact__item--vip:hover .stats-compact__arrow {
    opacity: 0.7;
    transform: translate(0, 0);
}

.stats-compact__item--vip:hover .stats-compact__dot--vip {
    box-shadow: 0 0 12px rgba(240, 178, 50, 0.5);
    opacity: 1;
}

/* ── Hover эффекты ── */
.stats-compact__item:hover .stats-compact__dot {
    opacity: 0.8;
    transform: scale(1.3);
}

.stats-compact__item:hover .stats-compact__number {
    color: var(--text-custom);
}

.stats-compact__item--vip:hover .stats-compact__number {
    color: var(--money);
    text-shadow: 0 0 20px rgba(240, 178, 50, 0.2);
}

/* ── Анимация появления ── */
@keyframes statSlideUp {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.stats-compact__item {
    animation: statSlideUp 0.4s ease-out both;
}
.stats-compact__item:nth-child(2) { animation-delay: 0.04s; }
.stats-compact__item:nth-child(3) { animation-delay: 0.08s; }
.stats-compact__item:nth-child(4) { animation-delay: 0.12s; }
.stats-compact__item:nth-child(5) { animation-delay: 0.16s; }
.stats-compact__item:nth-child(6) { animation-delay: 0.2s; }

/* ── Адаптив ── */
@media (max-width: 768px) {
    .stats-compact {
        flex-wrap: wrap;
        padding: 0.6rem 0;
    }
    .stats-compact__item {
        flex: 1 1 33.33%;
        padding: 0.5rem 0;
    }
    .stats-compact__item:nth-child(3)::after {
        display: none;
    }
    .stats-compact__item:not(:last-child)::after {
        height: 60%;
        top: 20%;
    }
}

@media (max-width: 480px) {
    .stats-compact__item {
        flex: 1 1 50%;
    }
    .stats-compact__number {
        font-size: 1.15rem;
    }
    .stats-compact__item:nth-child(2)::after,
    .stats-compact__item:nth-child(4)::after {
        display: none;
    }
}