/* ============================================================================
   FIU SigEp — Balanced Man Program Tracker
   Dark collegiate theme · sharp edges · gold hairlines · moving crest backdrop
   ========================================================================== */
:root {
  --navy-0:  #060c18;      /* page base */
  --navy-1:  #0b1526;      /* panel */
  --navy-2:  #0f1d38;      /* raised panel */
  --navy-3:  #16233f;      /* insets / bubbles */
  --ink:     #e9eff8;      /* primary text */
  --muted:   #92a3bd;      /* secondary text */
  --faint:   #6c7d99;      /* tertiary */
  --line:    rgba(255,255,255,.09);
  --line-2:  rgba(255,255,255,.14);
  --gold:    #c9a24a;      /* accent */
  --gold-hi: #e5c877;
  --gold-soft: rgba(201,162,74,.13);
  --gold-line: rgba(201,162,74,.42);
  --azure:   #4f8bff;
  --green:   #3ecf8e;
  --green-bg: rgba(62,207,142,.13);
  --amber:   #e6b64c;
  --amber-bg: rgba(230,182,76,.13);
  --rose:    #ff6b6b;
  --rose-bg: rgba(255,107,107,.13);
  --red: var(--gold);
  --card: var(--navy-1);
  --radius: 3px;
  --radius-sm: 2px;
  --shadow: 0 1px 0 rgba(255,255,255,.03) inset, 0 14px 34px rgba(0,0,0,.45);
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1300px 760px at 50% -12%, #16294c 0%, #0a1428 46%, #05090f 100%) fixed,
    var(--navy-0);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* ---------- Infinite scrolling crest backdrop (two parallax layers) -------- */
body::before, body::after {
  content: ""; position: fixed; inset: -25%; z-index: -2; pointer-events: none;
  background-image: url("/crest.svg");
  background-repeat: repeat;
  will-change: transform;
}
body::before {
  background-size: 172px 172px;
  opacity: .12;
  animation: crestDrift 46s linear infinite;
}
body::after {
  background-size: 320px 320px;
  opacity: .05;
  z-index: -3;
  animation: crestDriftSlow 120s linear infinite;
}
@keyframes crestDrift {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-172px, -172px, 0); }
}
@keyframes crestDriftSlow {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(320px, -320px, 0); }
}
@media (prefers-reduced-motion: reduce) {
  body::before, body::after { animation: none; }
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-hi); }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

/* ============================ Auth screen ================================= */
.auth-wrap {
  min-height: 100vh; display: grid; place-items: center; padding: 28px;
  background: radial-gradient(900px 520px at 50% 0%, rgba(22,41,76,.55) 0%, rgba(6,12,24,.35) 60%, transparent 100%);
}
.auth-card {
  width: 100%; max-width: 430px; background: linear-gradient(180deg, rgba(16,29,56,.96), rgba(9,17,34,.97));
  border: 1px solid var(--line-2); border-top: 2px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: 0 40px 90px rgba(0,0,0,.6); padding: 40px 34px; animation: pop .28s ease;
  backdrop-filter: blur(4px);
}
@keyframes pop { from { transform: translateY(10px); opacity: 0; } to { transform: none; opacity: 1; } }
.brand { text-align: center; margin-bottom: 26px; }
.brand .crest, .crest-hero {
  width: 84px; height: 84px; margin: 0 auto 14px; display: block;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.5));
}
.brand h1 {
  font-family: var(--serif); font-size: 25px; margin: 0; letter-spacing: .3px; color: #fff; font-weight: 700;
}
.brand p { color: var(--gold); font-size: 11.5px; margin: 7px 0 0; text-transform: uppercase; letter-spacing: 2.4px; font-weight: 600; }
.field { margin-bottom: 15px; }
.field label { display: block; font-size: 11px; font-weight: 700; color: var(--muted); margin-bottom: 7px; text-transform: uppercase; letter-spacing: 1px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 13px; border: 1px solid var(--line-2); border-radius: var(--radius);
  font-size: 14.5px; background: var(--navy-0); color: var(--ink); transition: border .15s, box-shadow .15s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft);
}
.field select option { background: var(--navy-1); color: var(--ink); }

/* ============================== Buttons ================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px; border: 1px solid transparent; border-radius: var(--radius);
  font-weight: 700; font-size: 13.5px; letter-spacing: .3px; text-transform: uppercase;
  background: linear-gradient(180deg, var(--gold-hi), var(--gold)); color: #10151f;
  transition: filter .15s, transform .05s, box-shadow .15s;
  box-shadow: 0 6px 16px rgba(201,162,74,.22);
}
.btn:hover { filter: brightness(1.06); }
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: .5; cursor: not-allowed; box-shadow: none; }
.btn.full { width: 100%; }
.btn.ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-2); box-shadow: none; }
.btn.ghost:hover { background: rgba(255,255,255,.05); border-color: var(--gold-line); filter: none; }
.btn.green { background: linear-gradient(180deg, #5adca0, var(--green)); color: #04160d; box-shadow: 0 6px 16px rgba(62,207,142,.2); }
.btn.rose  { background: linear-gradient(180deg, #ff8b8b, var(--rose)); color: #2a0808; box-shadow: 0 6px 16px rgba(255,107,107,.2); }
.btn.sm { padding: 8px 13px; font-size: 12px; }
.btn.tiny { padding: 5px 11px; font-size: 11px; }
.switch-auth { text-align: center; margin-top: 20px; font-size: 13px; color: var(--muted); }
.switch-auth a { font-weight: 700; cursor: pointer; }
.error-banner { background: var(--rose-bg); color: #ffb3b3; border: 1px solid rgba(255,107,107,.35); border-radius: var(--radius); padding: 10px 12px; font-size: 13px; margin-bottom: 15px; }
.seed-hint { margin-top: 20px; font-size: 11.5px; color: var(--muted); background: rgba(255,255,255,.03); border: 1px dashed var(--line-2); border-radius: var(--radius); padding: 11px 13px; line-height: 1.6; }
.seed-hint code { background: rgba(255,255,255,.08); padding: 1px 5px; border-radius: 3px; font-size: 11px; color: var(--gold-hi); }

/* ============================ App shell ================================== */
.shell { min-height: 100vh; }
.topbar {
  position: sticky; top: 0; z-index: 20;
  background: linear-gradient(180deg, rgba(9,17,34,.92), rgba(9,17,34,.78));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gold-line);
  color: #fff; display: flex; align-items: center; gap: 14px;
  padding: 0 24px; height: 66px; box-shadow: 0 6px 24px rgba(0,0,0,.35);
}
.topbar .logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--serif); font-weight: 700; font-size: 18px; letter-spacing: .4px; color: #fff;
}
.topbar .logo .dot, .crest-mark {
  width: 34px; height: 34px; display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.5));
}
.topbar .spacer { flex: 1; }
.topbar .who { font-size: 13px; text-align: right; line-height: 1.3; }
.topbar .who b { font-weight: 600; }
.topbar .who span { display: block; color: var(--gold); font-size: 10.5px; text-transform: uppercase; letter-spacing: 1px; margin-top: 1px; }
.topbar .out { background: rgba(255,255,255,.06); color: #fff; border: 1px solid var(--line-2); padding: 8px 14px; border-radius: var(--radius); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; transition: background .15s, border-color .15s; }
.topbar .out:hover { background: rgba(201,162,74,.16); border-color: var(--gold-line); }

.container { max-width: 1080px; margin: 0 auto; padding: 30px 24px 70px; position: relative; z-index: 1; }

/* ============================== Tabs ==================================== */
.tabs { display: flex; gap: 4px; margin-bottom: 26px; flex-wrap: wrap; border-bottom: 1px solid var(--line); }
.tab {
  padding: 11px 16px; border: none; background: none; border-bottom: 2px solid transparent;
  font-size: 13px; font-weight: 600; letter-spacing: .3px; color: var(--muted);
  margin-bottom: -1px; transition: color .15s, border-color .15s;
}
.tab:hover { color: var(--ink); }
.tab.active { color: var(--gold-hi); border-bottom-color: var(--gold); }
.tab .badge { background: var(--gold); color: #10151f; border-radius: 2px; padding: 1px 6px; font-size: 10.5px; font-weight: 700; margin-left: 6px; }
.tab.active .badge { background: var(--gold-hi); }

/* ============================== Cards =================================== */
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 18px; }
.hero {
  background: linear-gradient(135deg, #12233f 0%, #0a1730 60%, #070f20 100%); color: #fff;
  border: 1px solid var(--line-2); border-left: 3px solid var(--gold);
  border-radius: var(--radius); padding: 26px 28px; margin-bottom: 24px; position: relative; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; right: -30px; bottom: -40px; width: 210px; height: 210px;
  background: url("/crest.svg") center/contain no-repeat; opacity: .10;
}
.hero h2 { margin: 0 0 5px; font-family: var(--serif); font-size: 25px; letter-spacing: .2px; }
.hero p { margin: 0; color: #c4d0e2; font-size: 13.5px; max-width: 620px; line-height: 1.55; }
.hero .meta { display: flex; gap: 26px; margin-top: 20px; flex-wrap: wrap; position: relative; }
.hero .meta .stat b { font-size: 22px; display: block; font-family: var(--serif); color: var(--gold-hi); }
.hero .meta .stat span { font-size: 10.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.hero .complete-pill { display: inline-flex; align-items: center; gap: 6px; background: var(--green); color: #04160d; padding: 5px 12px; border-radius: 2px; font-size: 12px; font-weight: 700; margin-top: 16px; text-transform: uppercase; letter-spacing: .5px; }

.summary-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin-bottom: 24px; }
.summary-card { padding: 18px 20px; }
.summary-card .label { font-size: 10.5px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.summary-card .value { font-size: 28px; font-weight: 800; letter-spacing: -.5px; margin: 6px 0 10px; color: #fff; font-family: var(--serif); }
.summary-card .value small { font-size: 15px; color: var(--muted); font-weight: 600; }
.bar { height: 6px; border-radius: 99px; background: rgba(255,255,255,.08); overflow: hidden; }
.bar > i { display: block; height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--azure), var(--gold)); transition: width .4s ease; }
.bar.green > i { background: var(--green); }

/* ======================= Requirement groups ============================ */
.group { margin-bottom: 20px; }
.group-head { display: flex; align-items: center; gap: 10px; margin: 0 2px 12px; }
.group-head h3 { font-family: var(--serif); font-size: 16px; margin: 0; letter-spacing: .2px; color: #fff; }
.group-head .count { font-size: 12px; color: var(--muted); font-weight: 600; }
.group-head .min-tag { font-size: 10.5px; background: var(--amber-bg); color: var(--amber); padding: 2px 8px; border-radius: 2px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.group-head .min-tag.ok { background: var(--green-bg); color: var(--green); }

.req {
  display: flex; align-items: flex-start; gap: 13px; padding: 15px 16px;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--navy-1); margin-bottom: 8px;
  transition: border-color .15s, background .15s;
}
.req:hover { border-color: var(--gold-line); background: var(--navy-2); }
.req .status-dot { width: 10px; height: 10px; border-radius: 50%; margin-top: 6px; flex-shrink: 0; background: #3a4a66; }
.req .status-dot.approved { background: var(--green); box-shadow: 0 0 8px rgba(62,207,142,.5); }
.req .status-dot.pending { background: var(--gold); box-shadow: 0 0 8px rgba(201,162,74,.5); }
.req .status-dot.denied { background: var(--rose); }
.req .body { flex: 1; min-width: 0; }
.req .title { font-size: 14px; font-weight: 600; line-height: 1.4; color: var(--ink); }
.req .desc { font-size: 12.5px; color: var(--muted); margin-top: 3px; line-height: 1.45; }
.req .mand { display: inline-block; font-size: 10px; font-weight: 700; color: var(--rose); background: var(--rose-bg); padding: 1px 7px; border-radius: 2px; margin-left: 6px; vertical-align: middle; text-transform: uppercase; letter-spacing: .5px; }
.req .sub-meta { font-size: 12px; margin-top: 8px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.req .right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.pill { font-size: 10.5px; font-weight: 700; padding: 3px 9px; border-radius: 2px; white-space: nowrap; text-transform: uppercase; letter-spacing: .5px; }
.pill.approved { background: var(--green-bg); color: var(--green); }
.pill.pending { background: var(--amber-bg); color: var(--amber); }
.pill.denied { background: var(--rose-bg); color: var(--rose); }
.pill.todo { background: rgba(255,255,255,.06); color: var(--muted); }
.note { font-size: 12px; background: rgba(255,255,255,.03); border-left: 3px solid var(--line-2); padding: 8px 11px; border-radius: 0 var(--radius) var(--radius) 0; margin-top: 8px; color: var(--muted); }
.note.denied { background: var(--rose-bg); border-color: var(--rose); color: #ffb3b3; }
.proof-link { font-size: 12px; font-weight: 600; }

/* ==================== Member roster (staff) ============================ */
.roster { display: grid; gap: 10px; }
.roster-row {
  display: grid; grid-template-columns: 1fr auto auto; gap: 14px; align-items: center;
  padding: 15px 16px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--navy-1); cursor: pointer;
  transition: border-color .15s, background .15s;
}
.roster-row:hover { border-color: var(--gold-line); background: var(--navy-2); }
.roster-row .name { font-weight: 600; font-size: 14.5px; color: var(--ink); }
.roster-row .email { font-size: 12px; color: var(--muted); }
.roster-row .mini { width: 180px; }
.roster-row .mini .labels { display: flex; justify-content: space-between; font-size: 11px; color: var(--muted); margin-bottom: 4px; }
.tier-chip { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; padding: 3px 9px; border-radius: 2px; background: var(--gold-soft); color: var(--gold-hi); border: 1px solid var(--gold-line); }

/* ============================= Queue =================================== */
.queue-card { padding: 18px; margin-bottom: 12px; }
.queue-card .qhead { display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; }
.queue-card .who-line { font-size: 13px; color: var(--muted); }
.queue-card .who-line b { color: var(--ink); }
.queue-card .reflection { font-size: 13.5px; line-height: 1.5; background: var(--navy-3); border: 1px solid var(--line); padding: 12px 14px; border-radius: var(--radius); margin: 12px 0; color: var(--ink); }
.queue-card .actions { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.review-note-input { flex: 1; min-width: 180px; padding: 9px 12px; border: 1px solid var(--line-2); border-radius: var(--radius); font-size: 13px; background: var(--navy-0); color: var(--ink); }
.review-note-input:focus { outline: none; border-color: var(--gold); }

/* ============================= Modal =================================== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(3,7,15,.72); z-index: 60;
  display: grid; place-items: center; padding: 20px; animation: fade .15s ease; backdrop-filter: blur(3px);
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: linear-gradient(180deg, var(--navy-2), var(--navy-1)); border: 1px solid var(--line-2); border-top: 2px solid var(--gold);
  border-radius: var(--radius); width: 100%; max-width: 540px; max-height: 90vh; overflow: auto;
  box-shadow: 0 40px 90px rgba(0,0,0,.6); animation: pop .2s ease;
}
.modal-head { padding: 22px 24px 0; }
.modal-head h3 { margin: 0; font-family: var(--serif); font-size: 19px; letter-spacing: .2px; color: #fff; }
.modal-head p { margin: 6px 0 0; color: var(--muted); font-size: 13px; line-height: 1.45; }
.modal-body { padding: 18px 24px 24px; }
.modal-foot { display: flex; gap: 10px; justify-content: flex-end; padding: 0 24px 24px; }
.filedrop {
  border: 1.5px dashed var(--line-2); border-radius: var(--radius); padding: 16px; text-align: center;
  font-size: 13px; color: var(--muted); cursor: pointer; transition: border .15s, background .15s;
}
.filedrop:hover { border-color: var(--gold); background: var(--gold-soft); }
.filedrop.has { border-color: var(--green); color: var(--green); background: var(--green-bg); }
.char-count { font-size: 11.5px; color: var(--faint); text-align: right; margin-top: 4px; }

/* ============================== Misc =================================== */
.section-title { font-family: var(--serif); font-size: 22px; font-weight: 700; letter-spacing: .2px; margin: 0 0 5px; color: #fff; }
.section-sub { color: var(--muted); font-size: 13.5px; margin: 0 0 20px; }
.empty { text-align: center; padding: 54px 20px; color: var(--muted); }
.empty .big { font-size: 42px; margin-bottom: 12px; opacity: .8; }
.skeleton { padding: 60px; text-align: center; color: var(--faint); }
.back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700; color: var(--gold); background: none; border: none; padding: 0; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .5px; }
.filter-row { display: flex; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; align-items: center; }
.filter-row select { padding: 9px 12px; border: 1px solid var(--line-2); border-radius: var(--radius); font-size: 13px; background: var(--navy-0); color: var(--ink); }

/* ============================= Toast =================================== */
#toast-root { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 90; display: flex; flex-direction: column; gap: 8px; align-items: center; }
.toast { background: var(--navy-3); color: #fff; padding: 12px 20px; border-radius: var(--radius); border: 1px solid var(--line-2); font-size: 13.5px; font-weight: 500; box-shadow: 0 12px 34px rgba(0,0,0,.5); animation: pop .2s ease; }
.toast.ok { border-color: var(--green); }
.toast.err { border-color: var(--rose); }

@media (max-width: 620px) {
  .roster-row { grid-template-columns: 1fr; }
  .roster-row .mini { width: 100%; }
  .topbar .who { display: none; }
  .topbar .logo { font-size: 16px; }
  .hero .meta { gap: 18px; }
  .container { padding: 22px 16px 60px; }
}

/* ====================== Points & leaderboard =========================== */
.pts { display: inline-block; margin-left: 8px; font-size: 10.5px; font-weight: 700; color: var(--gold-hi); background: var(--gold-soft); border: 1px solid var(--gold-line); padding: 2px 8px; border-radius: 2px; vertical-align: middle; letter-spacing: .3px; }
.lb { display: flex; flex-direction: column; gap: 8px; }
.lb-row { display: flex; align-items: center; gap: 14px; background: var(--navy-1); border: 1px solid var(--line); border-radius: var(--radius); padding: 13px 16px; transition: border-color .15s; }
.lb-row:hover { border-color: var(--line-2); }
.lb-row.me { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold-line); background: var(--navy-2); }
.lb-rank { font-family: var(--serif); font-size: 22px; font-weight: 800; min-width: 46px; text-align: center; color: var(--gold); }
.lb-row:nth-child(1) .lb-rank { color: var(--gold-hi); }
.lb-name { flex: 1; font-size: 15px; color: var(--ink); }
.lb-sub { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; margin-top: 2px; }
.lb-pts { font-family: var(--serif); font-size: 23px; font-weight: 800; color: #fff; white-space: nowrap; }
.lb-pts span { font-size: 10.5px; font-weight: 600; color: var(--muted); margin-left: 3px; text-transform: uppercase; letter-spacing: .5px; }

/* ====================== Community (chat + feed) ======================== */
.chat { display: flex; flex-direction: column; height: min(60vh, 560px); background: var(--navy-1); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.chat-list { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.msg { max-width: 80%; }
.msg.mine { align-self: flex-end; text-align: right; }
.msg-meta { font-size: 11px; color: var(--muted); margin-bottom: 3px; }
.msg-time { color: var(--faint); font-size: 10.5px; }
.msg-body { display: inline-block; background: var(--navy-3); border: 1px solid var(--line); padding: 9px 13px; border-radius: var(--radius); font-size: 14px; text-align: left; white-space: pre-wrap; word-break: break-word; line-height: 1.45; color: var(--ink); }
.msg.mine .msg-body { background: linear-gradient(180deg, var(--gold-hi), var(--gold)); border-color: transparent; color: #10151f; font-weight: 500; }
.msg-del { cursor: pointer; color: var(--faint); margin-left: 6px; text-decoration: none; font-weight: 700; }
.msg-del:hover { color: var(--rose); }
.chat-input { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--line); background: rgba(0,0,0,.2); }
.chat-input input { flex: 1; padding: 11px 13px; border: 1px solid var(--line-2); border-radius: var(--radius); font-size: 14px; background: var(--navy-0); color: var(--ink); }
.chat-input input:focus { outline: none; border-color: var(--gold); }
.post.card { margin-bottom: 14px; }
.post-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; font-size: 13.5px; color: var(--ink); }
.post-context { font-size: 11.5px; color: var(--gold-hi); background: var(--gold-soft); border: 1px solid var(--gold-line); display: inline-block; padding: 3px 10px; border-radius: 2px; margin: 10px 0 2px; font-weight: 600; }
.post-body { font-size: 14.5px; margin: 10px 0 13px; white-space: pre-wrap; word-break: break-word; line-height: 1.55; color: var(--ink); }
.reacts { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 4px; }
.react { border: 1px solid var(--line-2); background: rgba(255,255,255,.03); color: var(--ink); border-radius: var(--radius); padding: 4px 11px; font-size: 13px; cursor: pointer; transition: border .12s, background .12s; }
.react:hover { border-color: var(--gold-line); }
.react.on { background: var(--gold-soft); border-color: var(--gold); color: var(--gold-hi); font-weight: 700; }
.comments { display: flex; flex-direction: column; gap: 10px; border-top: 1px solid var(--line); margin-top: 13px; padding-top: 12px; }
.comment { font-size: 13.5px; color: var(--ink); }
.comment b { color: #fff; }
.comment > div:last-child { margin-top: 1px; white-space: pre-wrap; word-break: break-word; color: var(--muted); }
.add-comment { display: flex; gap: 8px; margin-top: 12px; }
.add-comment input { flex: 1; padding: 9px 12px; border: 1px solid var(--line-2); border-radius: var(--radius); font-size: 13.5px; background: var(--navy-0); color: var(--ink); }
.add-comment input:focus { outline: none; border-color: var(--gold); }
