.prs-wrap {
    max-width: 300px;
    width: 100%;
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 18px;
    overflow: hidden;
    font-family: 'Inter', 'DM Sans', 'Segoe UI', sans-serif;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .05), 0 4px 16px rgba(0, 0, 0, .06);
}

/* ── Header ─────────────────────────── */
.prs-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 13px 16px 11px;
    border-bottom: 1px solid #f0f0f0;
}

.prs-head__left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.prs-head__icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 13px;
    flex-shrink: 0;
}

.prs-head__title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #111;
    margin: 0;
}

/* Reseed */
.prs-reseed {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.prs-reseed__time {
    font-size: 10px;
    color: #aaa;
    line-height: 1.2;
    text-align: right;
}

.prs-reseed__btn {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 11px;
    border-radius: 20px;
    border: 1.5px solid #16a34a;
    background: #fff;
    color: #16a34a;
    cursor: pointer;
    transition: background .15s, color .15s;
    white-space: nowrap;
    line-height: 1.3;
}

.prs-reseed__btn:hover:not(:disabled) {
    background: #16a34a;
    color: #fff;
}

.prs-reseed__btn:disabled {
    border-color: #d1d1d1;
    color: #bbb;
    cursor: not-allowed;
}

/* ── Main Stats Row (3 cols) ─────────── */
.prs-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.prs-stat {
    padding: 13px 10px 11px;
    text-align: center;
    border-right: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.prs-stat:last-child {
    border-right: none;
}

.prs-stat__ico {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin: 0 auto 6px;
}

.prs-stat__ico--green {
    background: #f0fdf4;
    color: #16a34a;
}

.prs-stat__ico--amber {
    background: #fffbeb;
    color: #d97706;
}

.prs-stat__ico--blue {
    background: #eff6ff;
    color: #2563eb;
}

.prs-stat__num {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    line-height: 1;
    margin-bottom: 3px;
}

.prs-stat__label {
    font-size: 10px;
    font-weight: 600;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.prs-stat__delta {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 20px;
}

.prs-stat__delta--green {
    background: #f0fdf4;
    color: #15803d;
}

.prs-stat__delta--amber {
    background: #fffbeb;
    color: #b45309;
}

.prs-stat__delta--blue {
    background: #eff6ff;
    color: #1d4ed8;
}

.prs-stat__delta--gray {
    background: #f5f5f5;
    color: #666;
}

/* ── Engagement Row (merged icons) ───── */
.prs-engage {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid #f0f0f0;
}

.prs-engage__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 11px 8px;
    border-right: 1px solid #f0f0f0;
}

.prs-engage__item:last-child {
    border-right: none;
}

.prs-engage__ico {
    font-size: 14px;
    line-height: 1;
}

.prs-engage__ico--eye {
    color: #60a5fa;
}

.prs-engage__ico--like {
    color: #f87171;
}

.prs-engage__ico--dl {
    color: #34d399;
}

.prs-engage__ico--comm {
    color: #a78bfa;
}

.prs-engage__val {
    font-size: 14px;
    font-weight: 800;
    color: #111;
    line-height: 1;
}

.prs-engage__lbl {
    font-size: 9px;
    font-weight: 600;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: .04em;
}

/* ── Traffic ─────────────────────────── */
.prs-traffic {
    padding: 10px 14px 12px;
    border-bottom: 1px solid #f0f0f0;
    background: #fafafa;
}

.prs-traffic__head {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.prs-traffic__head-ico {
    font-size: 11px;
    color: #999;
}

.prs-traffic__title {
    font-size: 10px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.prs-traffic__row {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 4px 0;
    border-bottom: 1px solid #efefef;
}

.prs-traffic__row:last-child {
    border-bottom: none;
}

.prs-traffic__row-ico {
    font-size: 11px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.prs-traffic__row-ico--dl {
    color: #3b82f6;
}

.prs-traffic__row-ico--ul {
    color: #10b981;
}

.prs-traffic__row-ico--sp {
    color: #f59e0b;
}

.prs-traffic__row-lbl {
    font-size: 11px;
    color: #888;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.prs-traffic__row-val {
    font-size: 11px;
    font-weight: 700;
    color: #333;
    text-align: right;
    white-space: nowrap;
}

/* ── Notices ─────────────────────────── */
.prs-notice {
    padding: 8px 14px;
    font-size: 11px;
    color: #92400e;
    background: #fffbeb;
    border-left: 3px solid #f59e0b;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.prs-notice i {
    font-size: 11px;
    margin-top: 1px;
    flex-shrink: 0;
    color: #d97706;
}

/* ============================================ SIDEBAR NAVIGATOR — Modern White UI Bootstrap 5 + MDB 5 + Font Awesome 5 Pro ============================================ */ /* ---------- Sidebar Wrapper ---------- */
.sb-wrapper {
    width: 210px;
    max-width: 210px;
    background: #ffffff;
    border-right: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 12px 10px 20px;
    font-family: 'Nunito', 'Segoe UI', sans-serif;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

/* ---------- Nav List ---------- */
.sb-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ---------- Nav Item ---------- */
.sb-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 10px;
    cursor: pointer;
    color: #3a3a3a;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.18s ease, color 0.18s ease, transform 0.15s ease;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sb-item:hover {
    background: #f5f7ff;
    color: #3e63dd;
    transform: translateX(3px);
    text-decoration: none;
}

.sb-item.sb-active {
    background: #eef1fd;
    color: #3e63dd;
    font-weight: 700;
}

.sb-item.sb-active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 3px;
    background: #3e63dd;
    border-radius: 0 3px 3px 0;
}

/* ---------- Icons ---------- */
.sb-item i, .sb-item .sb-icon {
    width: 20px;
    text-align: center;
    font-size: 15px;
    flex-shrink: 0;
    color: #7a8099;
    transition: color 0.18s ease;
}

.sb-item:hover i, .sb-item.sb-active i {
    color: #3e63dd;
}

/* ---------- Badge ---------- */
.sb-badge {
    margin-left: auto;
    background: #f64a35;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 20px;
    min-width: 20px;
    text-align: center;
    flex-shrink: 0;
    letter-spacing: 0.3px;
}

.sb-badge-new {
    background: #8c25e7;
}

.sb-badge-green {
    background: #22c55e;
}

/* ---------- Divider ---------- */
.sb-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 8px 14px;
    border: none;
}

/* ---------- Section Header (Expandable) ---------- */
.sb-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 14px;
    border-radius: 10px;
    cursor: pointer;
    color: #1a1a2e;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    transition: background 0.18s ease;
    user-select: none;
}

.sb-section-header:hover {
    background: #f5f7ff;
}

.sb-section-header i.sb-sec-icon {
    color: #3e63dd;
    font-size: 14px;
    margin-right: 8px;
}

.sb-section-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sb-section-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ---------- Arrow ---------- */
.sb-arrow {
    font-size: 11px;
    color: #9a9db0;
    transition: transform 0.25s ease;
    display: inline-block;
}

.sb-arrow.open {
    transform: rotate(180deg);
}

/* ---------- Expandable Content ---------- */
.sb-expand-body {
    display: none;
    overflow: hidden;
    padding-left: 10px;
}

.sb-expand-body.open {
    display: block;
    animation: sbSlideDown 0.2s ease;
}

@keyframes sbSlideDown {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sub-items inside expandable */
.sb-expand-body .sb-item {
    font-size: 13.5px;
    font-weight: 400;
    padding: 7px 12px;
    color: #555;
}

.sb-expand-body .sb-item:hover {
    color: #3e63dd;
}

.sb-expand-body .sb-item i {
    font-size: 13px;
}

/* ---------- Upload / Add Button ---------- */
.sb-add-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    color: #3e63dd;
    background: #eef1fd;
    transition: background 0.18s, color 0.18s;
    text-decoration: none;
    flex-shrink: 0;
}

.sb-add-btn:hover {
    background: #3e63dd;
    color: #fff;
    text-decoration: none;
}

.sb-add-btn-danger {
    color: #f64a35;
    background: #fff0ee;
}

.sb-add-btn-danger:hover {
    background: #f64a35;
    color: #fff;
}

/* ---------- Notification Box ---------- */
.sb-notification-box {
    position: fixed;
    bottom: 60px;
    right: 24px;
    width: 320px;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-left: 4px solid #3e63dd;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    padding: 16px 18px;
    border-radius: 12px;
    z-index: 9999;
    display: none;
    transition: opacity 0.3s ease;
}

.sb-notification-box.show {
    display: block;
    animation: sbNotifIn 0.35s ease;
}

@keyframes sbNotifIn {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.sb-notif-title {
    font-weight: 700;
    font-size: 14px;
    color: #1a1a2e;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.sb-notif-title::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3e63dd;
    flex-shrink: 0;
}

.sb-notif-content {
    color: #555;
    font-size: 13px;
    line-height: 1.5;
}

.sb-notif-content a {
    color: #3e63dd;
    font-weight: 600;
    text-decoration: none;
}

.sb-notif-content a:hover {
    text-decoration: underline;
}

.sb-notif-close {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 18px;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
    transition: color 0.15s;
}

.sb-notif-close:hover {
    color: #333;
}

/* ---------- Scrollbar (optional nice touch) ---------- */
.sb-wrapper::-webkit-scrollbar {
    width: 4px;
}

.sb-wrapper::-webkit-scrollbar-thumb {
    background: #dde0f0;
    border-radius: 4px;
}


/* ===== ОБЁРТКА ===== */
.dj-card-wrap {
    max-width: 225px;
    width: 100%;
    font-family: "Segoe UI", "Helvetica Neue", sans-serif;
}

/* ===== КАРТОЧКА ===== */
.dj-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    padding: 16px 14px 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    transition: box-shadow .25s ease, transform .25s ease;
}
.dj-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,.11);
    transform: translateY(-2px);
}

/* ===== ШАПКА ===== */
.dj-card__header {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 13px;
}

/* Аватар */
.dj-card__avatar-wrap {
    position: relative;
    flex-shrink: 0;
}
.dj-card__avatar {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid #f0f0f0;
    display: block;
}
.dj-card__status-dot {
    position: absolute;
    bottom: -3px;
    right: -3px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #adb5bd;
    border: 2px solid #fff;
}
.dj-card__status-dot--online {
    background: #12c16a;
    animation: dj-pulse-dot 1.8s infinite;
}
@keyframes dj-pulse-dot {
    0%,100% { box-shadow: 0 0 0 0 rgba(18,193,106,.4); }
    50%      { box-shadow: 0 0 0 5px rgba(18,193,106,0); }
}

/* Мета */
.dj-card__meta {
    min-width: 0;
    flex: 1;
}
.dj-card__badge {
    display: inline-flex;
    align-items: center;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .06em;
    border-radius: 20px;
    padding: 2px 9px;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.dj-card__badge--live {
    background: #eafaf2;
    color: #0da35a;
    border: 1px solid #bef2d9;
}
.dj-card__badge--off {
    background: #f5f5f5;
    color: #888;
    border: 1px solid #e0e0e0;
}
.dj-pulse-icon {
    animation: dj-blink 1.2s step-start infinite;
}
@keyframes dj-blink {
    0%,100% { opacity:1; } 50% { opacity:.2; }
}
.dj-card__name {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.25;
}

/* ===== РАЗДЕЛИТЕЛЬ ===== */
.dj-card__divider {
    height: 1px;
    background: #f2f2f2;
    margin: 0 -2px 13px;
}

/* ===== ОБЛОЖКА ТРЕКА ===== */
.dj-card__cover-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
    height: 90px;
}
.dj-card__cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.dj-card__cover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.28);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}

/* ===== ТРЕК ===== */
.dj-card__track {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 11px;
}
.dj-card__track-icon-wrap {
    margin-top: 2px;
    font-size: 15px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}
.dj-spin-music {
    display: inline-block;
    animation: dj-rock 1.1s ease-in-out infinite alternate;
}
@keyframes dj-rock {
    from { transform: rotate(-15deg); }
    to   { transform: rotate(15deg); }
}
.dj-card__track-info {
    min-width: 0;
    flex: 1;
}
.dj-card__track-artist {
    font-size: 11px;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dj-card__track-title {
    font-size: 12px;
    color: #222;
    font-weight: 500;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== ТЕГИ ===== */
.dj-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 13px;
}
.dj-card__tag {
    display: inline-flex;
    align-items: center;
    font-size: 10px;
    color: #666;
    background: #f7f7f7;
    border: 1px solid #ececec;
    border-radius: 20px;
    padding: 3px 9px;
    font-weight: 500;
    letter-spacing: .02em;
    white-space: nowrap;
}

/* ===== КНОПКА ===== */
.dj-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 9px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .02em;
    color: #ffffff;
    background: var(--dj-accent, #6f42c1);
    text-decoration: none;
    border: none;
    transition: filter .2s ease, transform .2s ease;
    position: relative;
    overflow: hidden;
}
.dj-card__btn:hover {
    filter: brightness(1.12);
    color: #fff;
    transform: translateY(-1px);
}
.dj-card__btn:active {
    transform: translateY(0);
    filter: brightness(.95);
}
.dj-card__btn-badge {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .06em;
    background: rgba(255,255,255,.22);
    border-radius: 20px;
    padding: 2px 7px;
    text-transform: uppercase;
}

.psc-wrap { width: 100%; max-width: 250px; background: #ffffff; border-radius: 18px; border: 1px solid #e8eaed; padding: 20px 16px 14px; display: flex; flex-direction: column; gap: 0; font-family: 'Segoe UI', system-ui, sans-serif; } .psc-label { font-size: 10px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: #b0b7c3; margin: 0 2px 8px; display: block; } .psc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-bottom: 7px; } .psc-sep { height: 1px; background: #f0f2f5; margin: 10px 0; } /* Базовая кнопка */ .psc-btn { display: flex; align-items: center; justify-content: center; gap: 7px; padding: 11px 8px; border-radius: 12px; border: none; font-size: 12.5px; font-weight: 600; cursor: pointer; text-decoration: none !important; transition: background 0.15s, color 0.15s; line-height: 1; white-space: nowrap; } .psc-btn i { font-size: 14px; } .psc-btn-full { width: 100%; margin-bottom: 7px; } /* Синяя — Сообщение */ .psc-btn-msg { background: #1877f2; color: #fff !important; } .psc-btn-msg:hover { background: #1563cc; color: #fff !important; } /* Серая призрак — Почта */ .psc-btn-mail { background: #f0f2f5; color: #444950 !important; } .psc-btn-mail:hover { background: #e4e6ea; color: #111 !important; } /* Зелёная — Друзья */ .psc-btn-friend { background: #e7f3e8; color: #1a7a29 !important; } .psc-btn-friend:hover { background: #1a7a29; color: #fff !important; } /* Серая — Блок / нейтральные */ .psc-btn-muted { background: #f0f2f5; color: #65676b !important; } .psc-btn-muted:hover { background: #e4e6ea; color: #333 !important; } /* Удалить из друзей */ .psc-btn-unfriend { background: #f0f2f5; color: #444950 !important; width: 100%; margin-bottom: 7px; } .psc-btn-unfriend:hover { background: #fff3e0; color: #c2410c !important; } /* Разблокировать */ .psc-btn-unblock { background: #fff0f0; color: #c92a2a !important; width: 100%; margin-bottom: 7px; } .psc-btn-unblock:hover { background: #c92a2a; color: #fff !important; } /* Оповестить */ .psc-btn-notify { background: #f0f2f5; color: #65676b !important; width: 100%; margin-bottom: 7px; } .psc-btn-notify:hover { background: #fff8e1; color: #854f0b !important; } /* Sysop */ .psc-btn-sysop { background: #f3f0ff; color: #5b21b6 !important; width: 100%; margin-bottom: 7px; } .psc-btn-sysop:hover { background: #5b21b6; color: #fff !important; } /* Убрать мониторинг */ .psc-btn-mon-del { background: #fff0f0; color: #c92a2a !important; width: 100%; margin-bottom: 7px; } .psc-btn-mon-del:hover { background: #c92a2a; color: #fff !important; } /* Жалоба — тихая */ .psc-btn-report { display: flex; align-items: center; justify-content: center; gap: 7px; width: 100%; padding: 9px 8px; border-radius: 12px; border: none; background: transparent; color: #bcc0c4; font-size: 12px; font-weight: 500; cursor: pointer; transition: background 0.15s, color 0.15s; } .psc-btn-report:hover { background: #fff0f0; color: #e03131; } /* Редактировать профиль */ .psc-btn-edit { background: #f0f2f5; color: #444950 !important; width: 100%; } .psc-btn-edit:hover { background: #e4e6ea; color: #111 !important; }