:root{
  --bg:#0b1020;
  --bg2:#121a33;
  --stroke:#ffffff1a;
  --text:#eaf0ff;
  --muted:#c8d3ffb3;
  --muted2:#c8d3ff80;
  --card:#0c1329cc;
  --card2:#0f1730cc;
  --good:#22c55e;
  --info:#06b6d4;
  --accent:#a855f7;
  --shadow: 0 18px 40px rgba(0,0,0,.45);
  --radius: 18px;
  --radius2: 24px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:system-ui,Segoe UI,Roboto,Arial;
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 10% 10%, #7c3aed55, transparent 55%),
    radial-gradient(1200px 700px at 90% 30%, #22c55e44, transparent 55%),
    radial-gradient(1200px 700px at 40% 90%, #06b6d466, transparent 55%),
    linear-gradient(180deg,var(--bg),var(--bg2));
  min-height:100vh;
}

.wrap{max-width:1280px;margin:0 auto;padding:20px 16px 60px}

.topbar{
  position:sticky;top:0;z-index:30;
  display:flex;gap:14px;align-items:center;justify-content:space-between;
  padding:14px 16px;background:#0a0f1fe6;backdrop-filter:blur(10px);
  border-bottom:1px solid var(--stroke)
}
.brand{display:flex;gap:12px;align-items:center}
.logo{
  width:44px;height:44px;border-radius:14px;display:grid;place-items:center;
  background:linear-gradient(135deg,#22c55e,#06b6d4,#a855f7);
  box-shadow:var(--shadow)
}
.title{font-weight:900}
.subtitle{font-size:12px;color:var(--muted)}

/* Nav (professional + responsive) */
.navLinks{display:flex;gap:8px;align-items:center;flex-wrap:wrap;justify-content:center}
.navA{
  text-decoration:none;
  color:var(--muted);
  font-weight:900;
  font-size:13px;
  padding:9px 11px;
  border-radius:999px;
  border:1px solid transparent;
  transition:filter .12s ease, background .12s ease, border-color .12s ease;
}
.navA:hover{filter:brightness(1.1);background:#0c1329aa;border-color:var(--stroke)}
.navA[aria-current="page"]{color:var(--text);background:#0c1329cc;border-color:var(--stroke)}

@media(max-width:980px){
  .topbar{gap:10px;align-items:flex-start}
  .navLinks{order:3;width:100%;justify-content:flex-start}
}

.controls{display:flex;gap:10px;align-items:center;flex-wrap:wrap;justify-content:flex-end}
.input,.select{
  padding:11px 12px;border-radius:14px;border:1px solid var(--stroke);
  background:var(--card);color:var(--text)
}
.textarea{
  width:100%;
  padding:11px 12px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:var(--card);
  color:var(--text);
  resize:vertical;
}
.input{min-width:320px}
.btn{
  padding:11px 14px;border-radius:14px;border:1px solid var(--stroke);
  background:linear-gradient(135deg,#22c55e88,#06b6d488,#a855f788);
  color:var(--text);font-weight:900;cursor:pointer
}
.btn:hover{filter:brightness(1.08)}
.pillCount{
  margin-left:8px;
  background:#0c1329cc;
  border:1px solid var(--stroke);
  padding:3px 8px;
  border-radius:999px;
  font-weight:900;
}

.hero{
  margin-top:16px;
  padding:18px;
  border:1px solid var(--stroke);
  border-radius:var(--radius2);
  background:var(--card);
  box-shadow:var(--shadow);
  display:grid;
  gap:12px;
}
.hero h1{margin:0 0 6px;font-size:34px}
.hero p{margin:0;color:var(--muted);max-width:80ch}
.notice{
  padding:12px 14px;
  border-radius:18px;
  border:1px solid var(--stroke);
  background:linear-gradient(135deg,#06b6d422,#a855f722,#22c55e22);
  color:#eaf0ff;
  font-weight:700;
}

.panel{
  margin-top:16px;
  border:1px solid var(--stroke);
  border-radius:var(--radius2);
  background:var(--card);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.panelHead{
  padding:16px 18px;
  border-bottom:1px solid var(--stroke);
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
}
.panelHead h2{margin:0}
.muted{margin:6px 0 0;color:var(--muted)}
.rightInfo{display:flex;gap:14px;flex-wrap:wrap;justify-content:flex-end}
.miniStat{color:var(--muted);font-size:12px}
.miniStat strong{color:var(--text)}

/* Home page: search/filters directly above the brainrot grid */
.gridControls{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px}
.gridControls .input{min-width:240px;flex:1}
.gridControls .select{min-width:160px}
@media(max-width:860px){
  .gridControls .input{min-width:100%}
  .gridControls .select{flex:1;min-width:140px}
}

.grid{
  padding:12px;
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:14px;
}
@media(max-width:1200px){.grid{grid-template-columns:repeat(4,1fr)}}
@media(max-width:980px){.grid{grid-template-columns:repeat(3,1fr)} .input{min-width:240px}}
@media(max-width:700px){.grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:520px){.grid{grid-template-columns:1fr} .input{min-width:100%}}

.card{
  border:1px solid var(--stroke);
  border-radius:20px;
  background:var(--card2);
  overflow:hidden;
  transition:transform .12s ease, filter .12s ease;
  position:relative;
}
.card:hover{transform:translateY(-2px);filter:brightness(1.04)}

.hotTag{
  position:absolute;
  top:10px; left:10px;
  background:#ff3b3bcc;
  border:1px solid #ffffff33;
  border-radius:999px;
  padding:4px 8px;
  font-size:11px;
  font-weight:1000;
  display:flex;
  gap:6px;
  align-items:center;
}

.imgWrap{
  padding:18px 18px 8px;
  display:flex;
  justify-content:center;
  align-items:center;
  min-height:170px;
}
.thumb{
  width:150px;
  height:150px;
  object-fit:contain; /* keep pixel art clean */
  image-rendering: pixelated;
  filter: drop-shadow(0 18px 22px rgba(0,0,0,.45));
}

.cardBody{padding:10px 14px 14px}
.name{
  font-weight:950;
  text-align:center;
  margin:0 0 8px;
  font-size:14px;
  line-height:1.2;
  min-height:34px;
  display:flex;
  justify-content:center;
  align-items:center;
}
.badgeRow{display:flex;justify-content:center;margin-bottom:10px}
.badge{
  display:inline-flex;gap:6px;align-items:center;
  font-size:12px;padding:6px 10px;border-radius:999px;
  border:1px solid var(--stroke);
  background:#0b1228aa;
  color:var(--muted);
}

.statsRow{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-bottom:12px;
}
.kv{
  border:1px solid var(--stroke);
  border-radius:14px;
  padding:10px;
  background:#0b1228aa;
  text-align:center;
}
.k{font-size:11px;color:var(--muted)}
.v{font-size:16px;font-weight:1000;margin-top:4px}

.qtyRow{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-bottom:10px;
}
.qtyBtn{
  width:38px;height:38px;
  border-radius:12px;
  border:1px solid var(--stroke);
  background:#0c1329cc;
  color:var(--text);
  font-weight:1000;
  cursor:pointer;
}
.qtyBtn:hover{filter:brightness(1.08)}
.qtyNum{
  min-width:44px;
  display:grid;
  place-items:center;
  border-radius:12px;
  border:1px solid var(--stroke);
  background:#0b1228aa;
  font-weight:1000;
}

.actions{
  display:grid;
  gap:10px;
}
.sellNow{
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:linear-gradient(135deg,#22c55eaa,#06b6d4aa);
  color:#001018;
  font-weight:1000;
  cursor:pointer;
}
.sellNow:hover{filter:brightness(1.08)}
.addBasket{
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:var(--card);
  color:var(--text);
  font-weight:1000;
  cursor:pointer;
}
.addBasket:hover{filter:brightness(1.08)}

/* Drawer */
.drawer{
  position:fixed;
  top:0; right:0;
  width:min(420px, 92vw);
  height:100vh;
  background:#0a0f1ff5;
  backdrop-filter: blur(10px);
  border-left:1px solid var(--stroke);
  z-index:60;
  display:flex;
  flex-direction:column;
}
.drawerHead{
  padding:14px 14px;
  border-bottom:1px solid var(--stroke);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
}
.drawerTitle{font-weight:1000;font-size:18px}
.drawerSub{color:var(--muted);font-size:12px}
.iconBtn{
  width:40px;height:40px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:#0c1329cc;
  color:var(--text);
  font-weight:1000;
  cursor:pointer;
}
.drawerBody{
  padding:14px;
  overflow:auto;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.bItem{
  border:1px solid var(--stroke);
  border-radius:16px;
  background:#0c1329cc;
  padding:10px;
  display:grid;
  grid-template-columns:56px 1fr;
  gap:10px;
  align-items:center;
}
.bThumb{
  width:56px;height:56px;
  object-fit:contain;
  image-rendering: pixelated;
}
.bName{font-weight:1000;font-size:13px;margin:0}
.bMeta{color:var(--muted);font-size:12px;margin-top:4px}
.bRow{display:flex;justify-content:space-between;align-items:center;margin-top:8px}
.bPrice{font-weight:1000}
.bRemove{
  padding:8px 10px;
  border-radius:12px;
  border:1px solid var(--stroke);
  background:#111a33;
  color:var(--text);
  font-weight:900;
  cursor:pointer;
}
.drawerFoot{
  border-top:1px solid var(--stroke);
  padding:14px;
  display:grid;
  gap:10px;
}
.totalRow{display:flex;justify-content:space-between;align-items:center}
.checkoutBtn{
  padding:14px 12px;
  border-radius:16px;
  border:1px solid var(--stroke);
  background:linear-gradient(135deg,#a855f7aa,#06b6d4aa);
  color:var(--text);
  font-weight:1000;
  cursor:pointer;
}
.checkoutBtn:hover{filter:brightness(1.08)}
.drawerNote{color:var(--muted);font-size:12px}

.backdrop{
  position:fixed; inset:0;
  background:rgba(0,0,0,.55);
  z-index:55;
}

.hidden{display:none}
.is-hidden{display:none !important}

/* Live Activity (single block) */
.activity{
  padding:12px;
  display:grid;
  /* Keep the block compact: left = "now", right = scrollable list */
  grid-template-columns:420px 1fr;
  gap:14px;
  align-items:start;
  max-height:460px;
  overflow:hidden;
}
@media(max-width:980px){.activity{grid-template-columns:1fr}}

.activityNow{
  border:1px solid var(--stroke);
  border-radius:22px;
  background:linear-gradient(135deg,#22c55e18,#06b6d41a,#a855f71a);
  padding:12px;
  position:relative;
  overflow:hidden;
  min-height:76px;
  /* Prevent the left card stretching to match the list height */
  height:fit-content;
  max-height:120px;
  align-self:start;
}
.activityEmpty{display:flex;gap:12px;align-items:center}
.activityDot{width:10px;height:10px;border-radius:50%;background:var(--good);box-shadow:0 0 0 6px #22c55e1a}
.activityBig{display:flex;gap:12px;align-items:center}
.activityBigLeft{display:flex;align-items:center;justify-content:center;width:74px;height:74px;border-radius:18px;border:1px solid var(--stroke);background:rgba(10,15,31,.35)}
.activityImg{width:64px;height:64px;object-fit:contain;image-rendering:pixelated;filter:drop-shadow(0 18px 22px rgba(0,0,0,.45))}
.activityBigBody{min-width:0}
.activityTitle{font-weight:1000;font-size:18px;line-height:1.2}
.activityMeta{color:var(--muted);margin-top:4px;font-size:13px}
.pillLive{display:inline-flex;align-items:center;gap:6px;padding:6px 10px;border-radius:999px;border:1px solid #ffffff22;background:linear-gradient(135deg,#22c55e22,#06b6d420);font-size:11px;font-weight:1100;margin-right:6px}

/* basket mutation pill */
.pillTiny{display:inline-flex;align-items:center;padding:4px 8px;border-radius:999px;border:1px solid #ffffff22;background:#0c1329aa;color:var(--text);font-size:11px;font-weight:1000}

.activityHead{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:10px}
.activityList{
  display:grid;
  gap:10px;
  /* Make the feed scroll instead of growing the whole panel */
  max-height:390px;
  overflow:auto;
  padding-right:6px;
  scrollbar-width:thin;
}
.activityRow{
  display:grid;
  grid-template-columns:36px 1fr auto;
  gap:10px;
  align-items:center;
  padding:10px;
  border-radius:18px;
  border:1px solid var(--stroke);
  background:#0b1228aa;
}
.activityRowImg{width:36px;height:36px;object-fit:contain;image-rendering:pixelated}
.activityRowBody{min-width:0}
.activityRowTitle{font-weight:950;font-size:13px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.activityRowMeta{color:var(--muted2);font-size:12px;margin-top:2px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.activityRowTime{color:var(--muted2);font-size:12px}

/* Card: mutation row */
.mutRow{display:flex;gap:10px;margin-top:10px}
.select.mini{padding:10px 12px;border-radius:14px;font-size:12px}

/* Card: secondary badge */
.badgeGhost{background:#0c1329aa;color:var(--muted);border-color:#ffffff1e}

/* Small link style used in headers */
.miniLink{color:var(--muted);text-decoration:none;font-weight:950;font-size:12px}
.miniLink:hover{color:var(--text)}

/* Reviews teaser */
.reviewsTeaser{padding:16px;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
@media(max-width:980px){.reviewsTeaser{grid-template-columns:1fr}}
.reviewCard{border:1px solid var(--stroke);border-radius:20px;background:#0f1730cc;padding:14px}
.reviewTop{display:flex;justify-content:space-between;align-items:center;gap:10px}
.reviewName{font-weight:1000}
.stars{color:#ffd166;font-size:14px;letter-spacing:1px}
.reviewText{margin-top:10px;color:var(--muted);line-height:1.35}

/* Trade builder */
.tradeGrid{padding:16px;display:grid;grid-template-columns:1fr 1fr;gap:14px}
@media(max-width:980px){.tradeGrid{grid-template-columns:1fr}}
.tradeCol{border:1px solid var(--stroke);border-radius:22px;background:#0b1228aa;padding:14px}
.tradeColHead{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:10px}
.tradeItems{display:grid;gap:10px}
.tradeItem{
  display:grid;
  grid-template-columns:36px 1fr auto;
  gap:10px;
  align-items:center;
  border:1px solid var(--stroke);
  border-radius:18px;
  padding:10px;
  background:rgba(10,15,31,.45);
}
.tradeItem img{width:36px;height:36px;object-fit:contain;image-rendering:pixelated}
.tradeItemMain{min-width:0}
.tradeItemName{font-weight:1000;font-size:13px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.tradeItemMeta{display:flex;flex-wrap:wrap;gap:8px;margin-top:6px}
.chip{font-size:12px;color:var(--muted);border:1px solid var(--stroke);background:#0c1329aa;border-radius:999px;padding:6px 10px;display:inline-flex;gap:6px;align-items:center}
.tradeQty{display:flex;gap:6px;align-items:center}
.miniBtn{width:34px;height:34px;border-radius:12px;border:1px solid var(--stroke);background:#0c1329cc;color:var(--text);font-weight:1000;cursor:pointer}
.miniBtn:hover{filter:brightness(1.08)}
.dangerBtn{background:#3b0d16aa;border-color:#ffffff22}
.plusBtn{display:inline-flex;gap:8px;align-items:center;justify-content:center}
.tradeTotals{margin-top:12px;display:flex;justify-content:space-between;align-items:center;color:var(--muted)}
.tradeTotals strong{color:var(--text)}

/* Compact open listings (with images) */
.tradeListingCard{padding:12px}
.tradeListingSides{display:grid;gap:12px;grid-template-columns:1fr 1fr;margin-top:12px}
@media(max-width:980px){.tradeListingSides{grid-template-columns:1fr}}
.tradeSide{border:1px solid rgba(255,255,255,.08);background:rgba(9,14,33,.55);border-radius:18px;padding:10px}
.tradeSideHead{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:8px}
.tradeMiniGrid{display:grid;gap:8px}
.tradeMini{display:flex;gap:10px;align-items:center;padding:8px 10px;border-radius:14px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.06)}
.tradeMini img{width:34px;height:34px;object-fit:contain;image-rendering:pixelated;flex:0 0 auto}
.tradeMiniMain{min-width:0}
.tradeMiniName{font-weight:1000;font-size:13px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.tradeMiniMeta{margin-top:3px;font-size:12px;color:var(--muted)}

/* Small toast for "copied to chat" */
.sbToast{
  position:fixed;
  left:50%;
  bottom:22px;
  transform:translateX(-50%) translateY(12px);
  opacity:0;
  pointer-events:none;
  z-index:9999;
  background:rgba(15,22,50,.92);
  border:1px solid rgba(255,255,255,.14);
  color:var(--text);
  padding:10px 12px;
  border-radius:14px;
  box-shadow:0 14px 40px rgba(0,0,0,.45);
  transition:opacity .18s ease, transform .18s ease;
  max-width:min(560px, calc(100vw - 30px));
  text-align:center;
  font-weight:800;
  font-size:13px;
}
.sbToast.show{opacity:1;transform:translateX(-50%) translateY(0)}

/* Chat send helper modal (mobile friendly) */
.sbModalBack{position:fixed;inset:0;z-index:2147483647;display:grid;place-items:center;background:rgba(0,0,0,.62)}
.sbModal{width:min(720px, 94vw);max-height:86vh;overflow:hidden;border-radius:24px;border:1px solid rgba(255,255,255,.14);background:rgba(10,16,36,.94);backdrop-filter: blur(12px);box-shadow:0 18px 60px rgba(0,0,0,.55)}
.sbModalTop{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:14px 16px;border-bottom:1px solid rgba(255,255,255,.10)}
.sbModalTitle{font-weight:1000;font-size:14px}
.sbModalX{width:36px;height:36px;border-radius:14px;border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.04);color:var(--text);cursor:pointer;font-size:20px;line-height:0;display:grid;place-items:center}
.sbModalX:hover{filter:brightness(1.08)}
.sbModalBody{padding:14px 16px;display:grid;gap:10px}
.sbModalHint{color:rgba(200,211,255,.85);font-size:13px;line-height:1.35}
.sbModalText{width:100%;min-height:140px;max-height:44vh;resize:vertical;border-radius:18px;border:1px solid rgba(255,255,255,.12);background:rgba(0,0,0,.22);color:var(--text);padding:12px 12px;font-family:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;font-size:12.5px;line-height:1.35}
.sbModalBtns{display:flex;gap:10px;justify-content:flex-end;flex-wrap:wrap}
.sbBtnMini{padding:10px 12px;border-radius:14px;font-weight:1000}
.sbModalFoot{color:rgba(200,211,255,.65);font-size:12px}

/* Modal picker */
.modalWrap{position:fixed;inset:0;z-index:80;display:grid;place-items:center}
.modalBackdrop{position:absolute;inset:0;background:rgba(0,0,0,.65)}
.modal{
  position:relative;
  width:min(680px, 92vw);
  max-height:84vh;
  overflow:hidden;
  border-radius:24px;
  border:1px solid var(--stroke);
  background:#0a0f1ff5;
  backdrop-filter: blur(10px);
  box-shadow:var(--shadow);
}
.modalHead{padding:14px 14px;border-bottom:1px solid var(--stroke);display:flex;align-items:center;justify-content:space-between;gap:10px}
.modalBody{padding:14px;overflow:auto;max-height:70vh;display:grid;gap:10px}
.pickerList{display:grid;gap:10px}
.pickerRow{display:flex;gap:10px;align-items:center;padding:10px;border-radius:18px;border:1px solid var(--stroke);background:#0b1228aa;cursor:pointer}
.pickerRow:hover{filter:brightness(1.06)}
.pickerRow img{width:42px;height:42px;object-fit:contain;image-rendering:pixelated}
.pickerName{font-weight:1000}
.pickerMeta{color:var(--muted2);font-size:12px;margin-top:2px}

/* v6 activity left fill + stats */
.activityStack{display:flex;flex-direction:column;gap:14px}
.activityMiniGrid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.miniStat{background:linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.10); border-radius:16px; padding:12px 14px; box-shadow:0 12px 30px rgba(0,0,0,.25)}
.miniStatWide{grid-column:1 / span 2}
.miniK{font-size:12px;letter-spacing:.2px;color:rgba(200,211,255,.75)}
.miniV{font-size:18px;font-weight:800;margin-top:4px}
.miniS{font-size:12px;color:rgba(200,211,255,.65);margin-top:4px}

/* v6 mutation row polish */
.mutRow{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:10px}
.select.mini{height:38px;font-size:13px}



/* v6 reviews page */
.reviewControls{display:flex;gap:10px;align-items:center;flex-wrap:wrap;margin-top:10px}
.chip{border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.04);color:#e6ecff;
  padding:8px 12px;border-radius:999px;font-weight:700;font-size:13px;cursor:pointer}
.chip:hover{background:rgba(255,255,255,.07)}
.chip.active{background:linear-gradient(135deg, rgba(16,185,129,.35), rgba(16,185,129,.12));
  border-color:rgba(16,185,129,.55)}
.spacer{flex:1}
.reviewsGrid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;margin-top:14px}
@media (max-width: 980px){.reviewsGrid{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media (max-width: 620px){.reviewsGrid{grid-template-columns:1fr;}}
.reviewCardBig{background:linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.10);border-radius:18px;padding:14px 14px 12px;box-shadow:0 12px 30px rgba(0,0,0,.25)}
.reviewCardBig.good{border-left:4px solid rgba(34,197,94,.85)}
.reviewCardBig.mix{border-left:4px solid rgba(245,158,11,.85)}
.reviewCardBig.bad{border-left:4px solid rgba(239,68,68,.85)}
.reviewMeta{font-size:12px;color:rgba(200,211,255,.70);margin-top:2px}

/* v6 faq */
.faqGrid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
@media (max-width: 980px){.faqGrid{grid-template-columns:1fr;}}
.faqCard{background:linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  border:1px solid rgba(255,255,255,.10);border-radius:18px;padding:14px;box-shadow:0 12px 30px rgba(0,0,0,.22)}
.faqQ{font-weight:900;margin-bottom:6px}
.faqA{color:rgba(200,211,255,.78);line-height:1.45}



/* Live Activity compact mode */
.activityBig.compact{gap:10px}
.activityBigLeft.compact{width:58px;height:58px;border-radius:16px}
.activityImg.compact{width:48px;height:48px}
.activityRow.compact{padding:9px;border-radius:16px}
.activityTitle{font-size:16px}
.activityMeta{font-size:12px}

.footer{
  margin-top:40px;
  padding:24px;
  text-align:center;
  opacity:.7;
  font-size:14px;
}
.footer a{
  margin:0 10px;
  color:inherit;
  text-decoration:none;
}
.footer a:hover{
  text-decoration:underline;
}
