/* ── Variables ──────────────────────────────────────────────────────────────── */
:root {
  --bg:         #0a0a0a;
  --surface:    #141414;
  --surface2:   #1c1c1c;
  --surface3:   #242424;
  --border:     #282828;
  --border2:    #333;
  --accent:     #ff6900;
  --accent2:    #ff8c33;
  --accent-dim: rgba(255,105,0,.1);
  --text:       #f0f0f0;
  --text2:      #a0a0a0;
  --text3:      #555;
  --green:      #00c96a;
  --green-dim:  rgba(0,201,106,.12);
  --red:        #ff3c3c;
  --red-dim:    rgba(255,60,60,.12);
  --blue:       #4a9eff;
  --blue-dim:   rgba(74,158,255,.12);
  --gold:       #f5c518;
  --gold-dim:   rgba(245,197,24,.12);
  --r:          6px;
  --r2:         10px;
  --r3:         16px;
  --header-h:   54px;
  --bottomnav:  60px;
  --sidebar-w:  220px;
  --shadow:     0 4px 24px rgba(0,0,0,.5);
  --shadow-sm:  0 2px 8px rgba(0,0,0,.4);
}

/* ── Reset ───────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a  { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
img, video { display: block; max-width: 100%; }
input, textarea, select { font-family: inherit; font-size: 14px; color: var(--text); -webkit-appearance: none; }
h1,h2,h3,h4,h5 { line-height: 1.25; font-weight: 700; }
ul, ol { list-style: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--surface3); border-radius: 3px; }

/* ── Icons ───────────────────────────────────────────────────────────────────── */
.icon { display: inline-block; flex-shrink: 0; vertical-align: middle; }

/* ── App Shell ───────────────────────────────────────────────────────────────── */
#app { min-height: 100vh; }

/* ── Header ──────────────────────────────────────────────────────────────────── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--header-h);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
  padding: 0 12px;
}
.logo {
  font-size: 20px; font-weight: 800; letter-spacing: -.5px;
  color: var(--text); white-space: nowrap; cursor: pointer;
  flex-shrink: 0;
}
.logo span { color: var(--accent); }
.search-form {
  flex: 1; display: flex; align-items: center;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden; height: 36px;
}
.search-form input {
  flex: 1; background: none; border: none; outline: none;
  padding: 0 12px; color: var(--text); font-size: 13px;
}
.search-form input::placeholder { color: var(--text3); }
.search-form button {
  padding: 0 12px; color: var(--text2); height: 100%;
  display: flex; align-items: center; transition: color .2s;
}
.search-form button:hover { color: var(--accent); }
.hdr-actions { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.hdr-btn {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text2); transition: background .2s, color .2s;
  position: relative;
}
.hdr-btn:hover { background: var(--surface2); color: var(--text); }
.hdr-notif-dot {
  position: absolute; top: 7px; right: 7px;
  width: 7px; height: 7px; background: var(--accent);
  border-radius: 50%; border: 2px solid var(--surface);
}
.hdr-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; overflow: hidden; flex-shrink: 0;
}
.hdr-avatar img { width: 100%; height: 100%; object-fit: cover; }

/* ── Bottom Nav (mobile) ─────────────────────────────────────────────────────── */
#bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  height: var(--bottomnav);
  background: var(--surface);
  border-top: 1px solid var(--border);
  display: flex;
}
.bnav-item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 3px;
  color: var(--text3); cursor: pointer;
  transition: color .15s; position: relative;
  -webkit-tap-highlight-color: transparent;
  font-size: 9px; font-weight: 600; letter-spacing: .03em;
  text-transform: uppercase;
}
.bnav-item.active { color: var(--accent); }
.bnav-item .bnav-icon {
  width: 22px; height: 22px; display: flex; align-items: center; justify-content: center;
}
.bnav-upload .bnav-icon {
  width: 40px; height: 40px; background: var(--accent);
  border-radius: 50%; color: #fff;
  box-shadow: 0 0 0 4px var(--surface);
  margin-top: -8px;
}
.bnav-badge {
  position: absolute; top: 8px; right: calc(50% - 18px);
  background: var(--red); color: #fff; font-size: 9px; font-weight: 700;
  padding: 1px 4px; border-radius: 8px; min-width: 14px; text-align: center;
}

/* ── Drawer (mobile sidebar) ─────────────────────────────────────────────────── */
#drawer { position: fixed; inset: 0; z-index: 1000; pointer-events: none; }
#drawer-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.7);
  opacity: 0; transition: opacity .25s; pointer-events: none;
}
#drawer-panel {
  position: absolute; top: 0; left: 0; bottom: 0;
  width: min(280px, 85vw);
  background: var(--surface);
  border-right: 1px solid var(--border);
  transform: translateX(-100%); transition: transform .25s;
  display: flex; flex-direction: column; overflow-y: auto;
}
#drawer.open { pointer-events: all; }
#drawer.open #drawer-overlay { opacity: 1; pointer-events: all; }
#drawer.open #drawer-panel { transform: none; }
.drawer-user {
  padding: 20px 16px 14px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 12px;
}
.drawer-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-size: 18px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.drawer-avatar img { width: 100%; height: 100%; object-fit: cover; }
.drawer-username { font-weight: 700; font-size: 15px; }
.drawer-role { font-size: 11px; color: var(--accent); margin-top: 2px; }
.drawer-tokens { font-size: 11px; color: var(--text2); margin-top: 1px; }
.dnav-section {
  padding: 12px 16px 4px;
  font-size: 10px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text3);
}
.dnav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 18px; color: var(--text2); cursor: pointer;
  transition: background .12s, color .12s;
  border-left: 3px solid transparent; font-size: 13.5px;
  -webkit-tap-highlight-color: transparent;
}
.dnav-item:hover, .dnav-item.active { background: var(--surface2); color: var(--text); }
.dnav-item.active { border-left-color: var(--accent); color: var(--accent); }
.dnav-item .di { width: 20px; display: flex; align-items: center; justify-content: center; }
.dnav-badge {
  margin-left: auto; background: var(--red); color: #fff;
  font-size: 9px; font-weight: 700; padding: 2px 5px; border-radius: 8px;
}

/* ── Desktop sidebar ─────────────────────────────────────────────────────────── */
@media (min-width: 960px) {
  #site-header { padding: 0 24px; gap: 16px; }
  #bottom-nav { display: none; }
  #drawer-panel {
    position: fixed; transform: none; pointer-events: all;
    top: var(--header-h); width: var(--sidebar-w); border-right: 1px solid var(--border);
  }
  #drawer-overlay { display: none; }
  #drawer { pointer-events: none; }
  #page-wrap { margin-left: var(--sidebar-w); }
}

/* ── Page wrapper ────────────────────────────────────────────────────────────── */
#page-wrap {
  margin-top: var(--header-h);
  padding-bottom: calc(var(--bottomnav) + 16px);
  min-height: calc(100vh - var(--header-h));
}
@media (min-width: 960px) {
  #page-wrap { padding-bottom: 40px; }
}

/* ── Main content ────────────────────────────────────────────────────────────── */
.main { padding: 16px 14px; max-width: 1400px; margin: 0 auto; }
@media (min-width: 640px) { .main { padding: 20px; } }
@media (min-width: 960px) { .main { padding: 24px 28px; } }

/* ── Buttons ─────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px; padding: 9px 18px; border-radius: var(--r);
  font-size: 13px; font-weight: 600; transition: .18s;
  cursor: pointer; white-space: nowrap; border: none; font-family: inherit;
}
.btn-accent  { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent2); }
.btn-outline { background: none; border: 1px solid var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost   { background: var(--surface2); color: var(--text); }
.btn-ghost:hover { background: var(--surface3); }
.btn-danger  { background: var(--red); color: #fff; }
.btn-danger:hover { opacity: .85; }
.btn-green   { background: var(--green); color: #000; }
.btn-green:hover { opacity: .85; }
.btn-gold    { background: var(--gold); color: #000; }
.btn-sm { padding: 6px 12px; font-size: 12px; }
.btn-lg { padding: 13px 28px; font-size: 15px; }
.btn-full { width: 100%; }
.btn-icon { padding: 8px; border-radius: var(--r); }

/* ── Badges ──────────────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 8px; border-radius: 4px;
  font-size: 10px; font-weight: 700; letter-spacing: .03em;
}
.badge-accent { background: var(--accent-dim); color: var(--accent); }
.badge-green  { background: var(--green-dim);  color: var(--green); }
.badge-red    { background: var(--red-dim);    color: var(--red); }
.badge-blue   { background: var(--blue-dim);   color: var(--blue); }
.badge-gold   { background: var(--gold-dim);   color: var(--gold); }
.badge-surface{ background: var(--surface2);   color: var(--text2); }

/* ── Cards ───────────────────────────────────────────────────────────────────── */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 16px;
}
.card-sm { padding: 12px; }

/* ── Forms ───────────────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; margin-bottom: 6px; color: var(--text2);
  font-size: 12px; font-weight: 600; letter-spacing: .03em; text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--r); padding: 11px 13px; color: var(--text);
  outline: none; transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text3); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 500px) { .form-grid { grid-template-columns: 1fr; } }
.checkbox-row {
  display: flex; align-items: flex-start; gap: 8px;
  cursor: pointer; font-size: 13px; color: var(--text2);
}
.checkbox-row input[type=checkbox] { margin-top: 2px; flex-shrink: 0; accent-color: var(--accent); }
.toggle-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 13px; color: var(--text2);
}
.toggle-row:last-child { border-bottom: none; }

/* ── Alerts ──────────────────────────────────────────────────────────────────── */
.alert {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 14px; border-radius: var(--r);
  margin-bottom: 16px; font-size: 13px; line-height: 1.5;
}
.alert-success { background: var(--green-dim); border: 1px solid rgba(0,201,106,.25); color: var(--green); }
.alert-error   { background: var(--red-dim);   border: 1px solid rgba(255,60,60,.25); color: var(--red); }
.alert-info    { background: var(--blue-dim);   border: 1px solid rgba(74,158,255,.25); color: var(--blue); }
.alert-warn    { background: var(--accent-dim); border: 1px solid rgba(255,105,0,.25); color: var(--accent); }

/* ── Tabs ────────────────────────────────────────────────────────────────────── */
.tabs {
  display: flex; border-bottom: 1px solid var(--border); margin-bottom: 16px;
  overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.tabs::-webkit-scrollbar { display: none; }
.tab {
  padding: 10px 16px; color: var(--text2); cursor: pointer;
  border-bottom: 2px solid transparent; white-space: nowrap;
  font-size: 13px; font-weight: 500; transition: .15s; flex-shrink: 0;
}
.tab:hover { color: var(--text); }
.tab.active { color: var(--accent); border-bottom-color: var(--accent); }

/* ── Section heading ─────────────────────────────────────────────────────────── */
.section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.section-title {
  font-size: 15px; font-weight: 700; display: flex; align-items: center; gap: 8px;
}
.section-title .st-icon { color: var(--accent); }

/* ── Divider ─────────────────────────────────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--border); margin: 16px 0; }

/* ── Video grid ──────────────────────────────────────────────────────────────── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px; margin-bottom: 20px;
}
@media (min-width: 540px)  { .video-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px)  { .video-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1200px) { .video-grid { grid-template-columns: repeat(5, 1fr); } }

.video-card {
  background: var(--surface); border-radius: var(--r2);
  overflow: hidden; cursor: pointer; transition: transform .2s;
  -webkit-tap-highlight-color: transparent;
}
.video-card:hover { transform: translateY(-2px); }
.video-card:active { transform: scale(.97); }

.vcard-thumb {
  position: relative; aspect-ratio: 16/9;
  background: var(--surface2); overflow: hidden;
}
.vcard-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .3s;
}
.video-card:hover .vcard-thumb img { transform: scale(1.05); }

.vcard-dur {
  position: absolute; bottom: 6px; right: 6px;
  background: rgba(0,0,0,.8); color: #fff;
  font-size: 10px; font-weight: 700; padding: 2px 5px; border-radius: 3px;
}
.vcard-tag {
  position: absolute; top: 6px; left: 6px;
  font-size: 9px; font-weight: 800; padding: 2px 6px; border-radius: 3px;
  text-transform: uppercase; letter-spacing: .04em;
}
.vcard-tag-premium { background: var(--accent); color: #fff; }
.vcard-tag-ppv     { background: var(--gold); color: #000; }
.vcard-tag-live    { background: var(--red); color: #fff; }
.vcard-tag-members { background: #9b59b6; color: #fff; }

.vcard-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .2s; background: rgba(0,0,0,.35);
}
.video-card:hover .vcard-play { opacity: 1; }
.vcard-play-btn {
  width: 42px; height: 42px; background: var(--accent);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff;
}
.vcard-info { padding: 10px 10px 12px; }
.vcard-title {
  font-size: 12.5px; font-weight: 500; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; margin-bottom: 5px; font-family: inherit;
}
.vcard-meta { display: flex; flex-wrap: wrap; gap: 4px; font-size: 11px; color: var(--text3); }
.vcard-author { color: var(--text2); font-weight: 500; }
.vcard-author:hover { color: var(--accent); }

/* ── Category scroll strip ───────────────────────────────────────────────────── */
.cat-strip {
  display: flex; gap: 7px; overflow-x: auto; padding-bottom: 8px;
  margin-bottom: 16px; scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.cat-strip::-webkit-scrollbar { display: none; }
.cat-chip {
  background: var(--surface2); border: 1px solid var(--border); border-radius: 20px;
  padding: 6px 14px; font-size: 12px; font-weight: 500; color: var(--text2);
  white-space: nowrap; cursor: pointer; transition: .15s; flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.cat-chip:hover, .cat-chip.active {
  background: var(--accent); color: #fff; border-color: var(--accent);
}

/* ── Stat cards ──────────────────────────────────────────────────────────────── */
.stat-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 18px;
}
@media (min-width: 640px) { .stat-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 14px 16px; text-align: center;
}
.stat-num {
  font-size: 22px; font-weight: 800; color: var(--accent); letter-spacing: -.5px;
  margin-bottom: 3px;
}
.stat-label { font-size: 11px; color: var(--text2); }

/* ── Horizontal scroll cards ─────────────────────────────────────────────────── */
.hscroll {
  display: flex; gap: 10px; overflow-x: auto; padding-bottom: 8px;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.hscroll::-webkit-scrollbar { display: none; }

/* ── Paginator ───────────────────────────────────────────────────────────────── */
.paginator { margin: 24px 0; }
.paginator ul { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; }
.paginator ul li a {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px; border-radius: var(--r);
  background: var(--surface2); border: 1px solid var(--border);
  color: var(--text2); font-size: 13px; padding: 0 8px; transition: .15s;
}
.paginator ul li a:hover { border-color: var(--accent); color: var(--accent); }
.paginator ul li a[aria-current] { background: var(--accent); border-color: var(--accent); color: #fff; }
.paginator ul li.dots { display: flex; align-items: center; padding: 0 4px; color: var(--text3); }

/* ── Bottom sheet modal ──────────────────────────────────────────────────────── */
.sheet-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.7); z-index: 1100;
  align-items: flex-end; justify-content: center;
}
.sheet-overlay.open { display: flex; }
.sheet {
  background: var(--surface); border-radius: 20px 20px 0 0;
  padding: 20px; width: 100%; max-height: 90vh;
  overflow-y: auto; border-top: 1px solid var(--border);
}
@media (min-width: 640px) {
  .sheet-overlay { align-items: center; }
  .sheet { border-radius: var(--r2); max-width: 520px; }
}
.sheet-handle { width: 36px; height: 4px; background: var(--surface3); border-radius: 2px; margin: 0 auto 18px; }
.sheet-title { font-size: 16px; font-weight: 700; margin-bottom: 16px; }

/* ── Age gate ────────────────────────────────────────────────────────────────── */
#agegate {
  position: fixed; inset: 0; background: #000; z-index: 9999;
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.agegate-box { max-width: 400px; width: 100%; text-align: center; }
.agegate-logo { font-size: 38px; font-weight: 800; letter-spacing: -1px; margin-bottom: 6px; }
.agegate-logo span { color: var(--accent); }
.agegate-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 24px; margin-top: 18px;
}
.agegate-card h2 { font-size: 18px; margin-bottom: 8px; }
.agegate-card p { color: var(--text2); font-size: 12.5px; line-height: 1.6; margin-bottom: 4px; }
.agegate-btns { display: flex; flex-direction: column; gap: 10px; margin: 20px 0 14px; }
.agegate-legal { font-size: 10px; color: var(--text3); line-height: 1.6; }
.agegate-legal a { color: var(--text2); text-decoration: underline; }

/* ── Profile hero ────────────────────────────────────────────────────────────── */
.profile-hero {
  background: linear-gradient(135deg, #1a0800, var(--bg));
  border: 1px solid var(--border); border-radius: var(--r2);
  padding: 20px 16px; margin-bottom: 16px;
}
.profile-top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.profile-av {
  width: 72px; height: 72px; border-radius: 50%;
  border: 2px solid var(--accent); overflow: hidden; flex-shrink: 0;
  background: var(--accent); display: flex; align-items: center;
  justify-content: center; color: #fff; font-size: 26px; font-weight: 800;
}
.profile-av img { width: 100%; height: 100%; object-fit: cover; }
.profile-name { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.profile-meta { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; margin-top: 4px; }
.profile-bio { color: var(--text2); font-size: 12.5px; margin-top: 4px; }
.profile-stats { display: flex; justify-content: space-around; padding-top: 14px; border-top: 1px solid var(--border); }
.ps-stat { text-align: center; }
.ps-num { font-size: 18px; font-weight: 800; color: var(--accent); }
.ps-label { font-size: 10px; color: var(--text3); margin-top: 1px; }

/* ── Watch page ──────────────────────────────────────────────────────────────── */
.watch-player {
  background: #000; aspect-ratio: 16/9; position: relative;
  cursor: pointer; overflow: hidden;
  margin: -16px -14px 0;
}
@media (min-width: 640px) { .watch-player { margin: 0; border-radius: var(--r2); } }
.watch-player video { width: 100%; height: 100%; }
.player-poster {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1a0800, #0a0a0a);
}
.player-play-btn {
  width: 64px; height: 64px; background: var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #fff;
  box-shadow: 0 4px 24px rgba(255,105,0,.5); transition: transform .2s;
}
.player-play-btn:hover { transform: scale(1.1); }
.player-badge-tl {
  position: absolute; top: 10px; left: 10px;
  background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 800; padding: 3px 8px; border-radius: 3px;
  text-transform: uppercase; letter-spacing: .04em;
}
.player-badge-tr {
  position: absolute; top: 10px; right: 10px;
  background: rgba(0,0,0,.7); color: #fff;
  font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 3px;
}
.premium-wall {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.85); flex-direction: column; gap: 10px; text-align: center;
  padding: 20px;
}
.premium-wall h3 { font-size: 18px; margin-bottom: 4px; }
.premium-wall p  { color: var(--text2); font-size: 13px; margin-bottom: 12px; }
.watch-info { padding: 14px 0 8px; }
.watch-title { font-size: 16px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
@media (min-width: 640px) { .watch-title { font-size: 18px; } }
.watch-meta-bar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px; padding: 10px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
}
.watch-views { font-size: 12px; color: var(--text3); }
.like-row { display: flex; gap: 6px; }
.like-btn {
  display: flex; align-items: center; gap: 5px;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 20px; padding: 7px 14px; color: var(--text);
  font-size: 12px; font-weight: 500; transition: .15s;
  -webkit-tap-highlight-color: transparent;
}
.like-btn:hover, .like-btn.liked   { border-color: var(--accent); color: var(--accent); }
.like-btn.disliked { border-color: var(--red); color: var(--red); }
.action-scroll {
  display: flex; gap: 6px; overflow-x: auto; padding-bottom: 6px;
  margin-bottom: 14px; scrollbar-width: none;
}
.action-scroll::-webkit-scrollbar { display: none; }
.action-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: var(--surface2); border: 1px solid var(--border); border-radius: var(--r);
  padding: 9px 14px; color: var(--text2); font-size: 10px; font-weight: 600;
  white-space: nowrap; cursor: pointer; flex-shrink: 0; transition: .15s;
  text-transform: uppercase; letter-spacing: .03em;
  -webkit-tap-highlight-color: transparent;
}
.action-item:hover, .action-item:active { border-color: var(--accent); color: var(--accent); }
.channel-row {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 0; border-bottom: 1px solid var(--border); margin-bottom: 12px;
}
.chan-av {
  width: 42px; height: 42px; border-radius: 50%; overflow: hidden;
  background: var(--accent); display: flex; align-items: center;
  justify-content: center; color: #fff; font-size: 16px; font-weight: 700;
  flex-shrink: 0; cursor: pointer;
}
.chan-av img { width: 100%; height: 100%; object-fit: cover; }
.chan-name { font-weight: 700; font-size: 14px; cursor: pointer; }
.chan-name:hover { color: var(--accent); }
.chan-subs { font-size: 11px; color: var(--text3); margin-top: 2px; }
.sub-btn {
  margin-left: auto; flex-shrink: 0;
  background: var(--accent); color: #fff; border: none;
  border-radius: 20px; padding: 8px 18px; font-size: 13px; font-weight: 700;
  cursor: pointer; transition: .15s;
}
.sub-btn:hover { background: var(--accent2); }
.sub-btn.subbed { background: var(--surface2); color: var(--text2); border: 1px solid var(--border); }
.tag-row {
  display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none;
  padding-bottom: 6px; margin-bottom: 12px;
}
.tag-row::-webkit-scrollbar { display: none; }
.tag-chip {
  background: var(--surface2); border: 1px solid var(--border); border-radius: 20px;
  padding: 4px 10px; font-size: 11px; color: var(--text2); white-space: nowrap;
  cursor: pointer; flex-shrink: 0; transition: .15s;
}
.tag-chip:hover { border-color: var(--accent); color: var(--accent); }
.desc-box {
  background: var(--surface2); border-radius: var(--r);
  padding: 12px 14px; font-size: 13px; color: var(--text2);
  line-height: 1.7; margin-bottom: 14px; cursor: pointer;
}
/* Comments */
.comment-form-row { display: flex; gap: 8px; align-items: flex-start; margin-bottom: 18px; }
.comment-av {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  overflow: hidden; background: var(--accent);
  display: flex; align-items: center; justify-content: center; color: #fff;
  font-size: 13px; font-weight: 700; margin-top: 2px;
}
.comment-av img { width: 100%; height: 100%; object-fit: cover; }
.comment-input {
  flex: 1; background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--r); padding: 9px 12px; color: var(--text);
  outline: none; font-size: 13px; transition: border-color .2s; resize: none;
}
.comment-input:focus { border-color: var(--accent); }
.comment-item { display: flex; gap: 8px; margin-bottom: 14px; }
.cmt-av {
  width: 32px; height: 32px; border-radius: 50%; overflow: hidden;
  background: var(--surface3); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--text2); font-size: 12px; font-weight: 700;
}
.cmt-av img { width: 100%; height: 100%; object-fit: cover; }
.cmt-body { flex: 1; min-width: 0; }
.cmt-author { font-weight: 700; font-size: 12.5px; cursor: pointer; }
.cmt-author:hover { color: var(--accent); }
.cmt-time { color: var(--text3); font-size: 10px; margin-left: 6px; }
.cmt-text { color: var(--text2); font-size: 13px; margin-top: 3px; line-height: 1.6; }
.cmt-actions { display: flex; gap: 12px; margin-top: 5px; }
.cmt-action { color: var(--text3); font-size: 11px; cursor: pointer; display: flex; align-items: center; gap: 3px; }
.cmt-action:hover { color: var(--accent); }
/* Related sidebar */
.related-item {
  display: flex; gap: 8px; margin-bottom: 10px; cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.related-item:hover .ri-title { color: var(--accent); }
.ri-thumb {
  width: 115px; aspect-ratio: 16/9; border-radius: var(--r);
  overflow: hidden; flex-shrink: 0; background: var(--surface2);
}
.ri-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ri-info { flex: 1; min-width: 0; }
.ri-title {
  font-size: 12px; font-weight: 500; line-height: 1.4; margin-bottom: 4px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.ri-meta { font-size: 10px; color: var(--text3); }

/* ── Messages ────────────────────────────────────────────────────────────────── */
.conv-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: .12s;
  -webkit-tap-highlight-color: transparent;
}
.conv-item:active { background: var(--surface2); }
.conv-av {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 16px; font-weight: 700;
}
.conv-av img { width: 100%; height: 100%; object-fit: cover; }
.conv-info { flex: 1; min-width: 0; }
.conv-name { font-weight: 600; font-size: 13.5px; margin-bottom: 2px; }
.conv-preview { font-size: 12px; color: var(--text3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.conv-right { text-align: right; flex-shrink: 0; }
.conv-time { font-size: 10px; color: var(--text3); margin-bottom: 3px; }
.unread-dot { background: var(--accent); color: #fff; font-size: 9px; font-weight: 700; padding: 2px 5px; border-radius: 8px; display: inline-block; }
/* Chat full screen overlay */
#chat-screen {
  display: none; position: fixed; inset: 0; background: var(--bg); z-index: 950;
  flex-direction: column;
}
#chat-screen.open { display: flex; }
.chat-topbar {
  height: var(--header-h); background: var(--surface); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; padding: 0 12px; gap: 10px; flex-shrink: 0;
}
.chat-messages {
  flex: 1; overflow-y: auto; padding: 14px 12px;
  display: flex; flex-direction: column; gap: 8px;
}
.msg-bub {
  max-width: 76%; padding: 10px 13px; border-radius: 14px;
  font-size: 13px; line-height: 1.5;
}
.msg-bub.mine    { background: var(--accent); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.msg-bub.theirs  { background: var(--surface2); color: var(--text); align-self: flex-start; border-bottom-left-radius: 4px; }
.msg-bub.locked  { border: 2px dashed var(--accent); text-align: center; cursor: pointer; align-self: center; max-width: 220px; background: var(--surface2); }
.msg-bub.tip     { background: var(--gold-dim); border: 1px solid rgba(245,197,24,.3); color: var(--gold); align-self: center; text-align: center; max-width: 220px; }
.msg-time { font-size: 9px; opacity: .65; margin-top: 3px; text-align: right; }
.chat-tip-row {
  display: flex; gap: 6px; padding: 7px 12px;
  border-top: 1px solid var(--border); background: var(--surface);
  overflow-x: auto; scrollbar-width: none; flex-shrink: 0;
}
.chat-tip-row::-webkit-scrollbar { display: none; }
.tip-chip {
  background: var(--surface2); border: 1px solid var(--border); border-radius: 14px;
  padding: 5px 10px; font-size: 11px; cursor: pointer; flex-shrink: 0; transition: .15s;
}
.tip-chip:hover { border-color: var(--gold); color: var(--gold); }
.chat-input-bar {
  padding: 10px 12px; border-top: 1px solid var(--border);
  display: flex; gap: 8px; align-items: center;
  background: var(--surface); flex-shrink: 0;
}
.chat-input {
  flex: 1; background: var(--surface2); border: 1px solid var(--border);
  border-radius: 20px; padding: 9px 14px; color: var(--text); outline: none; font-size: 13px;
}
.chat-input:focus { border-color: var(--accent); }

/* ── Premium plans ───────────────────────────────────────────────────────────── */
.plan-cards { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
@media (min-width: 640px) { .plan-cards { flex-direction: row; } }
.plan-card {
  flex: 1; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 20px; position: relative; transition: .2s;
}
.plan-card.featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.plan-tag {
  position: absolute; top: -10px; right: 16px;
  background: var(--accent); color: #fff; font-size: 10px; font-weight: 800;
  padding: 3px 10px; border-radius: 10px; text-transform: uppercase; letter-spacing: .04em;
}
.plan-name { font-size: 16px; font-weight: 800; margin-bottom: 6px; }
.plan-price { font-size: 30px; font-weight: 800; color: var(--accent); letter-spacing: -1px; }
.plan-period { font-size: 12px; color: var(--text3); margin-bottom: 16px; }
.plan-feats { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.plan-feat { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--text2); }
.plan-feat .pf-check { color: var(--green); flex-shrink: 0; }

/* ── Tokens grid ─────────────────────────────────────────────────────────────── */
.token-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.token-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r2);
  padding: 18px 14px; text-align: center; cursor: pointer; transition: .2s; position: relative;
  -webkit-tap-highlight-color: transparent;
}
.token-card:hover, .token-card.selected { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.token-hot {
  position: absolute; top: -9px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-size: 9px; font-weight: 800;
  padding: 2px 8px; border-radius: 8px; white-space: nowrap; text-transform: uppercase;
}
.token-icon-wrap { width: 40px; height: 40px; background: var(--accent-dim); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 8px; color: var(--accent); }
.token-amount { font-size: 26px; font-weight: 800; color: var(--accent); letter-spacing: -.5px; }
.token-price { font-size: 13px; color: var(--text2); margin: 4px 0; }
.token-save { font-size: 11px; color: var(--green); font-weight: 700; }

/* ── Analytics chart ─────────────────────────────────────────────────────────── */
.chart-wrap {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 16px; margin-bottom: 14px;
}
.chart-bars { display: flex; align-items: flex-end; gap: 4px; height: 90px; margin-top: 12px; }
.chart-bar {
  background: var(--accent); border-radius: 3px 3px 0 0; flex: 1;
  opacity: .7; transition: opacity .2s; cursor: pointer; min-width: 0;
}
.chart-bar:hover { opacity: 1; }
.chart-bar.green { background: var(--green); }
.chart-xlabels { display: flex; gap: 4px; margin-top: 5px; }
.chart-xl { flex: 1; text-align: center; font-size: 8px; color: var(--text3); min-width: 0; }

/* ── Earnings scroll ─────────────────────────────────────────────────────────── */
.earn-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r2);
  padding: 14px 16px; text-align: center; min-width: 120px; flex-shrink: 0;
}
.earn-num { font-size: 20px; font-weight: 800; color: var(--accent); }
.earn-label { font-size: 10px; color: var(--text2); margin-top: 3px; }

/* ── Post cards ──────────────────────────────────────────────────────────────── */
.post-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r2); margin-bottom: 12px; overflow: hidden; }
.post-head { display: flex; align-items: center; gap: 10px; padding: 14px; }
.post-av {
  width: 38px; height: 38px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  background: var(--accent); display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px; font-weight: 700;
}
.post-av img { width: 100%; height: 100%; object-fit: cover; }
.post-author { font-weight: 700; font-size: 13.5px; }
.post-time { font-size: 10px; color: var(--text3); margin-top: 2px; }
.post-body { padding: 0 14px 10px; font-size: 13px; line-height: 1.7; color: var(--text2); }
.post-media { width: 100%; object-fit: cover; }
.post-media-wrap { position: relative; overflow: hidden; }
.post-lock-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  background: rgba(0,0,0,.6);
}
.post-actions {
  display: flex; border-top: 1px solid var(--border);
  overflow-x: auto; scrollbar-width: none;
}
.post-actions::-webkit-scrollbar { display: none; }
.post-action {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 10px 6px; color: var(--text3); cursor: pointer;
  font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .03em;
  min-width: 56px; transition: .15s; -webkit-tap-highlight-color: transparent;
}
.post-action:hover, .post-action:active { color: var(--accent); }

/* ── Membership tiers ────────────────────────────────────────────────────────── */
.tier-card { background: var(--surface); border: 2px solid var(--border); border-radius: var(--r2); padding: 18px; margin-bottom: 10px; }
.tier-card.bronze { border-color: rgba(205,127,50,.4); }
.tier-card.silver { border-color: rgba(192,192,192,.4); }
.tier-card.gold   { border-color: rgba(245,197,24,.4); }
.tier-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.tier-icon-wrap { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tier-name { font-size: 17px; font-weight: 800; }
.tier-members { font-size: 11px; color: var(--text3); margin-top: 2px; }
.tier-price { font-size: 22px; font-weight: 800; color: var(--accent); }
.tier-feats { list-style: none; margin-top: 12px; display: flex; flex-direction: column; gap: 5px; }
.tier-feats li { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--text2); }
.tier-feats li .tf-icon { color: var(--green); flex-shrink: 0; }

/* ── Top fans ────────────────────────────────────────────────────────────────── */
.fan-row { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.fan-rank { font-size: 18px; font-weight: 800; width: 28px; text-align: center; flex-shrink: 0; }
.fan-rank.r1 { color: var(--gold); }
.fan-rank.r2 { color: #c0c0c0; }
.fan-rank.r3 { color: #cd7f32; }
.fan-av { width: 38px; height: 38px; border-radius: 50%; overflow: hidden; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px; font-weight: 700; }
.fan-spent { font-size: 16px; font-weight: 800; color: var(--accent); margin-left: auto; }

/* ── Request cards ───────────────────────────────────────────────────────────── */
.req-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r2); padding: 16px; margin-bottom: 10px; }
.req-from { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.req-title { font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.req-desc { font-size: 13px; color: var(--text2); line-height: 1.6; margin-bottom: 10px; }
.req-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.req-price { font-size: 22px; font-weight: 800; color: var(--accent); }

/* ── Wallet hero ─────────────────────────────────────────────────────────────── */
.wallet-hero {
  background: linear-gradient(135deg, #1a0800, #1a1200);
  border: 1px solid rgba(255,105,0,.3); border-radius: var(--r2);
  padding: 24px; text-align: center; margin-bottom: 18px;
}
.wallet-bal { font-size: 42px; font-weight: 800; color: var(--accent); letter-spacing: -2px; margin: 8px 0; }
.wallet-pending { font-size: 12px; color: var(--text2); }

/* ── Live ────────────────────────────────────────────────────────────────────── */
.live-player {
  background: #000; aspect-ratio: 16/9; position: relative;
  overflow: hidden; margin: -16px -14px 0;
}
@media (min-width: 640px) { .live-player { margin: 0; border-radius: var(--r2); } }
.live-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--red); color: #fff; font-size: 10px; font-weight: 800;
  padding: 3px 8px; border-radius: 3px; text-transform: uppercase; letter-spacing: .05em;
  display: flex; align-items: center; gap: 5px;
}
.live-pulse { width: 6px; height: 6px; background: #fff; border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
.live-viewers-badge { position: absolute; top: 10px; right: 10px; background: rgba(0,0,0,.7); color: #fff; font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 3px; display: flex; align-items: center; gap: 5px; }
.live-chat-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r2); margin-top: 14px; overflow: hidden; }
.live-chat-head { padding: 11px 14px; border-bottom: 1px solid var(--border); font-weight: 700; font-size: 13px; display: flex; align-items: center; justify-content: space-between; }
.live-chat-msgs { padding: 10px 12px; height: 200px; overflow-y: auto; display: flex; flex-direction: column; gap: 6px; }
.lc-msg { font-size: 12.5px; line-height: 1.5; }
.lc-user { font-weight: 700; margin-right: 4px; }
.lc-tip { background: var(--gold-dim); padding: 3px 8px; border-radius: 4px; border-left: 2px solid var(--gold); }
.live-gifts { display: flex; gap: 6px; overflow-x: auto; padding: 8px 12px; border-top: 1px solid var(--border); scrollbar-width: none; }
.live-gifts::-webkit-scrollbar { display: none; }
.gift-btn { background: var(--surface2); border: 1px solid var(--border); border-radius: var(--r); padding: 8px 12px; font-size: 11px; cursor: pointer; flex-shrink: 0; text-align: center; transition: .15s; }
.gift-btn:hover { border-color: var(--gold); color: var(--gold); }
.live-input-row { display: flex; gap: 8px; padding: 8px 12px; border-top: 1px solid var(--border); }
.live-input { flex: 1; background: var(--surface2); border: 1px solid var(--border); border-radius: 20px; padding: 8px 12px; color: var(--text); outline: none; font-size: 12.5px; }

/* ── Admin tabs ──────────────────────────────────────────────────────────────── */
.admin-tabs { display: flex; gap: 6px; overflow-x: auto; padding-bottom: 12px; margin-bottom: 16px; scrollbar-width: none; }
.admin-tabs::-webkit-scrollbar { display: none; }
.admin-tab-btn {
  background: var(--surface2); border: 1px solid var(--border); border-radius: var(--r);
  padding: 8px 14px; font-size: 12px; font-weight: 600; color: var(--text2);
  white-space: nowrap; cursor: pointer; flex-shrink: 0; transition: .15s;
  display: flex; align-items: center; gap: 6px;
}
.admin-tab-btn:hover { border-color: var(--accent); color: var(--accent); }
.admin-tab-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.admin-section { display: none; }
.admin-section.active { display: block; }

/* ── Table ───────────────────────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--r2); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; min-width: 500px; }
table th {
  text-align: left; padding: 10px 12px; color: var(--text3); font-size: 10px;
  font-weight: 700; border-bottom: 1px solid var(--border); text-transform: uppercase;
  letter-spacing: .05em; white-space: nowrap; background: var(--surface2);
}
table td { padding: 11px 12px; border-bottom: 1px solid var(--border); font-size: 12.5px; vertical-align: middle; }
table tr:last-child td { border-bottom: none; }
table tr:hover td { background: var(--surface2); }

/* ── Category grid ───────────────────────────────────────────────────────────── */
.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (min-width: 500px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .cat-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1200px) { .cat-grid { grid-template-columns: repeat(6, 1fr); } }
.cat-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r2); overflow: hidden; cursor: pointer; transition: .2s;
  -webkit-tap-highlight-color: transparent;
}
.cat-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.cat-card:active { transform: scale(.97); }
.cat-thumb { height: 70px; background: var(--surface2); display: flex; align-items: center; justify-content: center; color: var(--accent); }
.cat-label { padding: 8px 10px; font-weight: 700; font-size: 12.5px; }
.cat-count { padding: 0 10px 8px; color: var(--text3); font-size: 10px; }

/* ── Upload drop zone ────────────────────────────────────────────────────────── */
.dropzone {
  border: 2px dashed var(--border); border-radius: var(--r2);
  padding: 36px 20px; text-align: center; cursor: pointer; transition: .2s; margin-bottom: 18px;
}
.dropzone:hover, .dropzone.drag { border-color: var(--accent); background: var(--accent-dim); }
.dropzone-icon { color: var(--accent); margin: 0 auto 12px; }
.dropzone h3 { font-size: 15px; margin-bottom: 4px; }
.dropzone p { font-size: 12px; color: var(--text3); }
.upload-progress { background: var(--surface2); border-radius: 10px; height: 6px; margin-top: 14px; max-width: 240px; margin-left: auto; margin-right: auto; overflow: hidden; }
.upload-progress-fill { height: 100%; background: var(--accent); border-radius: 10px; width: 0; transition: width .3s; }

/* ── Referral ────────────────────────────────────────────────────────────────── */
.ref-hero { background: linear-gradient(135deg, #1a0800, var(--bg)); border: 1px solid rgba(255,105,0,.3); border-radius: var(--r2); padding: 22px; text-align: center; margin-bottom: 18px; }
.ref-link { background: var(--surface2); border: 1px solid var(--border); border-radius: var(--r); padding: 10px 14px; font-family: monospace; font-size: 13px; color: var(--accent); margin: 12px 0; display: block; word-break: break-all; }

/* ── Notification items ──────────────────────────────────────────────────────── */
.notif-item { display: flex; align-items: flex-start; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--border); cursor: pointer; transition: .15s; }
.notif-item:active { padding-left: 4px; }
.notif-icon { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.notif-body { flex: 1; min-width: 0; }
.notif-text { font-size: 13px; line-height: 1.4; }
.notif-time { font-size: 10px; color: var(--text3); margin-top: 3px; }
.notif-unread { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; margin-top: 5px; flex-shrink: 0; }

/* ── Verify banner ───────────────────────────────────────────────────────────── */
.verify-banner { background: linear-gradient(90deg, #1a0800, #1a1200); border: 1px solid rgba(255,105,0,.35); border-radius: var(--r); padding: 12px 14px; display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.vb-icon { color: var(--accent); flex-shrink: 0; }
.vb-text { flex: 1; font-size: 12.5px; line-height: 1.5; }

/* ── Report card ─────────────────────────────────────────────────────────────── */
.report-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r2); padding: 14px; margin-bottom: 10px; }
.report-head { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; }

/* ── Utility ─────────────────────────────────────────────────────────────────── */
.text-accent { color: var(--accent); }
.text-muted  { color: var(--text2); }
.text-dim    { color: var(--text3); }
.text-green  { color: var(--green); }
.text-red    { color: var(--red); }
.text-gold   { color: var(--gold); }
.fw-700      { font-weight: 700; }
.fw-800      { font-weight: 800; }
.text-center { text-align: center; }
.text-right  { text-align: right; }
.mt-4  { margin-top:4px }  .mt-8  { margin-top:8px }
.mt-12 { margin-top:12px } .mt-16 { margin-top:16px }
.mt-20 { margin-top:20px } .mt-24 { margin-top:24px }
.mb-4  { margin-bottom:4px }  .mb-8  { margin-bottom:8px }
.mb-12 { margin-bottom:12px } .mb-16 { margin-bottom:16px }
.mb-20 { margin-bottom:20px } .mb-24 { margin-bottom:24px }
.flex  { display:flex } .flex-col { flex-direction:column }
.items-center { align-items:center } .justify-between { justify-content:space-between }
.gap-6 { gap:6px } .gap-8 { gap:8px } .gap-10 { gap:10px } .gap-12 { gap:12px }
.flex-1 { flex:1 } .w-full { width:100% }
.truncate { white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.hidden { display:none !important }
