/* ======================================
   WP (Well Played) — Global Stylesheet
   ====================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --bg-primary: #0a0a0a;
    --bg-panel: #111113;
    --bg-card: #1a1a1d;
    --bg-elevated: #222225;
    --accent: #ff4655;
    --accent-glow: rgba(255, 70, 85, 0.15);
    --text-primary: #f0f0f0;
    --text-secondary: #a0a0a8;
    --text-muted: #5a5a65;
    --border: #2a2a2e;
    --border-hover: #3a3a40;
    --glass: rgba(26,26,29,0.75);
    --radius: 12px;
    --radius-lg: 16px;
    --radius-full: 999px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
.hidden { display: none !important; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow: hidden;
    height: 100vh;
    display: flex;
}

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }

/* ---- Animations ---- */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideIn { from { opacity: 0; transform: translateX(-12px); } to { opacity: 1; transform: translateX(0); } }
@keyframes wpPop { 0% { transform: scale(1); } 50% { transform: scale(1.2); } 100% { transform: scale(1); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes pulse-glow { 0%,100% { box-shadow: 0 0 5px var(--accent-glow); } 50% { box-shadow: 0 0 20px var(--accent-glow); } }
@keyframes spin { to { transform: rotate(360deg); } }

.animate-fade-in { animation: fadeInUp 0.45s ease-out forwards; }
.animate-fade { animation: fadeIn 0.3s ease-out forwards; }
.animate-slide { animation: slideIn 0.35s ease-out forwards; }
.wp-animate { animation: wpPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }

.skeleton {
    background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-elevated) 50%, var(--bg-card) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius);
}

/* ---- Layout ---- */
.sidebar {
    width: 260px;
    min-width: 260px;
    background: var(--bg-panel);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    z-index: 20;
    transition: transform var(--transition);
}

.main-content {
    flex: 1;
    overflow-y: auto;
    scroll-behavior: smooth;
    position: relative;
}

.right-panel {
    width: 320px;
    min-width: 320px;
    background: var(--bg-panel);
    border-left: 1px solid var(--border);
    overflow-y: auto;
    padding: 24px 20px;
    z-index: 10;
}

/* ---- Logo ---- */
.logo { font-size: 28px; font-weight: 900; letter-spacing: -2px; color: #fff; }
.logo-dot { color: var(--accent); font-size: 34px; line-height: 0; }

/* ---- Nav Items ---- */
.nav-item {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 16px; border-radius: var(--radius);
    color: var(--text-secondary); font-weight: 500; font-size: 14px;
    cursor: pointer; transition: all var(--transition);
    border: none; background: none; width: 100%; text-align: left;
}
.nav-item:hover { background: var(--bg-elevated); color: #fff; }
.nav-item.active { background: var(--bg-elevated); color: #fff; box-shadow: inset 3px 0 0 var(--accent); }
.nav-item .icon { font-size: 18px; width: 24px; text-align: center; }

/* ---- Cards ---- */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.card:hover { border-color: var(--border-hover); }
.profile-card { overflow: visible; }

/* ---- Post Cards ---- */
.post-card { margin-bottom: 20px; overflow: visible; }
.post-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.3); }
.post-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px 8px; }
.post-user { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.post-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px; color: #fff; flex-shrink: 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
}
.post-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.post-username { font-weight: 700; font-size: 14px; color: #fff; }
.post-meta { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.post-game-tag {
    font-size: 9px; font-weight: 700; text-transform: uppercase;
    padding: 3px 8px; border-radius: var(--radius-full);
    color: #000; letter-spacing: 0.5px;
}
.post-content { padding: 4px 20px 12px; font-size: 14px; line-height: 1.6; color: var(--text-primary); }

.post-media { padding: 0 12px 12px; }
.post-media img, .post-media video {
    width: 100%; border-radius: var(--radius);
    max-height: 420px; object-fit: cover; cursor: pointer;
}
.post-media-grid { display: grid; gap: 4px; padding: 0 12px 12px; }
.post-media-grid.grid-2 { grid-template-columns: 1fr 1fr; }
.post-media-grid.grid-3 { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; }
.post-media-grid.grid-3 > :first-child { grid-row: 1 / 3; }
.post-media-grid img, .post-media-grid video {
    width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius);
    min-height: 140px; cursor: pointer;
}

.post-actions {
    display: flex; align-items: center; gap: 6px;
    padding: 12px 20px; border-top: 1px solid var(--border);
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 20px; border-radius: var(--radius-full);
    font-weight: 700; font-size: 13px; cursor: pointer;
    border: none; transition: all var(--transition);
}
.btn-primary { background: #fff; color: #000; }
.btn-primary:hover { background: #e0e0e0; transform: scale(1.03); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: #e03e4d; transform: scale(1.03); }
.btn-outline {
    background: transparent; border: 1px solid var(--border);
    color: var(--text-secondary);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost { background: transparent; color: var(--text-secondary); padding: 8px 14px; }
.btn-ghost:hover { background: var(--bg-elevated); color: #fff; }

.wp-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px; border-radius: var(--radius-full);
    font-weight: 700; font-size: 13px; cursor: pointer;
    border: 1px solid; transition: all var(--transition);
    background: transparent;
}
.wp-btn:hover { transform: scale(1.05); }
.wp-btn .wp-count {
    background: rgba(0,0,0,0.3); padding: 2px 8px;
    border-radius: var(--radius-full); font-size: 12px; color: #fff;
}

.comment-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px; border-radius: var(--radius-full);
    font-size: 13px; cursor: pointer; color: var(--text-secondary);
    background: transparent; border: 1px solid transparent;
    transition: all var(--transition);
}
.comment-btn:hover { color: #fff; background: var(--bg-elevated); }

/* ---- Comments ---- */
.comments-section {
    border-top: 1px solid var(--border);
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0;
}
.comments-section.open { max-height: 800px; overflow-y: auto; padding: 4px 0; }
.comment-item {
    display: flex; gap: 10px; padding: 12px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    animation: fadeIn 0.2s ease;
}
.comment-avatar {
    width: 30px; height: 30px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700; color: #fff; flex-shrink: 0;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}
.comment-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.comment-body { flex: 1; }
.comment-author { font-size: 12px; font-weight: 700; color: #fff; }
.comment-text { font-size: 13px; color: var(--text-secondary); margin-top: 2px; line-height: 1.4; }
.comment-time { font-size: 10px; color: var(--text-muted); margin-top: 3px; }
.comment-input-row {
    display: flex; gap: 10px; padding: 12px 20px; align-items: center;
    border-top: 1px solid var(--border);
}
.comment-input-row input {
    flex: 1; background: var(--bg-primary); border: 1px solid var(--border);
    border-radius: var(--radius-full); padding: 8px 16px;
    color: #fff; font-size: 13px; outline: none;
    transition: border-color var(--transition);
}
.comment-input-row input:focus { border-color: var(--accent); }

/* ---- Post Composer ---- */
.composer {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 20px; margin-bottom: 24px;
}
.composer-row { display: flex; gap: 12px; align-items: center; }
.composer-input {
    flex: 1; background: var(--bg-primary); border: 1px solid var(--border);
    border-radius: var(--radius-full); padding: 10px 18px;
    color: #fff; font-size: 14px; outline: none;
    transition: border-color var(--transition);
}
.composer-input:focus { border-color: var(--text-muted); }
.composer-toolbar {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 14px; padding-left: 54px;
}
.composer-select {
    background: var(--bg-primary); color: var(--text-secondary);
    border: 1px solid var(--border); border-radius: var(--radius);
    padding: 6px 12px; font-size: 13px; outline: none; cursor: pointer;
}
.media-upload-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px; border-radius: var(--radius-full);
    background: transparent; border: 1px solid var(--border);
    color: var(--text-secondary); font-size: 13px; cursor: pointer;
    transition: all var(--transition);
}
.media-upload-btn:hover { border-color: var(--accent); color: var(--accent); }
.media-preview-row {
    display: flex; gap: 8px; margin-top: 12px; padding-left: 54px;
    flex-wrap: wrap;
}
.media-preview-item {
    position: relative; width: 72px; height: 72px;
    border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--border);
}
.media-preview-item img, .media-preview-item video {
    width: 100%; height: 100%; object-fit: cover;
}
.media-preview-remove {
    position: absolute; top: 2px; right: 2px;
    width: 18px; height: 18px; border-radius: 50%;
    background: rgba(0,0,0,0.7); color: #fff;
    font-size: 10px; display: flex; align-items: center; justify-content: center;
    cursor: pointer; border: none;
}

/* ---- Profile Page ---- */
.profile-banner {
    height: 200px; position: relative; overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}
.profile-banner img { width: 100%; height: 100%; object-fit: cover; }
.profile-banner-edit {
    position: absolute; bottom: 12px; right: 12px; z-index: 2;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius);
    color: #fff; padding: 6px 14px; font-size: 12px; cursor: pointer;
}
.profile-info {
    position: relative; padding: 0 28px 24px; margin-top: -50px;
}
.profile-avatar-wrap {
    width: 100px; height: 100px; border-radius: 50%;
    border: 4px solid var(--bg-card); position: relative;
    display: inline-block; overflow: hidden;
    background: linear-gradient(135deg, #667eea, #764ba2);
}
.profile-avatar-wrap img { width: 100%; height: 100%; object-fit: cover; }
.profile-avatar-wrap .avatar-letter {
    width: 100%; height: 100%; display: flex;
    align-items: center; justify-content: center;
    font-size: 36px; font-weight: 900; color: #fff;
}
.profile-avatar-edit {
    position: absolute; bottom: 4px; right: 4px;
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--accent); color: #fff; font-size: 12px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; border: 2px solid var(--bg-card);
}
.profile-name { font-size: 24px; font-weight: 800; margin-top: 12px; }
.profile-rank { font-size: 13px; color: var(--accent); font-weight: 600; margin-top: 2px; }
.admin-badge {
    display: inline-flex; align-items: center; gap: 4px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: #fff; font-size: 10px; font-weight: 800;
    padding: 3px 10px; border-radius: var(--radius-full);
    text-transform: uppercase; letter-spacing: 0.5px;
    margin-left: 8px; vertical-align: middle;
}
.profile-bio { font-size: 14px; color: var(--text-secondary); margin-top: 8px; line-height: 1.5; max-width: 500px; }
.profile-games { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px; }
.profile-game-badge {
    font-size: 11px; font-weight: 700; padding: 4px 12px;
    border-radius: var(--radius-full); color: #000; text-transform: uppercase;
    letter-spacing: 0.3px;
}
.profile-stats {
    display: flex; gap: 28px; margin-top: 20px;
    padding-top: 20px; border-top: 1px solid var(--border);
}
.profile-stat { text-align: center; }
.profile-stat-value { font-size: 20px; font-weight: 800; color: #fff; }
.profile-stat-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; }

.profile-actions { margin-top:16px; display:flex; gap:10px; }

/* ---- Edit Profile Modal ---- */
.modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.8);
    backdrop-filter: blur(6px); z-index: 100;
    display: flex; align-items: center; justify-content: center;
    animation: fadeIn 0.2s ease;
}
.modal-box {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); width: 100%; max-width: 480px;
    padding: 28px; position: relative;
    box-shadow: 0 0 40px var(--accent-glow);
    max-height: 90vh; overflow-y: auto;
}
.modal-close {
    position: absolute; top: 14px; right: 14px;
    background: none; border: none; color: var(--text-muted);
    font-size: 18px; cursor: pointer;
}
.modal-close:hover { color: #fff; }
.modal-title { font-size: 20px; font-weight: 800; margin-bottom: 20px; }
.form-group { margin-bottom: 16px; }
.form-label {
    display: block; font-size: 11px; text-transform: uppercase;
    letter-spacing: 1px; color: var(--text-muted); margin-bottom: 6px; font-weight: 600;
}
.form-input {
    width: 100%; background: var(--bg-primary); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 10px 14px;
    color: #fff; font-size: 14px; outline: none;
    transition: border-color var(--transition);
}
.form-input:focus { border-color: var(--accent); }
textarea.form-input { resize: vertical; min-height: 80px; font-family: inherit; }

/* ---- Explore Page ---- */
.explore-header {
    padding: 40px 28px 20px; text-align: center;
}
.explore-title { font-size: 28px; font-weight: 900; }
.explore-search {
    max-width: 480px; margin: 16px auto 0; position: relative;
}
.explore-search input {
    width: 100%; background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-full); padding: 12px 20px 12px 44px;
    color: #fff; font-size: 14px; outline: none;
}
.explore-search input:focus { border-color: var(--accent); }
.explore-search .search-icon {
    position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
    color: var(--text-muted); font-size: 16px;
}
.explore-section { padding: 20px 28px; }
.explore-section-title {
    font-size: 16px; font-weight: 700; margin-bottom: 14px;
    display: flex; align-items: center; gap: 8px;
}
.user-card {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px; border-radius: var(--radius);
    cursor: pointer; transition: background var(--transition);
}
.user-card:hover { background: var(--bg-elevated); }
.user-card-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 15px; color: #fff; flex-shrink: 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
}
.user-card-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.user-card-info { flex: 1; }
.user-card-name { font-weight: 700; font-size: 14px; }
.user-card-rank { font-size: 12px; color: var(--text-muted); }

/* ---- Right Panel Widgets ---- */
.widget { margin-bottom: 24px; }
.widget-title {
    font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--text-muted); margin-bottom: 12px; font-weight: 600;
}
.widget-card {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-primary));
    border: 1px solid var(--border); border-radius: var(--radius);
    padding: 14px;
}
.leaderboard-item {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 0;
}
.leaderboard-rank {
    width: 24px; height: 24px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 800;
}
.leaderboard-name { flex: 1; font-size: 13px; font-weight: 600; }
.leaderboard-wp { font-size: 12px; color: var(--accent); font-weight: 700; }

/* ---- System Logs ---- */
.system-log-entry { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: #4ade80; }

/* ---- Status Indicator ---- */
.status-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #22c55e; display: inline-block;
    animation: pulse-glow 2s infinite;
    box-shadow: 0 0 6px rgba(34,197,94,0.4);
}

/* ---- Mobile ---- */
.mobile-header {
    display: none; position: fixed; top: 0; left: 0; right: 0;
    height: 56px; background: var(--bg-panel);
    border-bottom: 1px solid var(--border);
    padding: 0 16px; align-items: center; justify-content: space-between;
    z-index: 30;
}
.hamburger {
    background: none; border: none; color: #fff;
    font-size: 22px; cursor: pointer; padding: 4px;
}
.sidebar-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.6); z-index: 15;
}

/* ---- Image lightbox ---- */
.lightbox {
    position: fixed; inset: 0; background: rgba(0,0,0,0.92);
    z-index: 200; display: flex; align-items: center; justify-content: center;
    animation: fadeIn 0.2s ease; cursor: zoom-out;
}
.lightbox img, .lightbox video { max-width: 90%; max-height: 90%; border-radius: var(--radius); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .right-panel { display: none; }
}
@media (max-width: 768px) {
    .sidebar { position: fixed; left: 0; top: 0; bottom: 0; transform: translateX(-100%); }
    .sidebar.open { transform: translateX(0); }
    .sidebar-overlay.open { display: block; }
    .mobile-header { display: flex; }
    .main-content { padding-top: 56px; }
    .profile-banner { height: 140px; }
    .profile-info { padding: 0 16px 20px; }
    .profile-avatar-wrap { width: 80px; height: 80px; }
    .profile-stats { gap: 16px; flex-wrap: wrap; }
}

/* ---- Spinner ---- */
.spinner {
    width: 28px; height: 28px; border: 3px solid var(--border);
    border-top-color: var(--accent); border-radius: 50%;
    animation: spin 0.7s linear infinite; margin: 0 auto;
}

/* ---- Game filter chips ---- */
.game-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.game-chip {
    padding: 6px 16px; border-radius: var(--radius-full);
    font-size: 12px; font-weight: 600; cursor: pointer;
    border: 1px solid var(--border); background: transparent;
    color: var(--text-secondary); transition: all var(--transition);
}
.game-chip:hover, .game-chip.active {
    border-color: var(--accent); color: var(--accent); background: var(--accent-glow);
}

/* ---- Post Owner Menu ---- */
.post-menu-wrap {
    position: relative;
}
.post-menu-btn {
    background: none; border: none; color: var(--text-muted);
    font-size: 22px; cursor: pointer; padding: 4px 8px;
    border-radius: var(--radius); transition: all var(--transition);
    line-height: 1; letter-spacing: 1px; font-weight: 900;
}
.post-menu-btn:hover { color: #fff; background: var(--bg-elevated); }
.post-menu-dropdown {
    display: none; position: absolute; right: 0; top: 100%;
    margin-top: 4px; background: var(--bg-elevated);
    border: 1px solid var(--border); border-radius: var(--radius);
    min-width: 160px; overflow: hidden; z-index: 50;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    animation: fadeIn 0.15s ease;
}
.post-menu-dropdown.open { display: block; }
.post-menu-dropdown button {
    display: flex; align-items: center; gap: 8px;
    width: 100%; padding: 10px 16px; background: none;
    border: none; color: var(--text-secondary); font-size: 13px;
    font-weight: 500; cursor: pointer; transition: all var(--transition);
    text-align: left;
}
.post-menu-dropdown button:hover { background: var(--bg-card); color: #fff; }
.post-menu-dropdown .post-menu-danger { color: #ef4444; }
.post-menu-dropdown .post-menu-danger:hover { background: rgba(239,68,68,0.1); color: #f87171; }

/* ---- Empty state ---- */
.empty-state {
    text-align: center; padding: 48px 20px; color: var(--text-muted);
}
.empty-state .empty-icon { font-size: 48px; margin-bottom: 12px; }
.empty-state p { font-size: 14px; }

/* ---- Following Feed ---- */
.following-feed-header {
    margin-bottom: 24px;
}
.following-feed-title {
    font-size: 24px; font-weight: 900; letter-spacing: -0.5px;
}
.following-feed-subtitle {
    font-size: 13px; color: var(--text-muted); margin-top: 4px;
}

/* ---- Clickable Profile Stats ---- */
.clickable-stat {
    cursor: pointer; border-radius: var(--radius);
    padding: 8px 12px !important; margin: -8px -12px;
    transition: all var(--transition);
}
.clickable-stat:hover {
    background: var(--bg-elevated);
}
.clickable-stat:hover .profile-stat-value {
    color: var(--accent);
}
.clickable-stat:hover .profile-stat-label {
    color: var(--text-secondary);
}

/* ---- Follow Modal ---- */
.follow-modal-tabs {
    display: flex; gap: 0; margin-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.follow-tab {
    flex: 1; padding: 12px; background: none; border: none;
    font-weight: 700; font-size: 14px; cursor: pointer;
    color: var(--text-muted); border-bottom: 2px solid transparent;
    transition: all var(--transition);
}
.follow-tab:hover { color: var(--text-secondary); }
.follow-tab.active {
    color: #fff; border-bottom-color: var(--accent);
}
.follow-modal-user {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 8px; border-radius: var(--radius);
    cursor: pointer; transition: background var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.follow-modal-user:last-child { border-bottom: none; }
.follow-modal-user:hover { background: var(--bg-elevated); }
.follow-modal-user-info { flex: 1; min-width: 0; }
.follow-modal-user-name {
    font-weight: 700; font-size: 14px; color: #fff;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.follow-modal-user-rank {
    font-size: 12px; color: var(--text-muted); margin-top: 2px;
}
