/* ============================================================
   FlixPicker Social Design System
   Matches mockups/shared.css — loaded by profile-view, feed,
   notifications, and all other social pages.
   ============================================================ */

/* ── GLASS CARD ─────────────────────────────────────────── */
.db-block, .glass-card {
    background: var(--card-bg, rgba(0,0,0,0.5));
    border: 1px solid var(--card-border, rgba(255,255,255,0.08));
    border-radius: 14px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 20px;
}

/* ── PAGE HEADER ────────────────────────────────────────── */
.page-header { margin-bottom: 1.5rem; }
.page-header h1 { color: #fff; margin: 0 0 4px 0; font-weight: 700; font-size: 2rem; }
.page-header .subtitle, .db-subtitle { font-size: 0.875rem; color: var(--text-muted, #9ca3af); margin: 0; }
.page-header .subtitle a { color: var(--text-muted, #9ca3af); text-decoration: none; }
.page-header .subtitle a:hover { color: #fff; }

/* ── SECTION TITLES ─────────────────────────────────────── */
.section-title {
    font-size: 0.9rem; font-weight: 700; color: #fff;
    text-transform: uppercase; letter-spacing: 0.6px;
    margin: 0 0 14px 0; display: flex; align-items: center; gap: 10px;
}
.section-title .count-badge {
    font-size: 0.7rem; color: var(--text-muted, #9ca3af);
    background: rgba(255,255,255,0.06); padding: 3px 8px;
    border-radius: 10px; font-weight: 500; letter-spacing: 0;
    text-transform: none;
}
.section-title .see-all {
    margin-left: auto; font-size: 0.75rem; color: var(--text-muted, #9ca3af);
    text-decoration: none; font-weight: 500; letter-spacing: 0;
    text-transform: none;
}
.section-title .see-all:hover { color: #fff; }

/* ── LAYOUT ─────────────────────────────────────────────── */
.social-container { padding: 24px 15px 60px; }
.row-2col { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; }
@media (max-width: 992px) { .row-2col { grid-template-columns: 1fr; row-gap: 0; } }
.mb-4 { margin-bottom: 24px; }

/* ── PROFILE HERO ───────────────────────────────────────── */
.profile-hero {
    background: var(--card-bg, rgba(0,0,0,0.5));
    border: 1px solid var(--card-border, rgba(255,255,255,0.08));
    border-radius: 14px;
    padding: 28px;
    backdrop-filter: blur(12px);
    margin-bottom: 24px;
}
.profile-hero-inner { display: flex; gap: 24px; align-items: flex-start; flex-wrap: wrap; }
.profile-avatar-wrap { position: relative; flex-shrink: 0; }
.profile-avatar {
    width: 120px; height: 120px; border-radius: 50%;
    border: 3px solid #c0392b; object-fit: cover;
    box-shadow: 0 0 0 5px rgba(192,57,43,0.2);
}
.online-dot {
    position: absolute; bottom: 6px; right: 6px;
    width: 18px; height: 18px; border-radius: 50%;
    background: #22c55e; border: 3px solid #0d0f14;
}
.profile-info { flex: 1; min-width: 260px; }
.profile-name { font-size: 1.7rem; font-weight: 700; margin: 0 0 4px 0; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.profile-handle { font-size: 0.9rem; color: var(--text-muted, #9ca3af); margin-bottom: 10px; }
.profile-bio { font-size: 0.9rem; color: #d1d5db; margin: 8px 0 12px 0; line-height: 1.6; max-width: 560px; }
.profile-meta { display: flex; gap: 18px; flex-wrap: wrap; font-size: 0.8rem; color: var(--text-muted, #9ca3af); margin-bottom: 14px; }
.profile-meta .dot { color: #374151; }
.profile-social { display: flex; gap: 10px; margin-bottom: 14px; }
.profile-social a {
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(255,255,255,0.06); color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    text-decoration: none; transition: all 0.2s; font-size: 14px;
}
.profile-social a:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.profile-counts {
    display: flex; gap: 28px; flex-wrap: wrap;
    padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.06);
}
.profile-counts .count-item { cursor: pointer; transition: color 0.2s; }
.profile-counts .count-item:hover .count-value { color: #e50914; }
.profile-counts .count-value { font-size: 1.15rem; font-weight: 700; color: #fff; display: block; }
.profile-counts .count-label { font-size: 0.72rem; color: var(--text-muted, #9ca3af); text-transform: uppercase; letter-spacing: 0.5px; }

/* ── PROFILE ACTION BUTTONS ─────────────────────────────── */
.profile-actions { display: flex; flex-direction: column; gap: 10px; min-width: 200px; }
.btn-follow {
    background: #e50914; color: #fff; border: none;
    padding: 10px 22px; font-weight: 700; border-radius: 8px;
    cursor: pointer; transition: all 0.2s; font-size: 0.85rem;
    text-transform: uppercase; letter-spacing: 0.5px;
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    text-decoration: none;
}
.btn-follow:hover { background: #f40d17; transform: translateY(-1px); }
.btn-follow.following {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
}
.btn-follow.following:hover { background: rgba(239,68,68,0.1); border-color: rgba(239,68,68,0.5); color: #ef4444; }
.btn-ghost-row { display: flex; gap: 8px; }
.btn-flix-ghost {
    flex: 1; background: rgba(255,255,255,0.06); color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 8px; font-size: 0.9rem; border-radius: 8px;
    cursor: pointer; transition: all 0.2s;
    display: inline-flex; align-items: center; justify-content: center;
    text-decoration: none;
}
.btn-flix-ghost:hover { background: rgba(255,255,255,0.12); }
.more-menu-wrap { position: relative; }
.more-dropdown {
    display: none; position: absolute; right: 0; top: calc(100% + 6px);
    background: #131418; border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px; min-width: 190px; z-index: 50; padding: 4px 0;
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.more-dropdown.open { display: block; }
.more-dropdown a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; font-size: 0.85rem; color: #e5e7eb; text-decoration: none;
}
.more-dropdown a:hover { background: rgba(255,255,255,0.05); }
.more-dropdown a.danger { color: #ef4444; }

/* ── AFFINITY PILL ──────────────────────────────────────── */
.affinity-pill {
    background: linear-gradient(135deg, rgba(229,9,20,0.15), rgba(192,57,43,0.25));
    border: 1px solid rgba(229,9,20,0.4);
    border-radius: 10px; padding: 10px 14px;
    display: flex; align-items: center; gap: 10px;
}
.affinity-value { font-size: 1.35rem; font-weight: 800; color: #fff; line-height: 1; }
.affinity-label { font-size: 0.65rem; color: #fca5a5; text-transform: uppercase; letter-spacing: 0.6px; font-weight: 700; }
.affinity-sub { font-size: 0.7rem; color: var(--text-muted, #9ca3af); margin-top: 2px; }
.affinity-info { color: #fca5a5; font-size: 0.8rem; cursor: help; margin-left: auto; }

/* ── PINNED PLAYLISTS ───────────────────────────────────── */
.pinned-section {
    background: linear-gradient(135deg, rgba(229,9,20,0.06), rgba(0,0,0,0.25));
    border: 1px solid rgba(229,9,20,0.2);
    border-radius: 14px; padding: 18px;
    position: relative; overflow: hidden; margin-bottom: 24px;
}
.pinned-section::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, #e50914, transparent);
}
.pinned-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 768px) { .pinned-grid { grid-template-columns: 1fr; } }
.pinned-card {
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px; overflow: hidden;
    transition: all 0.25s; cursor: pointer; position: relative;
    text-decoration: none; color: inherit; display: block;
}
.pinned-card:hover { transform: translateY(-4px); border-color: rgba(229,9,20,0.5); box-shadow: 0 12px 30px rgba(0,0,0,0.5); }
.pin-badge {
    position: absolute; top: 10px; right: 10px; z-index: 3;
    background: #e50914; color: #fff;
    width: 28px; height: 28px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; font-weight: 700;
    box-shadow: 0 2px 8px rgba(229,9,20,0.5);
}
.pinned-cover {
    height: 180px; background: #1a1a1a;
    display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; gap: 2px;
}
.pinned-cover img { width: 100%; height: 100%; object-fit: cover; }
.pinned-cover .big, .pinned-cover img.big { grid-row: 1 / span 2; }
.pinned-body { padding: 12px 14px; }
.pinned-title { font-size: 0.95rem; font-weight: 600; color: #fff; margin: 0 0 4px 0; }
.pinned-meta { font-size: 0.75rem; color: var(--text-muted, #9ca3af); display: flex; gap: 10px; align-items: center; }
.privacy-badge { font-size: 0.6rem; padding: 2px 8px; border-radius: 10px; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 700; }
.privacy-badge.public { background: rgba(34,197,94,0.15); color: #22c55e; }
.privacy-badge.private { background: rgba(245,197,24,0.15); color: #f5c518; }

/* ── TASTE FINGERPRINT ──────────────────────────────────── */
.fingerprint-row { display: flex; flex-wrap: wrap; gap: 10px; }
.fp-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 999px; padding: 8px 14px;
    font-size: 0.85rem; color: #fff; font-weight: 500; transition: all 0.2s;
}
.fp-pill:hover { background: rgba(255,255,255,0.08); }
.fp-pill .fp-pct {
    background: rgba(229,9,20,0.25); color: #fca5a5;
    padding: 2px 8px; border-radius: 10px; font-size: 0.7rem; font-weight: 700;
}
.fp-pill.top .fp-pct { background: rgba(229,9,20,0.4); color: #fff; }
.fp-empty {
    text-align: center; padding: 24px; color: var(--text-muted, #9ca3af); font-size: 0.85rem;
    background: rgba(255,255,255,0.02); border: 1px dashed rgba(255,255,255,0.1); border-radius: 10px;
}

/* ── STATS TILES ────────────────────────────────────────── */
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 8px; }
.stat-tile {
    text-align: center; background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; padding: 14px 8px;
}
.stat-value { font-size: 1.4rem; font-weight: 700; color: #fff; display: block; }
.stat-label { font-size: 0.7rem; color: var(--text-muted, #9ca3af); text-transform: uppercase; letter-spacing: 0.5px; }

/* ── ACTIVITY LIST ──────────────────────────────────────── */
.activity-list { display: flex; flex-direction: column; gap: 8px; }
.activity-item {
    display: flex; gap: 12px; align-items: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px; padding: 10px 14px; transition: all 0.2s;
}
.activity-item:hover { background: rgba(255,255,255,0.05); }
.activity-poster { width: 40px; height: 60px; border-radius: 5px; object-fit: cover; flex-shrink: 0; background: #222; }
.activity-body { flex: 1; min-width: 0; }
.activity-title { font-size: 0.9rem; font-weight: 600; color: #fff; margin: 0 0 2px 0; }
.activity-sub { font-size: 0.75rem; color: var(--text-muted, #9ca3af); }
.activity-rating { display: flex; gap: 2px; align-items: center; color: #f5c518; font-size: 0.8rem; margin-top: 3px; }
.activity-time { font-size: 0.72rem; color: #6b7280; white-space: nowrap; flex-shrink: 0; }
.activity-type-badge {
    font-size: 0.6rem; padding: 2px 7px; border-radius: 10px;
    text-transform: uppercase; letter-spacing: 0.5px; font-weight: 700;
    background: rgba(255,255,255,0.08); color: #9ca3af;
}
.activity-type-badge.movie { background: rgba(59,130,246,0.15); color: #60a5fa; }
.activity-type-badge.tv { background: rgba(168,85,247,0.15); color: #c084fc; }
.vibe-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.vibe-tag { font-size: 0.68rem; padding: 2px 8px; border-radius: 999px; background: rgba(229,9,20,0.12); color: #fca5a5; font-weight: 500; }

/* ── PLAYLIST CARD (small) ──────────────────────────────── */
.playlist-card-small {
    background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px; overflow: hidden; transition: all 0.25s; cursor: pointer; position: relative;
    text-decoration: none; color: inherit; display: block;
}
.playlist-card-small:hover { transform: translateY(-3px); border-color: rgba(229,9,20,0.4); box-shadow: 0 10px 25px rgba(0,0,0,0.45); }
.playlist-cover-small {
    height: 130px; background: #1a1a1a;
    display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; gap: 2px;
}
.playlist-cover-small img, .playlist-cover-small div { width: 100%; height: 100%; object-fit: cover; }
.playlist-cover-small .big { grid-row: 1 / span 2; }
.playlist-body-small { padding: 10px 12px; }
.playlist-title-small { font-size: 0.9rem; font-weight: 600; margin: 0 0 3px 0; color: #fff; }
.playlist-meta-small { font-size: 0.72rem; color: var(--text-muted, #9ca3af); }

/* ── FEED ───────────────────────────────────────────────── */
.feed-filter-bar { display: flex; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; align-items: center; }
.feed-tab {
    padding: 8px 16px; border-radius: 8px; font-size: 0.8rem; font-weight: 600;
    border: 1px solid rgba(255,255,255,0.08); background: none;
    color: #9ca3af; cursor: pointer; transition: all 0.2s;
    text-decoration: none;
}
.feed-tab.active { background: #c0392b; border-color: #c0392b; color: #fff; }
.feed-tab:hover:not(.active) { background: rgba(255,255,255,0.06); color: #fff; }
.feed-item {
    background: var(--card-bg, rgba(0,0,0,0.5));
    border: 1px solid var(--card-border, rgba(255,255,255,0.08));
    border-radius: 12px; padding: 14px 16px;
    display: flex; gap: 14px; margin-bottom: 10px;
    backdrop-filter: blur(12px); transition: all 0.2s;
}
.feed-item:hover { border-color: rgba(255,255,255,0.15); }
.feed-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; background: #333; }
.feed-main { flex: 1; min-width: 0; }
.feed-header { font-size: 0.82rem; color: var(--text-muted, #9ca3af); margin-bottom: 6px; }
.feed-header a { color: #fff; text-decoration: none; font-weight: 600; }
.feed-header a:hover { color: #e50914; }
.feed-content { display: flex; gap: 12px; align-items: flex-start; }
.feed-poster { width: 54px; height: 81px; border-radius: 6px; object-fit: cover; flex-shrink: 0; background: #222; }
.feed-details h4 { font-size: 0.95rem; font-weight: 600; margin: 0 0 4px 0; color: #fff; }
.feed-details .feed-sub { font-size: 0.75rem; color: var(--text-muted, #9ca3af); margin-bottom: 6px; }
.feed-stars { display: inline-flex; gap: 1px; color: #f5c518; font-size: 0.82rem; margin-right: 8px; }
.feed-time { font-size: 0.72rem; color: #6b7280; }
.feed-date-label {
    font-size: 0.72rem; color: var(--text-muted, #9ca3af); text-transform: uppercase;
    letter-spacing: 0.5px; margin: 16px 0 8px; font-weight: 600;
}
.feed-empty {
    text-align: center; padding: 60px 20px;
    background: var(--card-bg, rgba(0,0,0,0.5)); border: 1px solid var(--card-border, rgba(255,255,255,0.08));
    border-radius: 14px;
}
.feed-empty-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: rgba(229,9,20,0.1); color: #e50914;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.6rem; margin-bottom: 16px;
}
.feed-empty h3 { font-size: 1.2rem; color: #fff; margin: 0 0 6px 0; }
.feed-empty p { color: var(--text-muted, #9ca3af); margin-bottom: 16px; font-size: 0.9rem; }
.btn-flix-outline {
    background: transparent; color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    padding: 10px 22px; font-weight: 600; border-radius: 8px;
    transition: all 0.25s; font-size: 0.85rem; cursor: pointer;
    display: inline-flex; align-items: center; gap: 6px;
}
.btn-flix-outline:hover { background: rgba(255,255,255,0.08); }
.btn-flix-primary {
    background: #e50914; color: #fff; border: none;
    padding: 10px 22px; font-weight: 600; border-radius: 8px;
    transition: all 0.25s; font-size: 0.85rem; cursor: pointer;
    display: inline-flex; align-items: center; gap: 6px;
}
.btn-flix-primary:hover { background: #f40d17; transform: translateY(-1px); }

/* ── PEOPLE SEARCH (feed sidebar) ──────────────────────── */
.people-search-wrap {
    display: flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px; padding: 9px 12px; margin-bottom: 14px; transition: all 0.2s;
}
.people-search-wrap:focus-within { border-color: #e50914; background: rgba(255,255,255,0.07); }
.people-search-wrap i { color: #6b7280; font-size: 0.82rem; flex-shrink: 0; }
.people-search-wrap input { background: none; border: none; outline: none; color: #fff; font-size: 0.82rem; width: 100%; }
.people-search-wrap input::placeholder { color: #6b7280; }
.people-section-label {
    font-size: 0.68rem; color: var(--text-muted, #9ca3af); text-transform: uppercase;
    letter-spacing: 0.06em; font-weight: 600; margin-bottom: 10px;
}
.follower-row {
    display: flex; align-items: center; gap: 12px;
    padding: 10px; border-radius: 8px; transition: background 0.2s; cursor: pointer;
}
.follower-row:hover { background: rgba(255,255,255,0.04); }
.follower-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; background: #333; flex-shrink: 0; }
.follower-info { flex: 1; min-width: 0; }
.follower-name { font-size: 0.9rem; font-weight: 600; color: #fff; }
.follower-handle { font-size: 0.75rem; color: var(--text-muted, #9ca3af); }
.follower-row .btn-follow { padding: 5px 14px; font-size: 0.72rem; }

/* ── FOLLOWERS MODAL ────────────────────────────────────── */
.modal-backdrop-custom {
    position: fixed; inset: 0; background: rgba(0,0,0,0.7);
    backdrop-filter: blur(6px); z-index: 2000;
    display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-backdrop-custom.open { display: flex; }
.modal-panel {
    background: #131418; border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px; width: 100%; max-width: 460px;
    max-height: 80vh; overflow: hidden;
    display: flex; flex-direction: column;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}
.modal-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.modal-head h3 { margin: 0; font-size: 1.05rem; font-weight: 600; color: #fff; }
.modal-close {
    background: none; border: none; color: #9ca3af; font-size: 1.2rem;
    cursor: pointer; width: 32px; height: 32px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.08); color: #fff; }
.modal-tabs { display: flex; border-bottom: 1px solid rgba(255,255,255,0.08); }
.modal-tab {
    flex: 1; padding: 12px 16px; background: none; border: none;
    color: #9ca3af; font-weight: 600; font-size: 0.85rem;
    cursor: pointer; transition: all 0.2s; border-bottom: 2px solid transparent;
}
.modal-tab.active { color: #fff; border-bottom-color: #e50914; }
.modal-tab:hover:not(.active) { color: #fff; }
.modal-body-custom { padding: 12px; overflow-y: auto; flex: 1; }
.modal-empty { text-align: center; padding: 32px 16px; color: var(--text-muted, #9ca3af); font-size: 0.88rem; }

/* ── BLOCK CONFIRM MODAL ────────────────────────────────── */
.block-confirm-modal {
    position: fixed; inset: 0; background: rgba(0,0,0,0.8);
    display: none; align-items: center; justify-content: center; z-index: 2100;
}
.block-confirm-modal.open { display: flex; }
.block-confirm-box {
    background: #131418; border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px; padding: 28px 24px; max-width: 360px; width: 90%;
    text-align: center; box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}
.block-confirm-box h4 { margin: 0 0 10px; font-size: 1.1rem; }
.block-confirm-box p { font-size: 0.85rem; color: var(--text-muted, #9ca3af); margin-bottom: 20px; }
.block-confirm-btns { display: flex; gap: 10px; }
.block-confirm-btns button { flex: 1; padding: 10px; border-radius: 8px; cursor: pointer; font-weight: 600; border: none; }
.btn-cancel-block { background: rgba(255,255,255,0.08); color: #e5e7eb; }
.btn-confirm-block { background: #ef4444; color: #fff; }

/* ── NOTIFICATION BELL (header) ─────────────────────────── */
.notif-bell-wrap { position: relative; cursor: pointer; display: inline-flex; align-items: center; margin-left: 15px; }
.notif-bell-btn {
    background: none; border: none; color: #fff; font-size: 1.15rem;
    cursor: pointer; padding: 6px; border-radius: 50%;
    transition: background 0.2s; position: relative;
}
.notif-bell-btn:hover { background: rgba(255,255,255,0.08); }
.notif-badge {
    position: absolute; top: 0; right: 0;
    background: #e50914; color: #fff; font-size: 0.55rem; font-weight: 700;
    min-width: 16px; height: 16px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid #111217; padding: 0 2px;
}
.notif-badge.hidden { display: none; }
.notif-dropdown {
    display: none; position: absolute; right: 0; top: calc(100% + 8px);
    background: #131418; border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px; width: 320px; max-height: 420px;
    overflow: hidden; z-index: 1200; flex-direction: column;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}
.notif-dropdown.open { display: flex; }
.notif-dropdown-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.notif-dropdown-head h4 { margin: 0; font-size: 0.9rem; font-weight: 700; color: #fff; }
.notif-mark-all { background: none; border: none; color: #9ca3af; font-size: 0.72rem; cursor: pointer; }
.notif-mark-all:hover { color: #fff; }
.notif-list { overflow-y: auto; flex: 1; }
.notif-row {
    display: flex; gap: 12px; padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background 0.15s; cursor: pointer;
}
.notif-row:hover { background: rgba(255,255,255,0.03); }
.notif-row.unread { background: rgba(229,9,20,0.05); }
.notif-icon {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.08); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; flex-shrink: 0;
}
.notif-icon.follow { background: rgba(34,197,94,0.15); color: #22c55e; }
.notif-icon.like   { background: rgba(239,68,68,0.15); color: #ef4444; }
.notif-icon.playlist { background: rgba(251,146,60,0.15); color: #fb923c; }
.notif-body { flex: 1; min-width: 0; }
.notif-text { font-size: 0.82rem; color: #d1d5db; line-height: 1.4; margin: 0 0 2px; }
.notif-text strong { color: #fff; }
.notif-time { font-size: 0.7rem; color: #6b7280; }
.notif-unread-dot { width: 7px; height: 7px; border-radius: 50%; background: #e50914; flex-shrink: 0; align-self: center; }
.notif-empty { text-align: center; padding: 32px 16px; color: #6b7280; font-size: 0.85rem; }
.notif-see-all { display: block; text-align: center; padding: 10px; font-size: 0.78rem; color: #9ca3af; text-decoration: none; border-top: 1px solid rgba(255,255,255,0.06); }
.notif-see-all:hover { color: #fff; background: rgba(255,255,255,0.03); }

/* ── PIN SLOT EMPTY CARD ────────────────────────────────── */
.pin-slot-empty {
    border: 2px dashed rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    min-height: 220px; gap: 8px; padding: 20px;
    cursor: pointer; transition: border-color 0.2s, background 0.2s;
}
.pin-slot-empty:hover {
    border-color: rgba(192,57,43,0.45);
    background: rgba(192,57,43,0.04);
}
