*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg:        #0d0d14;
    --surface:   #14141f;
    --surface2:  #1c1c2b;
    --border:    #2a2a40;
    --accent:    #4f6ef7;
    --accent-d:  #3a56e4;
    --danger:    #e53e3e;
    --success:   #38a169;
    --warning:   #d69e2e;
    --text:      #e2e8f0;
    --muted:     #718096;
    --radius:    6px;
}

body { font-family: 'Segoe UI', system-ui, sans-serif; background: var(--bg); color: var(--text); font-size: 14px; line-height: 1.5; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── AUTH PAGE ── */
.auth-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 20px; }
.auth-card { width: 100%; max-width: 400px; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 32px; }
.auth-logo { text-align: center; margin-bottom: 24px; }
.auth-logo .brand { font-size: 26px; font-weight: 800; color: var(--accent); letter-spacing: 5px; display: block; }
.auth-logo .tagline { font-size: 11px; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; }
.tab-row { display: flex; background: var(--surface2); border-radius: var(--radius); padding: 3px; margin-bottom: 20px; }
.tab-btn { flex: 1; padding: 8px; text-align: center; font-size: 13px; font-weight: 600; color: var(--muted); border: none; background: none; cursor: pointer; border-radius: 4px; transition: all .15s; }
.tab-btn.active { background: var(--accent); color: #fff; }

/* ── FORMS ── */
.form-row { margin-bottom: 14px; }
.form-label { display: block; font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: .5px; text-transform: uppercase; margin-bottom: 5px; }
.form-input { width: 100%; padding: 9px 11px; background: var(--surface2); border: 1px solid var(--border); border-radius: var(--radius); color: var(--text); font-size: 14px; outline: none; font-family: inherit; transition: border-color .15s; }
.form-input:focus { border-color: var(--accent); }
.form-input::placeholder { color: var(--muted); }
select.form-input { cursor: pointer; }
textarea.form-input { resize: vertical; min-height: 90px; }
.phone-group { display: flex; gap: 6px; }
.phone-group select { width: 90px; flex-shrink: 0; }
.pw-wrap { position: relative; }
.pw-wrap .form-input { padding-right: 36px; }
.pw-toggle { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--muted); cursor: pointer; font-size: 14px; padding: 2px; }
.pw-toggle:hover { color: var(--text); }
.help-text { font-size: 11px; color: var(--muted); margin-top: 4px; }
.check-row { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; margin-bottom: 14px; }
.check-row input { margin-top: 2px; accent-color: var(--accent); }

/* strength meter */
.strength-segs { display: flex; gap: 3px; margin-top: 5px; }
.str-seg { flex: 1; height: 3px; background: var(--border); border-radius: 2px; transition: background .2s; }
.strength-txt { font-size: 11px; margin-top: 3px; color: var(--muted); }

/* OTP boxes */
.otp-row { display: flex; gap: 8px; justify-content: center; margin: 14px 0; }
.otp-box { width: 44px; height: 52px; text-align: center; font-size: 20px; font-weight: 700; background: var(--surface2); border: 1px solid var(--border); border-radius: var(--radius); color: var(--accent); outline: none; font-family: monospace; transition: border-color .15s; }
.otp-box:focus { border-color: var(--accent); }
.otp-timer { text-align: center; font-size: 12px; color: var(--muted); }
.otp-timer b { color: var(--accent); }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: var(--radius); font-size: 13px; font-weight: 600; cursor: pointer; border: none; transition: all .15s; text-decoration: none; white-space: nowrap; }
.btn:hover { text-decoration: none; }
.btn-block { width: 100%; justify-content: center; padding: 10px; }
.btn-primary   { background: var(--accent);  color: #fff; }
.btn-primary:hover { background: var(--accent-d); }
.btn-secondary { background: var(--surface2); color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { border-color: var(--accent); }
.btn-danger    { background: rgba(229,62,62,.12); color: var(--danger); border: 1px solid rgba(229,62,62,.3); }
.btn-danger:hover { background: rgba(229,62,62,.22); }
.btn-success   { background: rgba(56,161,105,.12); color: var(--success); border: 1px solid rgba(56,161,105,.3); }
.btn-success:hover { background: rgba(56,161,105,.22); }
.btn-warning   { background: rgba(214,158,46,.12); color: var(--warning); border: 1px solid rgba(214,158,46,.3); }
.btn-warning:hover { background: rgba(214,158,46,.22); }
.btn-sm { padding: 4px 10px; font-size: 12px; }

/* ── ALERTS ── */
.alert { padding: 10px 14px; border-radius: var(--radius); font-size: 13px; margin-bottom: 14px; display: flex; align-items: flex-start; gap: 8px; }
.alert-error   { background: rgba(229,62,62,.1);  border: 1px solid rgba(229,62,62,.3);  color: #fc8181; }
.alert-success { background: rgba(56,161,105,.1); border: 1px solid rgba(56,161,105,.3); color: #68d391; }
.alert-info    { background: rgba(79,110,247,.1); border: 1px solid rgba(79,110,247,.3); color: #90cdf4; }

/* ── APP LAYOUT ── */
.topbar { height: 52px; background: var(--surface); border-bottom: 1px solid var(--border); display: flex; align-items: center; padding: 0 16px; justify-content: space-between; position: sticky; top: 0; z-index: 50; }
.topbar-brand { font-size: 18px; font-weight: 800; color: var(--accent); letter-spacing: 4px; }
.topbar-right { display: flex; align-items: center; gap: 10px; }
.topbar-user { font-size: 13px; color: var(--muted); }
.topbar-user i { color: var(--accent); }
.topbar-admin-btn { padding: 5px 12px; background: rgba(229,62,62,.15); border: 1px solid rgba(229,62,62,.3); color: var(--danger); border-radius: var(--radius); font-size: 12px; font-weight: 700; display: flex; align-items: center; gap: 6px; transition: background .15s; }
.topbar-admin-btn:hover { background: rgba(229,62,62,.25); text-decoration: none; }
.app-body { padding: 14px 16px 76px; max-width: 620px; margin: 0 auto; }
.bottom-nav { position: fixed; bottom: 0; left: 0; right: 0; height: 58px; background: var(--surface); border-top: 1px solid var(--border); display: flex; z-index: 50; }
.nav-item { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; transition: color .15s; text-decoration: none; }
.nav-item i { font-size: 17px; }
.nav-item:hover, .nav-item.active { color: var(--accent); text-decoration: none; }

/* ── PAGE ELEMENTS ── */
.page-title { font-size: 18px; font-weight: 800; margin-bottom: 14px; }
.section-hdr { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin: 16px 0 8px; display: flex; align-items: center; gap: 8px; }
.section-hdr::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.section-hdr i { color: var(--accent); }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; margin-bottom: 10px; }
.card-head { padding: 12px 14px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.card-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--muted); }
.card-body { padding: 14px; }

/* Hero */
.hero { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 20px; margin-bottom: 10px; }
.hero-live { font-size: 11px; font-weight: 700; color: var(--danger); display: flex; align-items: center; gap: 5px; margin-bottom: 6px; }
.live-dot { width: 7px; height: 7px; background: var(--danger); border-radius: 50%; display: inline-block; animation: pulse 1.4s ease infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero-title { font-size: 20px; font-weight: 800; line-height: 1.2; margin-bottom: 6px; }
.hero-title b { color: var(--accent); }
.hero-sub { font-size: 13px; color: var(--muted); margin-bottom: 14px; }

/* Match card */
.match-card { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 12px 14px; margin-bottom: 8px; transition: border-color .15s; }
.match-card:hover { border-color: var(--accent); }
.match-label { font-size: 10px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; display: flex; align-items: center; justify-content: space-between; }
.match-teams { display: flex; align-items: center; justify-content: space-between; }
.team { flex: 1; text-align: center; }
.team-name { font-size: 13px; font-weight: 700; }
.match-score { text-align: center; padding: 0 12px; }
.score-num { font-size: 22px; font-weight: 800; font-family: monospace; letter-spacing: 3px; }
.score-sub { font-size: 10px; color: var(--muted); }

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 10px; }
.stat-box { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 12px 8px; text-align: center; }
.stat-box:hover { border-color: var(--accent); }
.stat-val { font-size: 16px; font-weight: 800; color: var(--accent); }
.stat-lbl { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; margin-top: 2px; }

/* News */
.news-card { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 14px; margin-bottom: 8px; display: block; color: var(--text); transition: border-color .15s; }
.news-card:hover { border-color: var(--accent); text-decoration: none; }
.news-badge { display: inline-block; padding: 2px 8px; border-radius: 4px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; background: rgba(79,110,247,.15); color: var(--accent); border: 1px solid rgba(79,110,247,.25); margin-bottom: 6px; }
.news-title { font-size: 14px; font-weight: 700; line-height: 1.35; margin-bottom: 6px; }
.news-meta { font-size: 11px; color: var(--muted); display: flex; align-items: center; gap: 12px; }
.news-excerpt { font-size: 13px; color: var(--muted); margin-top: 8px; line-height: 1.5; }

/* Tasks */
.task-card { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 12px 14px; margin-bottom: 8px; }
.task-card.done { opacity: .65; border-color: var(--success); }
.task-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; margin-bottom: 6px; }
.task-title { font-size: 14px; font-weight: 700; }
.task-xp { font-size: 12px; font-weight: 700; color: var(--warning); white-space: nowrap; }
.task-desc { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.progress-bar { height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--accent); border-radius: 2px; }
.progress-meta { display: flex; justify-content: space-between; font-size: 11px; color: var(--muted); margin-top: 3px; }

/* Profile */
.profile-card { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 20px; text-align: center; margin-bottom: 10px; }
.profile-avatar { width: 64px; height: 64px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 800; color: #fff; margin: 0 auto 12px; }
.profile-name { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.profile-rank { font-size: 12px; color: var(--warning); margin-bottom: 12px; }
.tag { display: inline-block; padding: 2px 10px; border-radius: 20px; font-size: 11px; font-weight: 600; background: rgba(79,110,247,.1); border: 1px solid rgba(79,110,247,.2); color: var(--accent); margin: 2px; }
.tag.verified { background: rgba(56,161,105,.1); border-color: rgba(56,161,105,.2); color: var(--success); }
.profile-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border-radius: var(--radius); overflow: hidden; margin-top: 14px; }
.pstat { background: var(--surface2); padding: 10px; text-align: center; }
.pstat-val { font-size: 15px; font-weight: 800; color: var(--accent); }
.pstat-lbl { font-size: 10px; color: var(--muted); text-transform: uppercase; }
.menu-list { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.menu-row { display: flex; align-items: center; gap: 12px; padding: 13px 16px; border-bottom: 1px solid var(--border); color: var(--text); transition: background .12s; }
.menu-row:last-child { border-bottom: none; }
.menu-row:hover { background: var(--surface2); text-decoration: none; }
.menu-row i { font-size: 15px; color: var(--accent); width: 18px; }
.menu-row .label { flex: 1; font-size: 14px; font-weight: 600; }
.menu-row .right { color: var(--muted); font-size: 12px; }
.menu-row.red i, .menu-row.red .label { color: var(--danger); }

/* Badges */
.badge { display: inline-flex; align-items: center; gap: 3px; padding: 2px 8px; border-radius: 20px; font-size: 11px; font-weight: 700; }
.badge-active    { background: rgba(56,161,105,.12); color: var(--success); border: 1px solid rgba(56,161,105,.25); }
.badge-banned    { background: rgba(229,62,62,.12);  color: var(--danger);  border: 1px solid rgba(229,62,62,.25); }
.badge-suspended { background: rgba(214,158,46,.12); color: var(--warning); border: 1px solid rgba(214,158,46,.25); }
.badge-admin     { background: rgba(229,62,62,.12);  color: #fc8181;        border: 1px solid rgba(229,62,62,.25); }
.badge-moderator { background: rgba(79,110,247,.12); color: var(--accent);  border: 1px solid rgba(79,110,247,.25); }
.badge-user      { background: rgba(113,128,150,.12); color: var(--muted);  border: 1px solid rgba(113,128,150,.2); }
.badge-live      { background: rgba(229,62,62,.12);  color: var(--danger);  border: 1px solid rgba(229,62,62,.25); }
.badge-upcoming  { background: rgba(79,110,247,.12); color: var(--accent);  border: 1px solid rgba(79,110,247,.25); }
.badge-ended     { background: rgba(113,128,150,.12); color: var(--muted);  border: 1px solid rgba(113,128,150,.2); }
.badge-open      { background: rgba(214,158,46,.12); color: var(--warning); border: 1px solid rgba(214,158,46,.25); }
.badge-resolved  { background: rgba(56,161,105,.12); color: var(--success); border: 1px solid rgba(56,161,105,.25); }
.badge-high      { background: rgba(229,62,62,.12);  color: var(--danger);  border: 1px solid rgba(229,62,62,.25); }
.badge-medium    { background: rgba(214,158,46,.12); color: var(--warning); border: 1px solid rgba(214,158,46,.25); }
.badge-low       { background: rgba(79,110,247,.12); color: var(--accent);  border: 1px solid rgba(79,110,247,.25); }

/* ── ADMIN LAYOUT ── */
.admin-wrap { display: flex; min-height: 100vh; flex-direction: column; }
.admin-topbar { height: 52px; background: var(--surface); border-bottom: 1px solid var(--border); display: flex; align-items: center; padding: 0 18px; gap: 14px; position: sticky; top: 0; z-index: 50; }
.admin-topbar-brand { font-size: 16px; font-weight: 800; color: var(--danger); letter-spacing: 3px; }
.admin-topbar-right { margin-left: auto; display: flex; gap: 8px; }
.admin-layout { display: flex; flex: 1; }
.admin-sidebar { width: 210px; flex-shrink: 0; background: var(--surface); border-right: 1px solid var(--border); padding: 12px 0; position: sticky; top: 52px; height: calc(100vh - 52px); overflow-y: auto; }
.sb-group { font-size: 10px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; padding: 10px 14px 4px; }
.sb-link { display: flex; align-items: center; gap: 9px; padding: 8px 12px; margin: 1px 6px; border-radius: var(--radius); color: var(--muted); font-size: 13px; font-weight: 600; transition: all .12s; }
.sb-link i { font-size: 14px; width: 16px; }
.sb-link:hover { background: var(--surface2); color: var(--text); text-decoration: none; }
.sb-link.active { background: rgba(79,110,247,.12); color: var(--accent); }
.sb-badge { margin-left: auto; background: var(--danger); color: #fff; font-size: 10px; padding: 1px 6px; border-radius: 10px; font-weight: 700; }
.sb-badge.warn { background: var(--warning); color: #000; }
.admin-main { flex: 1; padding: 20px; overflow-y: auto; }
.admin-page-title { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.admin-page-sub { font-size: 13px; color: var(--muted); margin-bottom: 20px; }

/* KPI cards */
.kpi-row { display: grid; grid-template-columns: repeat(auto-fill,minmax(140px,1fr)); gap: 10px; margin-bottom: 20px; }
.kpi { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 14px; }
.kpi-icon { font-size: 20px; color: var(--accent); margin-bottom: 8px; }
.kpi-val { font-size: 22px; font-weight: 800; }
.kpi-lbl { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; margin-top: 2px; }
.kpi-sub { font-size: 11px; margin-top: 5px; }
.kpi-sub.up { color: var(--success); } .kpi-sub.down { color: var(--danger); }

/* Data table */
.tbl-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; margin-bottom: 16px; }
.tbl-header { display: flex; align-items: center; justify-content: space-between; padding: 11px 14px; border-bottom: 1px solid var(--border); flex-wrap: wrap; gap: 8px; }
.tbl-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--muted); }
.tbl-search { padding: 8px 14px; border-bottom: 1px solid var(--border); }
.tbl-search input { width: 100%; padding: 7px 11px; background: var(--surface2); border: 1px solid var(--border); border-radius: var(--radius); color: var(--text); font-size: 13px; outline: none; font-family: inherit; }
.tbl-search input:focus { border-color: var(--accent); }
table { width: 100%; border-collapse: collapse; }
thead th { padding: 9px 12px; text-align: left; font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; background: var(--surface2); border-bottom: 1px solid var(--border); white-space: nowrap; }
tbody td { padding: 11px 12px; border-bottom: 1px solid rgba(42,42,64,.5); font-size: 13px; vertical-align: middle; }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: rgba(79,110,247,.025); }
.tbl-pagination { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; border-top: 1px solid var(--border); font-size: 12px; color: var(--muted); flex-wrap: wrap; gap: 8px; }
.pg-links a { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: var(--radius); border: 1px solid var(--border); color: var(--muted); font-size: 12px; font-weight: 700; margin: 0 2px; }
.pg-links a:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }
.pg-links a.cur { background: var(--accent); color: #fff; border-color: var(--accent); }
.user-cell { display: flex; align-items: center; gap: 9px; }
.ava-sm { width: 28px; height: 28px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; color: #fff; flex-shrink: 0; }
.u-name { font-weight: 700; font-size: 13px; }
.u-sub  { font-size: 11px; color: var(--muted); }
.row-actions { display: flex; gap: 4px; flex-wrap: wrap; }

/* Activity log */
.act-list { display: flex; flex-direction: column; }
.act-row { display: flex; align-items: flex-start; gap: 10px; padding: 11px 14px; border-bottom: 1px solid rgba(42,42,64,.4); }
.act-row:last-child { border-bottom: none; }
.act-icon { width: 30px; height: 30px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.act-login    { background: rgba(79,110,247,.12); color: var(--accent); }
.act-ban      { background: rgba(229,62,62,.12);  color: var(--danger); }
.act-register { background: rgba(56,161,105,.12); color: var(--success); }
.act-news     { background: rgba(139,92,246,.12); color: #a78bfa; }
.act-report   { background: rgba(214,158,46,.12); color: var(--warning); }
.act-edit     { background: rgba(79,110,247,.12); color: var(--accent); }
.act-body { flex: 1; }
.act-desc { font-size: 13px; font-weight: 500; }
.act-time { font-size: 11px; color: var(--muted); margin-top: 2px; }
.act-time-r { font-size: 11px; color: var(--muted); white-space: nowrap; flex-shrink: 0; }

/* Settings */
.settings-card { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; margin-bottom: 14px; }
.settings-head { padding: 11px 14px; border-bottom: 1px solid var(--border); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--muted); }
.setting-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; border-bottom: 1px solid rgba(42,42,64,.4); gap: 16px; }
.setting-row:last-child { border-bottom: none; }
.setting-lbl { font-size: 14px; font-weight: 600; }
.setting-desc { font-size: 12px; color: var(--muted); margin-top: 2px; }
.toggle { position: relative; width: 40px; height: 20px; flex-shrink: 0; display: inline-block; }
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-track { position: absolute; inset: 0; background: var(--border); border-radius: 10px; cursor: pointer; transition: .2s; }
.toggle-track::before { content: ''; position: absolute; width: 14px; height: 14px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: .2s; }
.toggle input:checked + .toggle-track { background: var(--accent); }
.toggle input:checked + .toggle-track::before { transform: translateX(20px); }

/* Modal */
.modal-bg { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.65); z-index: 999; align-items: center; justify-content: center; padding: 20px; }
.modal-bg.open { display: flex; }
.modal-box { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 22px; width: 100%; max-width: 440px; position: relative; }
.modal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.modal-title { font-size: 15px; font-weight: 800; }
.modal-close { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 16px; padding: 2px; }
.modal-close:hover { color: var(--text); }
.modal-actions { display: flex; gap: 8px; margin-top: 14px; }
.modal-actions .btn { flex: 1; justify-content: center; }

/* Report card */
.report-card { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 14px; margin-bottom: 10px; transition: border-color .15s; }
.report-card:hover { border-color: var(--warning); }
.report-top { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.report-title { font-size: 14px; font-weight: 700; }
.report-body { font-size: 13px; color: var(--muted); line-height: 1.55; margin-bottom: 10px; }
.report-meta { display: flex; gap: 14px; font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.report-meta span { display: flex; align-items: center; gap: 4px; }

/* Misc */
hr.sep { border: none; border-top: 1px solid var(--border); margin: 12px 0; }
.text-muted { color: var(--muted); }
.text-right { text-align: right; }
.d-flex { display: flex; }
.gap-2 { gap: 8px; }
.ai-center { align-items: center; }
.jc-between { justify-content: space-between; }
.mt-12 { margin-top: 12px; }
.mb-0 { margin-bottom: 0; }
.monospace { font-family: monospace; }

@media(max-width:600px) {
    .admin-sidebar { display: none; }
    .kpi-row { grid-template-columns: repeat(2,1fr); }
    .stats-grid { grid-template-columns: repeat(3,1fr); }
    table { font-size: 12px; }
    thead th, tbody td { padding: 8px 8px; }
}
