/* ═══════════════════════════════════════════════════
   soyouami — Style Sheet
   Dark Luxury Editorial Aesthetic
   Fonts: Cormorant Garamond + Outfit
═══════════════════════════════════════════════════ */

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

:root {
  --bg:       #09090F;
  --bg-alt:   #0E0E1A;
  --surface:  #131320;
  --surface2: #1A1A2C;
  --surface3: #212138;
  --border:   rgba(255,255,255,0.06);
  --border2:  rgba(255,255,255,0.10);

  --gold:      #E8A020;
  --gold-lt:   #F5C84A;
  --gold-dim:  rgba(232,160,32,0.12);
  --gold-glow: 0 0 32px rgba(232,160,32,0.18);

  --text:     #EDE9E3;
  --text-mid: #9896AA;
  --text-soft:#5A5870;

  --green:   #20D4A0;
  --red:     #FF5A5A;
  --blue:    #5090FF;
  --purple:  #9370FF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', sans-serif;

  --sidebar-w: 228px;
  --r:    14px;
  --r-sm: 10px;
  --r-xs: 6px;
  --tr:   0.18s ease;

  --sh: 0 8px 32px rgba(0,0,0,0.5);
  --sh-sm: 0 2px 12px rgba(0,0,0,0.4);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }
button { cursor: pointer; font-family: var(--font-body); border: none; outline: none; }
input, textarea, select {
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--surface2);
  border: 1.5px solid var(--border2);
  color: var(--text);
  border-radius: var(--r-sm);
  padding: 11px 14px;
  width: 100%;
  transition: border-color var(--tr), box-shadow var(--tr);
  outline: none;
}
input::placeholder, textarea::placeholder { color: var(--text-soft); }
input:focus, textarea:focus, select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232,160,32,0.12);
}
select option { background: var(--surface2); }
textarea { resize: vertical; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--surface3); border-radius: 99px; }

/* ─── LOGO ─── */
.logo-mark {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
}

/* ─── BUTTONS ─── */
.btn-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  background: var(--gold);
  color: #0A0A10;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: var(--r-sm);
  border: none;
  width: 100%;
  transition: all var(--tr);
  position: relative;
  overflow: hidden;
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-1px); box-shadow: var(--gold-glow); }
.btn-gold:active { transform: translateY(0); }
.btn-gold.sm { width: auto; padding: 9px 18px; font-size: 0.83rem; }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  background: transparent;
  color: var(--text-mid);
  font-size: 0.88rem;
  padding: 11px 20px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--border2);
  transition: all var(--tr);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1.5px solid var(--border2);
  color: var(--text);
  padding: 8px 16px;
  border-radius: var(--r-sm);
  font-size: 0.83rem;
  font-weight: 500;
  transition: all var(--tr);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-danger {
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,90,90,0.1);
  border: 1.5px solid rgba(255,90,90,0.3);
  color: var(--red);
  padding: 9px 18px;
  border-radius: var(--r-sm);
  font-size: 0.83rem;
  font-weight: 600;
  transition: all var(--tr);
}
.btn-danger:hover { background: rgba(255,90,90,0.2); }

.btn-spin {
  width: 18px; height: 18px;
  border: 2px solid rgba(10,10,16,0.3);
  border-top-color: #0a0a10;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hidden { display: none !important; }

/* ─── FORMS ─── */
.field-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.field-group label { font-size: 0.8rem; font-weight: 600; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.04em; }
.fields-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.req { color: var(--gold); }
.field-hint { font-size: 0.75rem; color: var(--text-soft); }
.field-hint-inline { font-size: 0.75rem; color: var(--text-soft); font-weight: 400; text-transform: none; letter-spacing: 0; }
.form-error { background: rgba(255,90,90,0.1); border: 1px solid rgba(255,90,90,0.3); color: var(--red); padding: 10px 14px; border-radius: var(--r-xs); font-size: 0.85rem; margin-bottom: 12px; }
.form-link { text-align: center; font-size: 0.82rem; color: var(--text-soft); margin-top: 10px; }
.form-link a { color: var(--gold); }

/* handle input */
.handle-wrap { position: relative; }
.handle-wrap input { padding-left: 28px; }
.handle-at { position: absolute; left: 11px; top: 50%; transform: translateY(-50%); color: var(--gold); font-weight: 700; font-size: 0.95rem; pointer-events: none; }

/* password */
.pw-wrap { position: relative; }
.pw-wrap input { padding-right: 42px; }
.toggle-pw {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: var(--text-soft); padding: 0;
  transition: color var(--tr);
}
.toggle-pw:hover { color: var(--gold); }
.toggle-pw svg { width: 17px; height: 17px; display: block; }
.pw-meter { height: 3px; background: var(--surface3); border-radius: 99px; margin-top: 7px; overflow: hidden; }
.pw-bar { height: 100%; border-radius: 99px; transition: all 0.3s ease; width: 0%; }
.pw-bar.s1 { width: 25%; background: var(--red); }
.pw-bar.s2 { width: 50%; background: #E8A020; }
.pw-bar.s3 { width: 75%; background: #A0C832; }
.pw-bar.s4 { width: 100%; background: var(--green); }
.pw-label { font-size: 0.75rem; color: var(--text-soft); margin-top: 3px; display: block; }

/* terms */
.terms-check {
  display: flex; align-items: flex-start; gap: 10px;
  cursor: pointer; font-size: 0.83rem; color: var(--text-mid);
  margin-bottom: 16px; line-height: 1.5;
}
.terms-check input { display: none; }
.check-box {
  width: 18px; height: 18px; min-width: 18px;
  border: 2px solid var(--border2);
  border-radius: 4px; background: var(--surface2);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--tr);
}
.terms-check input:checked ~ .check-box { background: var(--gold); border-color: var(--gold); }
.terms-check input:checked ~ .check-box::after { content: '✓'; font-size: 11px; color: #0a0a10; font-weight: 900; }

/* ═══════ LANDING PAGE ═══════ */
#page-landing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.land-bg {
  position: fixed; inset: 0;
  background: linear-gradient(135deg, #060610 0%, #0D0818 50%, #060610 100%);
  z-index: 0;
  overflow: hidden;
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.5;
  animation: drift linear infinite;
}
.orb1 { width: 500px; height: 500px; background: radial-gradient(circle, #E8A02040, transparent 70%); top: -100px; left: -100px; animation-duration: 25s; }
.orb2 { width: 400px; height: 400px; background: radial-gradient(circle, #9370FF30, transparent 70%); top: 30%; right: -80px; animation-duration: 32s; animation-direction: reverse; }
.orb3 { width: 350px; height: 350px; background: radial-gradient(circle, #E8A02025, transparent 70%); bottom: -50px; left: 30%; animation-duration: 28s; }
.orb4 { width: 300px; height: 300px; background: radial-gradient(circle, #5090FF20, transparent 70%); top: 10%; left: 40%; animation-duration: 20s; animation-delay: -10s; }
.noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; opacity: 0.4;
}
@keyframes drift {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
  100% { transform: translate(0, 0) scale(1); }
}

.land-header {
  position: relative; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 48px;
}
.land-header .logo-mark { font-size: 2rem; }
.tagline-chip {
  background: var(--gold-dim);
  border: 1px solid rgba(232,160,32,0.2);
  color: var(--gold);
  padding: 5px 14px;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.land-main {
  position: relative; z-index: 10;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 40px;
  align-items: center;
  padding: 20px 48px 60px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.land-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 20px;
}
.land-line1 { display: block; color: var(--text); }
.land-line2 { display: block; color: var(--gold); font-style: italic; }
.land-line3 { display: block; color: var(--text-mid); }
.land-sub { color: var(--text-mid); font-size: 1.05rem; line-height: 1.7; max-width: 440px; margin-bottom: 32px; }
.land-stats {
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 28px;
  width: fit-content;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.stat-block { text-align: center; padding: 0 28px; }
.stat-val { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--gold); }
.stat-sfx { font-size: 1.1rem; color: var(--gold); }
.stat-lbl { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-soft); margin-top: 2px; }
.stat-sep { width: 1px; background: var(--border); height: 48px; }
.app-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.app-badge {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border2);
  border-radius: var(--r-sm);
  padding: 10px 16px;
  transition: all var(--tr);
}
.app-badge:hover { border-color: rgba(232,160,32,0.3); }
.app-badge svg { width: 24px; height: 24px; color: var(--text-mid); flex-shrink: 0; }
.badge-title { font-size: 0.82rem; font-weight: 700; color: var(--text); }
.badge-sub { font-size: 0.7rem; color: var(--text-soft); }

/* Auth Card */
.auth-card {
  background: rgba(19,19,32,0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border2);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--sh);
}
.auth-tabs {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.auth-tab {
  background: none;
  border: none;
  padding: 17px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-soft);
  transition: all var(--tr);
  position: relative;
}
.auth-tab::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transition: transform var(--tr);
}
.auth-tab.active { color: var(--gold); }
.auth-tab.active::after { transform: scaleX(1); }
.auth-form { display: none; padding: 24px; }
.auth-form.active { display: block; }

/* Signup scrollable */
@media (max-height: 700px) {
  .auth-card { max-height: 90vh; overflow-y: auto; }
}

/* ═══════ APP SHELL ═══════ */
#page-app { position: relative; height: 100vh; display: flex; flex-direction: column; }

.mobile-bar {
  display: none;
  align-items: center; justify-content: space-between;
  padding: 12px 16px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}
.mobile-logo { font-size: 1.3rem; }
.icon-btn {
  background: none; border: none;
  color: var(--text-mid);
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--tr); position: relative;
}
.icon-btn svg { width: 22px; height: 22px; }
.icon-btn:hover { background: var(--surface2); color: var(--text); }
.notif-dot {
  position: absolute; top: 6px; right: 6px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
}

.app-body {
  display: flex; flex: 1;
  height: calc(100vh - 0px);
  overflow: hidden;
}

/* Sidebar */
.sidebar {
  width: var(--sidebar-w);
  min-width: var(--sidebar-w);
  background: var(--bg-alt);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  overflow-y: auto; overflow-x: hidden;
  height: 100%;
  flex-shrink: 0;
}
.sidebar-backdrop { display: none; }
.sidebar-top { padding: 20px 16px 14px; border-bottom: 1px solid var(--border); }
.sidebar-logo { font-size: 1.5rem; margin-bottom: 16px; }
.sidebar-user {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; padding: 8px; margin: -8px; border-radius: var(--r-sm);
  transition: background var(--tr);
}
.sidebar-user:hover { background: var(--surface2); }
.s-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--surface3);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; color: var(--text);
  flex-shrink: 0; border: 2px solid var(--gold-dim);
  overflow: hidden; background-size: cover; background-position: center;
}
.s-info { min-width: 0; }
.s-name { font-size: 0.88rem; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.s-handle { font-size: 0.74rem; color: var(--text-soft); white-space: nowrap; }
.sidebar-scores {
  display: flex; gap: 8px; margin-top: 12px;
}
.s-score-pill {
  flex: 1;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--r-xs);
  padding: 6px 8px;
  display: flex; align-items: center; gap: 5px;
  font-size: 0.75rem;
}
.s-score-pill.vibe .s-score-icon { color: var(--green); }
.s-score-icon { color: var(--gold); font-size: 0.85rem; }
.s-score-val { font-weight: 700; color: var(--text); font-size: 0.82rem; }
.s-score-lbl { color: var(--text-soft); font-size: 0.68rem; margin-left: auto; }

.sidebar-nav { padding: 10px 10px; display: flex; flex-direction: column; gap: 2px; flex: 1; }
.nav-item {
  display: flex; align-items: center; gap: 11px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  background: none; color: var(--text-soft);
  font-size: 0.88rem; font-weight: 500;
  width: 100%; text-align: left;
  transition: all var(--tr);
  position: relative;
  white-space: nowrap;
}
.nav-item svg { width: 18px; height: 18px; flex-shrink: 0; }
.nav-item:hover { background: var(--surface2); color: var(--text); }
.nav-item.active { background: var(--gold-dim); color: var(--gold); border: 1px solid rgba(232,160,32,0.15); }
.nav-item.active svg { stroke: var(--gold); }
.nav-divider { height: 1px; background: var(--border); margin: 6px 0; }
.premium-chip {
  font-size: 0.6rem; font-weight: 700;
  background: var(--gold);
  color: #0a0a10;
  padding: 1px 5px;
  border-radius: 4px;
  margin-left: 4px;
  vertical-align: middle;
}
.nav-badge {
  background: var(--gold);
  color: #0a0a10;
  font-size: 0.65rem; font-weight: 700;
  padding: 2px 6px; border-radius: 99px;
  margin-left: auto;
}
.signout-btn { color: var(--red); margin-top: auto; }
.signout-btn:hover { background: rgba(255,90,90,0.08); color: var(--red); }

/* Main Area */
.main-area {
  flex: 1;
  overflow-y: auto;
  height: 100%;
  position: relative;
}

/* Right Panel */
.right-panel {
  width: 280px; min-width: 280px;
  background: var(--bg-alt);
  border-left: 1px solid var(--border);
  overflow-y: auto; height: 100%;
  padding: 20px 14px;
  display: flex; flex-direction: column; gap: 16px;
}
.panel-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px;
}
.panel-title {
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-soft); margin-bottom: 12px;
}
.panel-loading {
  height: 4px; background: var(--surface3);
  border-radius: 99px; overflow: hidden;
  position: relative;
}
.panel-loading::after {
  content: '';
  position: absolute; top: 0; left: -40%;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: shimmer 1.2s ease infinite;
}
@keyframes shimmer { to { left: 100%; } }

/* ═══════ FEED PAGE ═══════ */
.page-hd {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 50;
  background: var(--bg);
  backdrop-filter: blur(10px);
}
.page-hd h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; }
.filter-pills { display: flex; gap: 6px; }
.filter-pill {
  background: var(--surface2); border: 1px solid var(--border);
  color: var(--text-mid); padding: 6px 14px;
  border-radius: 99px; font-size: 0.78rem; font-weight: 600;
  transition: all var(--tr);
}
.filter-pill:hover { border-color: var(--gold); color: var(--gold); }
.filter-pill.active { background: var(--gold-dim); border-color: rgba(232,160,32,0.3); color: var(--gold); }

/* Compose strip */
.compose-strip {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background var(--tr);
}
.compose-strip:hover { background: var(--surface); }
.compose-ph {
  flex: 1;
  background: var(--surface2);
  border: 1.5px solid var(--border2);
  border-radius: 99px;
  padding: 10px 18px;
  color: var(--text-soft);
  font-size: 0.9rem;
  pointer-events: none;
}
.compose-strip .btn-gold { width: auto; padding: 9px 18px; font-size: 0.82rem; }

/* POST CARD */
.post-card {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  transition: background var(--tr);
  animation: fadeUp 0.3s ease;
}
.post-card:hover { background: rgba(255,255,255,0.01); }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.post-card.gold-card {
  background: linear-gradient(135deg, rgba(232,160,32,0.04), transparent);
  border-left: 2px solid var(--gold);
}
.post-head { display: flex; gap: 12px; margin-bottom: 12px; }
.post-av {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--surface3);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem;
  flex-shrink: 0; cursor: pointer;
  border: 1.5px solid var(--border);
  background-size: cover; background-position: center;
  overflow: hidden;
  transition: border-color var(--tr);
}
.post-av:hover { border-color: var(--gold); }
.post-meta { flex: 1; min-width: 0; }
.post-name-row { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.post-name { font-weight: 700; font-size: 0.92rem; cursor: pointer; }
.post-name:hover { color: var(--gold); }
.post-handle { color: var(--text-soft); font-size: 0.8rem; }
.post-country { color: var(--text-soft); font-size: 0.78rem; }
.post-country::before { content: '·'; margin-right: 4px; }
.post-score-row { display: flex; align-items: center; gap: 6px; margin-top: 4px; }
.post-time { color: var(--text-soft); font-size: 0.75rem; }
.score-pip {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 0.72rem; font-weight: 700;
  padding: 2px 7px; border-radius: 4px;
}
.score-pip.soyou { background: rgba(232,160,32,0.12); color: var(--gold); }
.score-pip.vibe  { background: rgba(32,212,160,0.12); color: var(--green); }
.post-score-badge {
  margin-left: auto;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text-mid);
  font-size: 0.72rem; font-weight: 700;
  padding: 3px 8px; border-radius: 5px;
}
.post-score-badge.good { background: rgba(32,212,160,0.1); color: var(--green); border-color: rgba(32,212,160,0.2); }
.post-score-badge.low  { background: rgba(255,90,90,0.1); color: var(--red); border-color: rgba(255,90,90,0.2); }
.post-score-badge.gold { background: var(--gold-dim); color: var(--gold); border-color: rgba(232,160,32,0.3); animation: pulseBadge 2s ease infinite; }
@keyframes pulseBadge { 0%,100% { box-shadow: none; } 50% { box-shadow: var(--gold-glow); } }

.post-body {
  font-size: 0.95rem; line-height: 1.65;
  color: var(--text); margin-bottom: 14px;
  white-space: pre-wrap; word-break: break-word;
  text-align: justify;
}
.post-hashtag { color: var(--gold); cursor: pointer; }
.post-hashtag:hover { text-decoration: underline; }
.post-media { margin-bottom: 14px; border-radius: var(--r-sm); overflow: hidden; background: var(--surface2); }
.post-media img { width: 100%; max-height: 400px; object-fit: cover; display: block; }
.post-media video { width: 100%; max-height: 360px; display: block; }
.post-media audio { width: 100%; margin: 12px 0; }
.echoed-tag {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--surface2); border: 1px solid var(--border);
  color: var(--text-soft); font-size: 0.72rem; font-weight: 600;
  padding: 2px 8px; border-radius: 5px; margin-bottom: 6px;
}

.post-actions { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.action-btn {
  display: inline-flex; align-items: center; gap: 5px;
  background: none; border: 1px solid transparent;
  color: var(--text-soft); font-size: 0.82rem; font-weight: 500;
  padding: 6px 12px; border-radius: var(--r-xs);
  transition: all var(--tr);
}
.action-btn svg { width: 16px; height: 16px; }
.action-btn:hover { background: var(--surface2); color: var(--text); border-color: var(--border); }
.action-btn.resonate-btn:hover { color: var(--red); border-color: rgba(255,90,90,0.2); background: rgba(255,90,90,0.05); }
.action-btn.resonate-btn.active { color: var(--red); }
.action-btn.clash-btn:hover { color: #8888AA; border-color: rgba(136,136,170,0.2); background: rgba(136,136,170,0.05); }
.action-btn.amplify-btn:hover { color: var(--green); border-color: rgba(32,212,160,0.2); background: rgba(32,212,160,0.05); }
.action-btn.amplify-btn.active { color: var(--green); }
.action-btn.thread-btn:hover { color: var(--blue); border-color: rgba(80,144,255,0.2); background: rgba(80,144,255,0.05); }
.action-btn.util-btn { margin-left: auto; padding: 6px 8px; }

/* Loading states */
.page-loader-full { display: flex; align-items: center; justify-content: center; height: 60vh; }
.spinner-lg { width: 36px; height: 36px; border: 3px solid var(--border); border-top-color: var(--gold); border-radius: 50%; animation: spin 0.8s linear infinite; }
.spinner-sm { width: 20px; height: 20px; border: 2px solid var(--border); border-top-color: var(--gold); border-radius: 50%; animation: spin 0.8s linear infinite; display: inline-block; }

/* Empty state */
.empty-st {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 64px 24px;
  color: var(--text-soft); text-align: center;
}
.empty-st svg { width: 52px; height: 52px; opacity: 0.25; margin-bottom: 16px; }
.empty-st h4 { font-size: 1.1rem; font-weight: 700; color: var(--text-mid); margin-bottom: 6px; }
.empty-st p { font-size: 0.88rem; }

/* ═══════ PROFILE ═══════ */
.profile-banner {
  height: 180px;
  background: linear-gradient(135deg, var(--surface3), var(--surface));
  position: relative;
  background-size: cover; background-position: center;
}
.banner-upload-btn {
  position: absolute; top: 10px; right: 10px;
  background: rgba(0,0,0,0.45); color: #fff;
  border: none; border-radius: var(--r-sm);
  padding: 7px 12px; font-size: 0.78rem; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
  cursor: pointer; transition: background var(--tr); backdrop-filter: blur(4px);
}
.banner-upload-btn:hover { background: rgba(0,0,0,0.65); }
.banner-upload-btn svg { width: 14px; height: 14px; }
.av-upload-overlay {
  position: absolute; inset: 0; border-radius: 50%;
  background: rgba(0,0,0,0.45); color: #fff;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--tr); cursor: pointer;
  font-size: 0.65rem; font-weight: 700; flex-direction: column; gap: 3px;
}
.av-upload-overlay svg { width: 18px; height: 18px; }
.profile-av-wrap:hover .av-upload-overlay { opacity: 1; }
.profile-av-wrap {
  position: absolute; bottom: -28px; left: 24px;
}
.profile-av {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--surface3);
  border: 3px solid var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 600;
  color: var(--text);
  overflow: hidden; background-size: cover; background-position: center;
}
.profile-info { padding: 44px 24px 20px; border-bottom: 1px solid var(--border); }
.profile-name { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; margin-bottom: 2px; }
.profile-handle-txt { color: var(--text-soft); font-size: 0.85rem; margin-bottom: 8px; }
.profile-bio-txt { color: var(--text-mid); font-size: 0.9rem; line-height: 1.6; margin-bottom: 12px; }
.profile-meta { display: flex; flex-wrap: wrap; gap: 12px; font-size: 0.8rem; color: var(--text-soft); margin-bottom: 14px; }
.profile-meta span { display: flex; align-items: center; gap: 4px; }
.profile-meta svg { width: 13px; height: 13px; }
.profile-action-row { display: flex; gap: 8px; flex-wrap: wrap; }
.profile-dash {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
}
.dash-stat {
  padding: 20px 12px; text-align: center;
  border-right: 1px solid var(--border);
}
.dash-stat:last-child { border-right: none; }
.dash-val { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--gold); line-height: 1; }
.dash-val.green { color: var(--green); }
.dash-lbl { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-soft); margin-top: 4px; }
.profile-tabs { display: flex; border-bottom: 1px solid var(--border); }
.p-tab {
  flex: 1; padding: 14px; text-align: center;
  font-size: 0.82rem; font-weight: 600; color: var(--text-soft);
  background: none; border: none;
  position: relative; transition: color var(--tr);
}
.p-tab::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gold); transform: scaleX(0); transition: transform var(--tr);
}
.p-tab.active { color: var(--gold); }
.p-tab.active::after { transform: scaleX(1); }
.profile-tab-body { padding: 16px 0; }

/* ═══════ MODALS ═══════ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.modal {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 20px;
  width: 100%; max-width: 560px;
  max-height: 90vh;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 24px 80px rgba(0,0,0,0.8);
  animation: modalIn 0.22s ease;
}
.modal.large { max-width: 680px; }
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.modal-head h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; }
.modal-x {
  background: var(--surface2); border: none;
  color: var(--text-soft); width: 30px; height: 30px;
  border-radius: 50%; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--tr);
}
.modal-x:hover { background: var(--surface3); color: var(--text); }
.modal-body { padding: 20px 22px; overflow-y: auto; flex: 1; }
.modal-body.scrollable { overflow-y: auto; }
.modal-body h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; margin: 16px 0 6px; color: var(--gold); }
.modal-body p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 10px; }
.modal-foot {
  display: flex; align-items: center; justify-content: flex-end; gap: 10px;
  padding: 16px 22px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

/* Post Type Bar */
.post-type-bar { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.ptype {
  display: flex; align-items: center; gap: 6px;
  background: var(--surface2); border: 1.5px solid var(--border);
  color: var(--text-soft); padding: 7px 14px;
  border-radius: var(--r-xs); font-size: 0.8rem; font-weight: 600;
  transition: all var(--tr);
}
.ptype svg { width: 14px; height: 14px; }
.ptype.active { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
.ptype:hover { border-color: rgba(232,160,32,0.4); color: var(--text); }

/* Compose */
.post-compose { display: flex; gap: 12px; margin-bottom: 16px; }
.compose-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--surface3); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem;
  border: 1.5px solid var(--border);
  overflow: hidden; background-size: cover; background-position: center;
}
.compose-avatar.sm { width: 34px; height: 34px; }
.compose-right { flex: 1; }
.compose-right textarea {
  width: 100%; border: 1.5px solid var(--border2);
  background: var(--surface2); border-radius: var(--r-sm);
  padding: 12px; color: var(--text); font-size: 0.95rem;
  resize: none; min-height: 90px;
}
.compose-footer { display: flex; justify-content: flex-end; margin-top: 6px; }
.char-ct { font-size: 0.73rem; color: var(--text-soft); }
.compose-row { display: flex; align-items: center; gap: 10px; }
.compose-input-wrap { flex: 1; display: flex; gap: 8px; align-items: center; }
.compose-input-wrap input { margin-bottom: 0; }

/* Upload zone */
.upload-zone {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding: 24px;
  border: 2px dashed var(--border2);
  border-radius: var(--r); cursor: pointer;
  transition: all var(--tr); color: var(--text-soft);
  text-align: center; font-size: 0.85rem;
}
.upload-zone:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
.upload-zone svg { width: 32px; height: 32px; }
.upload-zone.sm { padding: 14px; flex-direction: row; }
.upload-zone.sm svg { width: 20px; height: 20px; }

/* Report */
.report-warn {
  background: rgba(255,90,90,0.08); border: 1px solid rgba(255,90,90,0.2);
  color: var(--red); padding: 10px 14px; border-radius: var(--r-xs);
  font-size: 0.83rem; margin-bottom: 16px;
}

/* Premium modal */
.premium-star { font-size: 3rem; color: var(--gold); margin-bottom: 10px; }
.premium-price { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gold); }

/* ═══════ NOTIFICATIONS ═══════ */
.notif-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  cursor: pointer; transition: background var(--tr);
}
.notif-item:hover { background: var(--surface); }
.notif-item.unread { background: rgba(232,160,32,0.04); border-left: 3px solid var(--gold); }
.notif-icon {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; background: var(--surface2);
}
.notif-icon svg { width: 18px; height: 18px; }
.notif-icon.resonate { background: rgba(255,90,90,0.1); color: var(--red); }
.notif-icon.clash { background: rgba(136,136,170,0.1); color: #8888AA; }
.notif-icon.amplify { background: rgba(32,212,160,0.1); color: var(--green); }
.notif-icon.thread { background: rgba(80,144,255,0.1); color: var(--blue); }
.notif-icon.follow { background: rgba(232,160,32,0.1); color: var(--gold); }
.notif-icon.system { background: rgba(147,112,255,0.1); color: var(--purple); }
.notif-body { flex: 1; min-width: 0; }
.notif-msg { font-size: 0.88rem; color: var(--text); line-height: 1.4; }
.notif-time { font-size: 0.75rem; color: var(--text-soft); margin-top: 3px; }
.notif-dot-badge {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0; margin-top: 6px;
}

/* ═══════ SEARCH ═══════ */
.search-wrap { padding: 20px 24px; border-bottom: 1px solid var(--border); }
.search-bar { position: relative; }
.search-bar input { padding-left: 42px; }
.search-bar .s-icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--text-soft); pointer-events: none;
}
.search-bar .s-icon svg { width: 17px; height: 17px; }
.search-filters { display: flex; gap: 6px; margin-top: 12px; flex-wrap: wrap; }

/* ═══════ MESSAGES ═══════ */
.msg-layout { display: flex; height: 100%; }
.convo-sidebar { width: 260px; border-right: 1px solid var(--border); overflow-y: auto; flex-shrink: 0; }
.convo-search { padding: 14px; border-bottom: 1px solid var(--border); }
.convo-item {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: background var(--tr);
}
.convo-item:hover { background: var(--surface); }
.convo-item.active { background: var(--gold-dim); }
.convo-av { width: 42px; height: 42px; border-radius: 50%; background: var(--surface3); display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; overflow: hidden; background-size: cover; }
.convo-info { flex: 1; min-width: 0; }
.convo-name { font-size: 0.88rem; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.convo-preview { font-size: 0.77rem; color: var(--text-soft); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.convo-time { font-size: 0.72rem; color: var(--text-soft); flex-shrink: 0; }
.chat-area { flex: 1; display: flex; flex-direction: column; }
.chat-header { padding: 14px 20px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.chat-messages { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.chat-input-bar { padding: 14px 20px; border-top: 1px solid var(--border); display: flex; gap: 10px; }
.chat-input-bar input { margin: 0; flex: 1; }
.chat-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; flex: 1; color: var(--text-soft); text-align: center; padding: 40px; }
.msg-bubble {
  max-width: 70%; padding: 10px 14px;
  border-radius: 14px; font-size: 0.9rem; line-height: 1.5; word-break: break-word;
}
.msg-bubble.mine { background: var(--gold); color: #0a0a10; align-self: flex-end; border-radius: 14px 14px 4px 14px; }
.msg-bubble.theirs { background: var(--surface2); color: var(--text); align-self: flex-start; border-radius: 14px 14px 14px 4px; }

/* ═══════ EVENTS ═══════ */
.events-grid { padding: 20px 24px; display: flex; flex-direction: column; gap: 14px; }
.event-card {
  display: flex; gap: 16px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 18px;
  transition: all var(--tr);
}
.event-card:hover { border-color: rgba(232,160,32,0.2); }
.event-date-box {
  width: 52px; height: 52px; border-radius: var(--r-sm);
  background: var(--gold-dim); border: 1px solid rgba(232,160,32,0.2);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.event-day { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--gold); line-height: 1; }
.event-month { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-soft); }
.event-body { flex: 1; min-width: 0; }
.event-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.event-desc { font-size: 0.83rem; color: var(--text-mid); line-height: 1.5; margin-bottom: 10px; }
.event-meta { display: flex; gap: 10px; flex-wrap: wrap; font-size: 0.75rem; color: var(--text-soft); margin-bottom: 10px; }
.event-meta span { display: flex; align-items: center; gap: 3px; }
.event-meta svg { width: 12px; height: 12px; }
.event-actions { display: flex; gap: 8px; }
.cat-chip { font-size: 0.68rem; font-weight: 700; background: var(--surface2); border: 1px solid var(--border); color: var(--text-soft); padding: 2px 8px; border-radius: 5px; text-transform: capitalize; }

/* ═══════ CALENDAR ═══════ */
.cal-wrapper { padding: 20px 24px; }
.cal-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.cal-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; }
.cal-btn { background: var(--surface2); border: 1px solid var(--border); color: var(--text-mid); width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all var(--tr); }
.cal-btn:hover { border-color: var(--gold); color: var(--gold); }
.cal-btn svg { width: 16px; height: 16px; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 20px; }
.cal-day-hd { text-align: center; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-soft); padding: 6px 0; }
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: 8px; font-size: 0.82rem; cursor: default;
  transition: background var(--tr); position: relative;
}
.cal-day.other { color: var(--text-soft); opacity: 0.3; }
.cal-day.today { background: var(--gold-dim); color: var(--gold); font-weight: 700; border: 1px solid rgba(232,160,32,0.3); }
.cal-day.has-ev::after { content: ''; position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.cal-saved-events { margin-top: 4px; }
.cal-ev-title { font-size: 0.8rem; font-weight: 700; color: var(--text-soft); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px; }
.cal-ev-item { display: flex; align-items: center; gap: 12px; padding: 12px 14px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-sm); margin-bottom: 8px; }
.cal-ev-badge { width: 40px; height: 40px; border-radius: var(--r-xs); background: var(--gold-dim); border: 1px solid rgba(232,160,32,0.2); display: flex; flex-direction: column; align-items: center; justify-content: center; flex-shrink: 0; }
.cal-ev-badge .day { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--gold); line-height: 1; }
.cal-ev-badge .mon { font-size: 0.6rem; text-transform: uppercase; color: var(--text-soft); }
.cal-ev-info { flex: 1; }
.cal-ev-name { font-size: 0.88rem; font-weight: 700; margin-bottom: 2px; }
.cal-ev-soon { font-size: 0.75rem; color: var(--gold); font-weight: 600; }
.cal-ev-date { font-size: 0.75rem; color: var(--text-soft); }

/* ═══════ SETTINGS ═══════ */
.settings-wrap { padding: 20px 24px; max-width: 680px; }
.settings-section { margin-bottom: 28px; }
.settings-section-title { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-soft); margin-bottom: 10px; }
.settings-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-sm); margin-bottom: 6px;
  transition: border-color var(--tr);
}
.settings-row:hover { border-color: var(--border2); }
.settings-row-icon { width: 18px; height: 18px; flex-shrink: 0; color: var(--text-soft); }
.settings-row-txt { flex: 1; }
.settings-row-label { font-size: 0.88rem; font-weight: 600; margin-bottom: 1px; }
.settings-row-hint { font-size: 0.77rem; color: var(--text-soft); }
.settings-row-action { flex-shrink: 0; }
.toggle-sw { position: relative; width: 42px; height: 22px; display: inline-block; }
.toggle-sw input { display: none; }
.toggle-sl { position: absolute; inset: 0; background: var(--surface3); border-radius: 99px; transition: all var(--tr); cursor: pointer; }
.toggle-sl::after { content: ''; position: absolute; left: 2px; top: 2px; width: 18px; height: 18px; border-radius: 50%; background: var(--text-soft); transition: all var(--tr); }
.toggle-sw input:checked + .toggle-sl { background: var(--gold); }
.toggle-sw input:checked + .toggle-sl::after { transform: translateX(20px); background: #0a0a10; }

/* ═══════ PAYMENTS ═══════ */
.payments-wrap { padding: 20px 24px; }
.pay-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px; }
.pay-stat { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 18px; text-align: center; }
.pay-stat-val { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--gold); }
.pay-stat-lbl { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-soft); margin-top: 4px; }
.pay-table { width: 100%; border-collapse: collapse; }
.pay-table th { text-align: left; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-soft); padding: 10px 14px; border-bottom: 1px solid var(--border); }
.pay-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); font-size: 0.87rem; }
.status-badge { display: inline-flex; padding: 2px 8px; border-radius: 5px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; }
.status-badge.paid { background: rgba(32,212,160,0.1); color: var(--green); }
.status-badge.pending { background: rgba(232,160,32,0.1); color: var(--gold); }
.status-badge.failed { background: rgba(255,90,90,0.1); color: var(--red); }

/* ═══════ REPORT CENTRE ═══════ */
.reports-wrap { padding: 20px 24px; max-width: 680px; }
.report-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 16px; margin-bottom: 10px; }
.report-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.report-reason-tag { background: rgba(255,90,90,0.1); color: var(--red); font-size: 0.72rem; font-weight: 700; padding: 2px 8px; border-radius: 5px; }
.report-time { font-size: 0.75rem; color: var(--text-soft); }
.report-desc { font-size: 0.87rem; color: var(--text-mid); margin-top: 4px; }
.report-status { font-size: 0.75rem; color: var(--text-soft); margin-top: 8px; }

/* ═══════ BLOCK CENTRE ═══════ */
.blocked-wrap { padding: 20px 24px; max-width: 640px; }
.blocked-item { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-sm); margin-bottom: 8px; }
.blocked-av { width: 40px; height: 40px; border-radius: 50%; background: var(--surface3); display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; }
.blocked-info { flex: 1; }
.blocked-name { font-size: 0.88rem; font-weight: 700; }
.blocked-handle { font-size: 0.77rem; color: var(--text-soft); }
.unblock-btn { background: rgba(255,90,90,0.1); border: 1px solid rgba(255,90,90,0.2); color: var(--red); padding: 6px 14px; border-radius: var(--r-xs); font-size: 0.78rem; font-weight: 600; transition: all var(--tr); }
.unblock-btn:hover { background: rgba(255,90,90,0.2); }

/* ═══════ TRENDING / SUGGESTED (right panel) ═══════ */
.trending-tag {
  display: flex; align-items: center;
  padding: 8px 0; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: opacity var(--tr);
}
.trending-tag:last-child { border-bottom: none; }
.trending-tag:hover { opacity: 0.8; }
.tag-left { flex: 1; }
.tag-name { font-size: 0.88rem; font-weight: 700; color: var(--gold); }
.tag-count { font-size: 0.72rem; color: var(--text-soft); margin-top: 1px; }
.tag-score { font-size: 0.72rem; font-weight: 700; padding: 2px 6px; border-radius: 4px; background: var(--surface2); color: var(--text-mid); }
.tag-score.low { color: var(--red); background: rgba(255,90,90,0.1); }
.tag-score.high { color: var(--green); background: rgba(32,212,160,0.1); }

.sug-user { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); cursor: pointer; transition: opacity var(--tr); }
.sug-user:last-child { border-bottom: none; }
.sug-user:hover { opacity: 0.8; }
.sug-av { width: 36px; height: 36px; border-radius: 50%; background: var(--surface3); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.8rem; flex-shrink: 0; overflow: hidden; background-size: cover; }
.sug-info { flex: 1; min-width: 0; }
.sug-name { font-size: 0.84rem; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sug-handle { font-size: 0.73rem; color: var(--text-soft); }
.follow-btn {
  background: var(--gold-dim); border: 1px solid rgba(232,160,32,0.2);
  color: var(--gold); font-size: 0.75rem; font-weight: 700;
  padding: 5px 12px; border-radius: 99px;
  transition: all var(--tr); flex-shrink: 0;
}
.follow-btn:hover { background: var(--gold); color: #0a0a10; }
.follow-btn.following { background: transparent; border-color: var(--border2); color: var(--text-mid); }

/* ═══════ GO LIVE / MONETIZE ═══════ */
.lock-page { max-width: 480px; margin: 60px auto; padding: 0 24px; text-align: center; }
.lock-icon { font-size: 4rem; margin-bottom: 16px; line-height: 1; }
.lock-title { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; margin-bottom: 12px; }
.lock-desc { color: var(--text-mid); line-height: 1.7; margin-bottom: 28px; }
.req-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; text-align: left; }
.req-item { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: var(--surface); border-radius: var(--r-sm); }
.req-item.met { border: 1px solid rgba(32,212,160,0.2); }
.req-item.unmet { border: 1px solid var(--border); }
.req-check { font-size: 1.1rem; }
.req-txt { flex: 1; }
.req-label { font-size: 0.88rem; font-weight: 700; }
.req-current { font-size: 0.77rem; color: var(--text-soft); }
.monetize-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; padding: 20px 24px; }
.monetize-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 20px; transition: border-color var(--tr); }
.monetize-card:hover { border-color: rgba(232,160,32,0.2); }
.mon-icon { width: 44px; height: 44px; border-radius: var(--r-sm); background: var(--gold-dim); border: 1px solid rgba(232,160,32,0.2); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.mon-icon svg { width: 22px; height: 22px; color: var(--gold); }
.mon-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 6px; }
.mon-desc { font-size: 0.83rem; color: var(--text-mid); line-height: 1.5; margin-bottom: 10px; }
.mon-fee { font-size: 0.78rem; color: var(--gold); font-weight: 600; }

/* ═══════ FAB ═══════ */
.fab {
  position: fixed; bottom: 30px; right: 28px;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold); color: #0a0a10;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--gold-glow), var(--sh);
  z-index: 200; border: none;
  transition: all var(--tr);
}
.fab:hover { transform: scale(1.08) rotate(90deg); background: var(--gold-lt); }
.fab svg { width: 24px; height: 24px; }

/* ═══════ MOBILE BOTTOM NAV ═══════ */
.mob-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  height: 60px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(10px);
  z-index: 300;
  align-items: center; justify-content: space-around;
}
.mob-nav-btn {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  background: none; border: none; color: var(--text-soft);
  font-size: 0.62rem; font-weight: 600;
  padding: 6px 14px;
  transition: color var(--tr);
  flex: 1;
}
.mob-nav-btn svg { width: 22px; height: 22px; }
.mob-nav-btn.active { color: var(--gold); }
.mob-post-btn {
  background: var(--gold); color: #0a0a10 !important;
  width: 46px; height: 46px; border-radius: 50%;
  padding: 0; flex: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--gold-glow);
}
.mob-post-btn svg { width: 22px; height: 22px; }

/* ═══════ TOASTS ═══════ */
#toasts {
  position: fixed; bottom: 80px; right: 20px;
  display: flex; flex-direction: column; gap: 8px;
  z-index: 9999; pointer-events: none;
}
.toast {
  background: var(--surface2);
  border: 1px solid var(--border2);
  color: var(--text);
  padding: 12px 18px;
  border-radius: var(--r-sm);
  font-size: 0.87rem;
  box-shadow: var(--sh);
  animation: toastIn 0.25s ease;
  max-width: 300px;
  pointer-events: all;
}
.toast.success { border-color: rgba(32,212,160,0.3); background: rgba(32,212,160,0.08); color: var(--green); }
.toast.error   { border-color: rgba(255,90,90,0.3);  background: rgba(255,90,90,0.08);  color: var(--red); }
.toast.warning { border-color: rgba(232,160,32,0.3); background: var(--gold-dim); color: var(--gold); }
@keyframes toastIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes toastOut { to { opacity: 0; transform: translateX(20px); } }

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 1100px) {
  .right-panel { display: none; }
  .land-main { grid-template-columns: 1fr 420px; padding: 20px 32px 40px; }
}

@media (max-width: 860px) {
  .land-main { grid-template-columns: 1fr; padding: 16px 24px 40px; }
  .land-left { order: 2; }
  .land-right { order: 1; }
  .land-headline { font-size: 2.5rem; }
  .land-stats { width: 100%; }
  .fields-grid { grid-template-columns: 1fr; }
  .mobile-bar { display: flex; }
  .sidebar {
    position: fixed; left: -100%; top: 0; height: 100%;
    z-index: 500; transition: left 0.25s ease;
    box-shadow: var(--sh);
  }
  .sidebar.open { left: 0; }
  .sidebar-backdrop.show {
    display: block; position: fixed; inset: 0;
    background: rgba(0,0,0,0.6); z-index: 499;
  }
  .sidebar-logo { display: none; }
  .mob-nav { display: flex; }
  .fab { bottom: 76px; right: 16px; }
  .main-area { height: calc(100vh - 60px - 60px); }
  .app-body { height: calc(100vh - 60px); }
  .post-card { padding: 16px; }
  .page-hd { padding: 14px 16px; }
  .profile-dash { grid-template-columns: repeat(2, 1fr); }
  .pay-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .land-header { padding: 16px 20px; }
  .land-main { padding: 10px 16px 30px; }
  .auth-card { border-radius: 16px; }
  .auth-form { padding: 18px; }
  .land-headline { font-size: 2rem; }
  .stat-block { padding: 0 16px; }
  .stat-val { font-size: 1.7rem; }
  .profile-dash { grid-template-columns: repeat(2, 1fr); }
  .modal { border-radius: 16px; }
  .pay-stats { grid-template-columns: 1fr; }
}
