* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Montserrat', sans-serif; }
:root {
    --bg: #0a0a0a; --surface: rgba(255,255,255,0.04); --surface-h: rgba(255,255,255,0.07);
    --border: rgba(255,255,255,0.08); --border-h: rgba(255,255,255,0.2);
    --nav-h: 60px; --bar-h: 58px;
}
body { background: var(--bg); color: #fff; min-height: 100vh; overflow-x: hidden; }

/* ─── LOGIN / SETUP ──────────────────────────── */
#login-screen {
    display: flex; align-items: center; justify-content: center; min-height: 100vh;
    background: radial-gradient(ellipse at center, rgba(88,101,242,0.08) 0%, #0a0a0a 60%);
    padding: 20px;
}
.login-card {
    background: var(--surface); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 22px; padding: 44px 38px; width: 100%; max-width: 420px;
    backdrop-filter: blur(20px); text-align: center;
}
.login-logo { font-size: 46px; margin-bottom: 14px; }
.login-title { font-size: 24px; font-weight: 800; letter-spacing: 6px; margin-bottom: 7px; }
.login-sub { font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 1px; margin-bottom: 28px; }

.discord-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: #5865F2; color: #fff; border: none; border-radius: 12px;
    padding: 14px 24px; width: 100%; font-family: 'Montserrat', sans-serif;
    font-size: 13px; font-weight: 700; letter-spacing: 2px; cursor: pointer; transition: 0.2s;
}
.discord-btn:hover { background: #4752c4; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(88,101,242,0.3); }
.discord-btn i { font-size: 18px; }

.login-divider { display: flex; align-items: center; gap: 12px; margin: 22px 0; }
.login-divider::before, .login-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.login-divider span { font-size: 11px; color: rgba(255,255,255,0.25); letter-spacing: 1px; }

.login-error { color: #ff5555; font-size: 13px; margin-top: 12px; min-height: 18px; }
.login-hint  { font-size: 11px; color: rgba(255,255,255,0.2); margin-top: 14px; line-height: 1.6; }
.login-hint a { color: rgba(255,255,255,0.4); }
.login-hint code { background: rgba(255,255,255,0.06); padding: 2px 6px; border-radius: 4px; font-family: monospace; }

/* ─── SETUP WIZARD ───────────────────────────── */
.setup-wizard { text-align: left; margin-top: 8px; }
.setup-wizard h3 { font-size: 13px; font-weight: 700; letter-spacing: 2px; margin-bottom: 16px; color: rgba(255,255,255,0.8); text-align: center; }
.setup-step { display: flex; gap: 12px; margin-bottom: 18px; }
.setup-step-num {
    flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
    background: rgba(88,101,242,0.3); border: 1px solid rgba(88,101,242,0.5);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700; color: #8b97ff; margin-top: 2px;
}
.setup-step-body { flex: 1; }
.setup-step-body p { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 8px; }
.setup-step-body a { color: #8b97ff; }
.setup-step-body code { background: rgba(255,255,255,0.07); padding: 2px 6px; border-radius: 4px; font-family: monospace; font-size: 11px; }

/* ─── DASHBOARD LAYOUT ───────────────────────── */
#dashboard { display: flex; flex-direction: column; height: 100vh; overflow: hidden; }

/* ─── NAVBAR ─────────────────────────────────── */
.admin-nav {
    height: var(--nav-h); background: rgba(0,0,0,0.9); border-bottom: 1px solid var(--border);
    backdrop-filter: blur(20px); display: flex; align-items: center; padding: 0 16px; gap: 12px;
    flex-shrink: 0; z-index: 100;
}
.nav-brand { display: flex; align-items: center; gap: 9px; flex-shrink: 0; }
.nav-logo { font-size: 18px; }
.nav-title { font-size: 12px; font-weight: 800; letter-spacing: 3px; white-space: nowrap; }

.tab-bar {
    display: flex; align-items: center; gap: 2px; flex: 1;
    overflow-x: auto; scrollbar-width: none;
}
.tab-bar::-webkit-scrollbar { display: none; }
.tab {
    background: none; border: 1px solid transparent; color: rgba(255,255,255,0.38);
    font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
    padding: 6px 12px; border-radius: 7px; cursor: pointer; transition: all 0.18s;
    display: flex; align-items: center; gap: 5px; white-space: nowrap; flex-shrink: 0;
}
.tab:hover  { background: var(--surface); color: rgba(255,255,255,0.75); }
.tab.active { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.13); }
.tab i { font-size: 11px; }

.nav-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.nav-user { display: flex; align-items: center; gap: 8px; }
.nav-avatar { width: 28px; height: 28px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); }
.nav-username { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.7); max-width: 100px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ─── CONTENT ────────────────────────────────── */
.dashboard-content {
    flex: 1; overflow-y: auto; padding: 28px 28px 20px;
    scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.1) transparent;
}
.dashboard-content::-webkit-scrollbar { width: 4px; }
.dashboard-content::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }

.tab-panel { animation: fadeUp 0.2s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.panel-header { margin-bottom: 22px; }
.panel-header h2 { font-size: 18px; font-weight: 800; letter-spacing: 2px; margin-bottom: 4px; }
.panel-header p  { font-size: 12px; color: rgba(255,255,255,0.4); }
.panel-body { display: flex; flex-direction: column; gap: 16px; max-width: 880px; }
.panel-body.wide { max-width: 100%; }

/* ─── FORM ───────────────────────────────────── */
.form-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 15px; padding: 22px; display: flex; flex-direction: column; gap: 18px;
}
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label {
    font-size: 11px; font-weight: 700; letter-spacing: 1.5px; color: rgba(255,255,255,0.55);
    text-transform: uppercase; display: flex; align-items: center; gap: 7px;
}
.form-input {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px; padding: 10px 14px; color: #fff;
    font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 500;
    transition: all 0.18s; width: 100%; outline: none;
}
.form-input:focus { border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.08); }
.form-input::placeholder { color: rgba(255,255,255,0.18); }
select.form-input option { background: #1a1a1a; color: #fff; }
.form-hint { font-size: 11px; color: rgba(255,255,255,0.28); line-height: 1.6; }
.form-hint b { color: rgba(255,255,255,0.5); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ─── INFO / WARNING ─────────────────────────── */
.info-card, .warning-card {
    border-radius: 11px; padding: 14px 16px;
    display: flex; gap: 12px; align-items: flex-start;
    font-size: 12px; line-height: 1.65; color: rgba(255,255,255,0.6);
}
.info-card    { background: rgba(68,136,255,0.07); border: 1px solid rgba(68,136,255,0.17); }
.info-card > i { color: #5599ff; margin-top: 2px; flex-shrink: 0; }
.warning-card { background: rgba(255,170,0,0.07);  border: 1px solid rgba(255,170,0,0.17); }
.warning-card > i { color: #ffaa00; margin-top: 2px; flex-shrink: 0; }
.info-card code { font-family: monospace; font-size: 11px; background: rgba(255,255,255,0.08); padding: 2px 6px; border-radius: 4px; }

/* ─── BULK IMPORT BOX ────────────────────────── */
.bulk-box {
    background: rgba(139,151,255,0.04); border: 1px solid rgba(139,151,255,0.15);
    border-radius: 12px; padding: 14px 16px; margin-bottom: 16px;
}
.bulk-box textarea.form-input {
    resize: vertical; min-height: 72px; font-size: 12px; line-height: 1.6;
}

/* ─── MEMBER MANAGEMENT ──────────────────────── */
.member-search {
    background: rgba(255,255,255,0.05); border: 1px solid var(--border);
    border-radius: 10px; padding: 9px 14px; color: #fff;
    font-family: 'Montserrat', sans-serif; font-size: 13px; width: 100%;
    outline: none; transition: 0.18s;
}
.member-search:focus { border-color: rgba(255,255,255,0.3); }
.member-search::placeholder { color: rgba(255,255,255,0.2); }

.member-table { display: flex; flex-direction: column; gap: 8px; }
.member-row {
    background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
    overflow: hidden; transition: border-color 0.2s;
}
.member-row:hover { border-color: rgba(255,255,255,0.15); }
.member-row-head {
    display: grid; grid-template-columns: 44px 1fr auto auto;
    align-items: center; gap: 12px; padding: 10px 14px; cursor: pointer;
}
.member-row-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(255,255,255,0.1); background: #111; }
.member-row-info { overflow: hidden; }
.member-row-name { font-size: 14px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.member-row-meta { display: flex; gap: 6px; margin-top: 2px; flex-wrap: wrap; }
.badge-pos  { font-size: 9px; font-weight: 700; letter-spacing: 1px; padding: 2px 7px; border-radius: 4px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.6); text-transform: uppercase; }
.badge-rank { font-size: 9px; font-weight: 700; letter-spacing: 1px; padding: 2px 7px; border-radius: 4px; border: 1px solid; }

.member-row-body { padding: 0 14px 14px; border-top: 1px solid var(--border); display: none; }
.member-row-body.open { display: block; }
.member-edit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }

/* ─── SECTION HEADER ─────────────────────────── */
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; flex-wrap: wrap; gap: 8px; }
.section-header h3 { font-size: 12px; font-weight: 700; letter-spacing: 2px; color: rgba(255,255,255,0.65); text-transform: uppercase; }
.section-divider { height: 1px; background: var(--border); margin: 24px 0; }

/* ─── LEADER EDITOR ──────────────────────────── */
.editor-list { display: flex; flex-direction: column; gap: 10px; }
.editor-item { background: var(--surface); border: 1px solid var(--border); border-radius: 13px; overflow: hidden; }
.editor-item-header { display: flex; align-items: center; justify-content: space-between; padding: 9px 14px; background: rgba(255,255,255,0.025); border-bottom: 1px solid var(--border); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; color: rgba(255,255,255,0.45); text-transform: uppercase; }
.editor-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 13px 14px; }

/* ─── DRAG & DROP ZONE ───────────────────────── */
.dz-wrap {
    position: relative; height: 72px;
    border: 1.5px dashed rgba(255,255,255,0.18); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; overflow: hidden;
    background: rgba(255,255,255,0.03); transition: 0.25s;
}
.dz-wrap.dz-tall { height: 110px; }
.dz-wrap:hover, .dz-wrap.dz-over {
    border-color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.06);
}
.dz-hint {
    font-size: 9px; font-weight: 700; letter-spacing: 2.5px;
    color: rgba(255,255,255,0.25); text-transform: uppercase; pointer-events: none;
}
.dz-clear-btn {
    margin-top: 5px; font-size: 10px; letter-spacing: 0.5px;
    background: none; border: none; color: rgba(255,80,80,0.65);
    cursor: pointer; padding: 0;
}
.dz-clear-btn:hover { color: #ff6060; }

/* ─── RANKS ──────────────────────────────────── */
.rank-list { display: flex; flex-direction: column; gap: 8px; }
.rank-row {
    background: var(--surface); border: 1px solid var(--border); border-radius: 11px;
    display: grid; grid-template-columns: 28px 1fr 100px auto; align-items: center;
    gap: 12px; padding: 10px 14px;
}
.rank-color-dot { width: 20px; height: 20px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.15); flex-shrink: 0; }
.rank-row-actions { display: flex; align-items: center; gap: 6px; }

/* ─── ACTION BAR ─────────────────────────────── */
.action-bar {
    height: var(--bar-h); background: rgba(0,0,0,0.92); border-top: 1px solid var(--border);
    backdrop-filter: blur(20px); display: flex; align-items: center;
    justify-content: space-between; padding: 0 16px; flex-shrink: 0; gap: 8px;
}
.action-left  { display: flex; align-items: center; gap: 8px; min-width: 0; }
.action-right { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.status-dot   { width: 7px; height: 7px; border-radius: 50%; background: #44ee88; flex-shrink: 0; }
.status-text  { font-size: 10px; color: rgba(255,255,255,0.3); letter-spacing: 1px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ─── BUTTONS ────────────────────────────────── */
.btn-primary {
    background: #fff; color: #000; border: none; border-radius: 10px; padding: 11px 22px;
    font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 2px;
    cursor: pointer; transition: all 0.18s; display: flex; align-items: center; justify-content: center; gap: 7px; width: 100%;
}
.btn-primary:hover { background: rgba(255,255,255,0.88); transform: translateY(-1px); }

.btn-secondary {
    background: var(--surface); color: rgba(255,255,255,0.75); border: 1px solid var(--border-h);
    border-radius: 8px; padding: 7px 13px; font-family: 'Montserrat', sans-serif;
    font-size: 10px; font-weight: 700; letter-spacing: 1.5px; cursor: pointer;
    transition: 0.18s; display: flex; align-items: center; gap: 5px;
}
.btn-secondary:hover { background: var(--surface-h); border-color: rgba(255,255,255,0.28); color: #fff; }

.btn-ghost {
    background: none; color: rgba(255,255,255,0.45); border: 1px solid transparent;
    border-radius: 7px; padding: 6px 11px; font-family: 'Montserrat', sans-serif;
    font-size: 10px; font-weight: 700; letter-spacing: 1.5px; cursor: pointer;
    transition: 0.18s; text-decoration: none; display: flex; align-items: center; gap: 6px;
}
.btn-ghost:hover { background: var(--surface); color: #fff; border-color: var(--border-h); }

.btn-action {
    background: var(--surface); color: rgba(255,255,255,0.75); border: 1px solid var(--border);
    border-radius: 8px; padding: 7px 13px; font-family: 'Montserrat', sans-serif;
    font-size: 10px; font-weight: 700; letter-spacing: 1.5px; cursor: pointer;
    transition: 0.18s; display: flex; align-items: center; gap: 6px; white-space: nowrap;
}
.btn-action:hover { background: var(--surface-h); border-color: var(--border-h); color: #fff; }
.btn-action.danger { color: rgba(255,80,80,0.8); border-color: rgba(255,80,80,0.18); }
.btn-action.danger:hover { background: rgba(255,80,80,0.1); border-color: rgba(255,80,80,0.35); color: #ff5050; }

.btn-icon {
    background: none; border: 1px solid transparent; color: rgba(255,255,255,0.35);
    border-radius: 6px; width: 28px; height: 28px; cursor: pointer;
    transition: 0.18s; display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0;
}
.btn-icon:hover { background: var(--surface); color: rgba(255,255,255,0.8); border-color: var(--border-h); }
.btn-icon.danger:hover { background: rgba(255,80,80,0.12); color: #ff5050; border-color: rgba(255,80,80,0.25); }

/* ─── TOAST ──────────────────────────────────── */
.toast {
    position: fixed; bottom: 72px; right: 20px;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.13);
    backdrop-filter: blur(20px); color: #fff; padding: 12px 18px; border-radius: 11px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.5px; z-index: 1000;
    opacity: 0; transform: translateY(8px); transition: all 0.3s cubic-bezier(0.2,1,0.3,1);
    pointer-events: none; max-width: 300px;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast.success { border-color: rgba(68,238,136,0.3); background: rgba(68,238,136,0.07); }
.toast.error   { border-color: rgba(255,80,80,0.3);  background: rgba(255,80,80,0.07);  }
.toast.info    { border-color: rgba(68,136,255,0.3); background: rgba(68,136,255,0.07); }

/* ─── MOBILE ─────────────────────────────────── */
@media (max-width: 768px) {
    .nav-title { display: none; }
    .tab i { display: none; }
    .tab { font-size: 9px; padding: 5px 8px; letter-spacing: 1px; }
    .dashboard-content { padding: 18px 14px; }
    .panel-body { gap: 12px; }
    .form-row { grid-template-columns: 1fr; }
    .editor-grid { grid-template-columns: 1fr; }
    .member-edit-grid { grid-template-columns: 1fr; }
    .rank-row { grid-template-columns: 28px 1fr 80px auto; }
    .action-right { gap: 4px; }
    .btn-action { padding: 6px 9px; font-size: 9px; }
    .btn-action i { display: none; }
    .status-text { display: none; }
}
@media (max-width: 420px) {
    .login-card { padding: 30px 20px; }
    .tab { padding: 5px 7px; letter-spacing: 0.5px; }
}

._bie-card {
    background: #111; border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px; width: min(820px,96vw); max-height: 88vh;
    display: flex; flex-direction: column; overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.8);
    transform: translateY(16px); transition: transform 0.25s;
}
#_bph-modal._bv ._bie-card { transform: translateY(0); }
._bie-header {
    padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.07);
    display: flex; align-items: center; justify-content: space-between; flex-shrink: 0;
}
._bie-title { font-size: 11px; font-weight: 800; letter-spacing: 3px; color: rgba(255,255,255,0.8); }
._bie-body {
    flex: 1; overflow-y: auto; padding: 16px 20px;
    display: flex; flex-direction: column; gap: 22px;
    scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.1) transparent;
}
._bie-body::-webkit-scrollbar { width: 4px; }
._bie-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }
._bie-footer {
    padding: 14px 20px; border-top: 1px solid rgba(255,255,255,0.07);
    display: flex; justify-content: flex-end; gap: 8px; flex-shrink: 0;
}
/* ─── BULK PHOTO MODAL ────────────────────────── */
#_bph-modal {
    display: none; position: fixed; inset: 0; z-index: 2000;
    background: rgba(0,0,0,0.88); backdrop-filter: blur(10px);
    align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.25s;
}
#_bph-modal._bv { opacity: 1; }
#_bph-modal ._bie-card { width: min(740px,96vw); max-height: 90vh; }
._bph-toolbar {
    display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
    padding: 10px 20px; border-bottom: 1px solid rgba(255,255,255,0.07); flex-shrink: 0;
}
._bph-sel.form-input { width: auto !important; padding: 6px 10px !important; font-size: 11px !important; flex: 1; min-width: 100px; max-width: 180px; }
._bph-chk-all-lbl { display: flex; align-items: center; gap: 6px; font-size: 11px; letter-spacing: 1px; font-weight: 600; cursor: pointer; white-space: nowrap; }
._bph-count { font-size: 10px; color: rgba(255,255,255,0.35); letter-spacing: 1.5px; margin-left: auto; white-space: nowrap; }
._bph-grid {
    flex: 1; overflow-y: auto; padding: 14px 16px;
    display: flex; flex-wrap: wrap; gap: 8px; align-content: flex-start; min-height: 160px;
    scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.1) transparent;
}
._bph-grid::-webkit-scrollbar { width: 4px; }
._bph-grid::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }
._bph-item {
    width: 88px; background: rgba(255,255,255,0.03); border: 1.5px solid rgba(255,255,255,0.08);
    border-radius: 12px; padding: 10px 6px 8px; cursor: pointer;
    display: flex; flex-direction: column; align-items: center; gap: 5px;
    position: relative; transition: border-color 0.15s, background 0.15s;
    text-align: center; user-select: none;
}
._bph-item:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.05); }
._bph-item._sel { border-color: rgba(88,101,242,0.7); background: rgba(88,101,242,0.1); }
._bph-item ._bph-chk { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
._bph-chk-icon {
    position: absolute; top: 5px; right: 5px;
    width: 17px; height: 17px; border-radius: 50%;
    background: transparent; border: 1.5px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 8px; color: #fff; transition: 0.15s; pointer-events: none;
}
._bph-item._sel ._bph-chk-icon { background: #5865F2; border-color: #5865F2; }
._bph-avatar {
    width: 54px; height: 54px; border-radius: 50%; object-fit: cover;
    border: 2px solid rgba(255,255,255,0.1); flex-shrink: 0; pointer-events: none;
}
._bph-item._sel ._bph-avatar { border-color: rgba(88,101,242,0.5); }
._bph-name {
    font-size: 10px; font-weight: 700; letter-spacing: 0.5px; line-height: 1.2;
    overflow: hidden; text-overflow: ellipsis; width: 100%;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    color: rgba(255,255,255,0.85); pointer-events: none;
}
._bph-rnk { font-size: 8px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; pointer-events: none; }
._bph-img-sec {
    padding: 10px 20px; border-top: 1px solid rgba(255,255,255,0.07);
    display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
._bph-img-sec .dz-wrap {
    width: 60px !important; height: 60px !important; flex-shrink: 0;
    border-radius: 50% !important; overflow: hidden; cursor: pointer;
}
._bph-img-sec .form-input { flex: 1; font-size: 11px !important; padding: 8px 12px !important; }
._bph-img-hint { font-size: 10px; color: rgba(255,255,255,0.28); letter-spacing: 1px; white-space: nowrap; }
@media (max-width: 500px) {
    ._bph-item { width: 74px; } ._bph-avatar { width: 44px; height: 44px; }
    ._bph-img-hint { display: none; }
}
