/* =========================================================
   MIMHO Ledger — Premium Crypto Social UI
   Version: Premium UI v1
   ========================================================= */

:root {
  --bg: #050608;
  --bg-2: #080a0f;
  --bg-3: #0b0e14;

  --surface: rgba(14, 18, 27, 0.78);
  --surface-strong: rgba(18, 23, 34, 0.94);
  --surface-soft: rgba(255, 255, 255, 0.035);

  --card: #0f141d;
  --card-2: #111824;
  --card-hover: #151d2a;

  --line: rgba(255, 255, 255, 0.085);
  --line-strong: rgba(255, 255, 255, 0.14);

  --text: #f4f6fb;
  --text-soft: #d8dee9;
  --muted: #8f9aae;
  --muted-2: #687386;

  --accent: #f7931a;
  --accent-soft: rgba(247, 147, 26, 0.11);
  --accent-line: rgba(247, 147, 26, 0.38);
  --accent-2: #ffb357;

  --danger: #ff5e6c;
  --danger-soft: rgba(255, 94, 108, 0.11);

  --success: #36d399;

  --shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
  --shadow-soft: 0 14px 42px rgba(0, 0, 0, 0.28);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --topbar-height: 68px;
  --max-width: 1280px;

  --font-sans: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Orbitron, Inter, system-ui, sans-serif;
}

/* =========================================================
   Base
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at 12% 0%, rgba(247, 147, 26, 0.12), transparent 32%),
    radial-gradient(circle at 78% 8%, rgba(92, 124, 250, 0.08), transparent 30%),
    linear-gradient(180deg, #050608 0%, #070910 42%, #050608 100%);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent 78%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.18) 100%);
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

/* Language visibility */
.lang-en .pt,
.lang-en .es,
.lang-pt .en,
.lang-pt .es,
.lang-es .en,
.lang-es .pt {
  display: none !important;
}

/* Old watermark toned down */
.ledger-watermark {
  position: fixed;
  inset: 0;
  background: url('https://emerald-high-grasshopper-50.mypinata.cloud/ipfs/bafkreifwodyv34bm2i5llyyfxoa7z2hjnxhnlbley7gokk7cunplinyrvu') no-repeat center center;
  background-size: min(44vw, 520px);
  opacity: 0.018;
  z-index: -1;
  pointer-events: none;
  filter: grayscale(1);
}

/* =========================================================
   Topbar
   ========================================================= */

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--topbar-height);
  padding: 0 clamp(14px, 3vw, 28px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(5, 6, 8, 0.78);
  backdrop-filter: blur(18px) saturate(130%);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-family: var(--font-display);
  font-size: 1.02rem;
  line-height: 1;
  letter-spacing: 0.12em;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand span {
  color: var(--accent);
}

.brand::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 24px rgba(247, 147, 26, 0.7);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switcher {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
}

.lang-btn {
  border: 0;
  cursor: pointer;
  color: var(--muted);
  background: transparent;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 6px 9px;
  border-radius: 999px;
  transition: 160ms ease;
}

.lang-btn:hover {
  color: var(--text);
}

.lang-btn.active {
  color: #050608;
  background: var(--accent);
}

.btn-connect,
.btn-spark {
  border: 1px solid var(--accent-line);
  background: linear-gradient(180deg, rgba(247,147,26,0.19), rgba(247,147,26,0.09));
  color: var(--text);
  border-radius: 999px;
  padding: 9px 16px;
  font-weight: 800;
  cursor: pointer;
  transition: 180ms ease;
  box-shadow: 0 0 0 1px rgba(247,147,26,0.03) inset;
}

.btn-connect:hover,
.btn-spark:hover {
  transform: translateY(-1px);
  border-color: rgba(247,147,26,0.65);
  background: linear-gradient(180deg, rgba(247,147,26,0.28), rgba(247,147,26,0.12));
}

/* Wallet badge */
.user-badge {
  display: none;
  align-items: center;
  gap: 10px;
  position: relative;
  min-height: 42px;
  padding: 5px 13px 5px 5px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  transition: 180ms ease;
}

.user-badge.active {
  display: flex;
}

.user-badge:hover {
  border-color: var(--accent-line);
  background: rgba(255,255,255,0.06);
}

.avatar-small {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(247,147,26,0.9), rgba(255,179,87,0.55)),
    #141a25;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,0.12);
}

.user-badge span {
  color: var(--text-soft);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.wallet-menu {
  display: none;
  position: absolute;
  top: 48px;
  right: 0;
  width: 230px;
  padding: 8px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(15, 20, 29, 0.98);
  box-shadow: var(--shadow);
  z-index: 3000;
}

.wallet-menu.active {
  display: block;
}

.wallet-menu a,
.wallet-menu button {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 8px;
  padding: 11px 12px;
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 12px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.wallet-menu a:hover,
.wallet-menu button:hover {
  background: rgba(255,255,255,0.055);
  color: var(--text);
}

#menuWallet {
  display: block;
  padding: 9px 12px 11px;
  color: var(--muted);
  font-size: 0.76rem;
  overflow-wrap: anywhere;
  border-bottom: 1px solid var(--line);
  margin-bottom: 6px;
}

/* =========================================================
   Layout
   ========================================================= */

.ledger-grid {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) 320px;
  min-height: calc(100vh - var(--topbar-height));
}

.sidebar-left,
.sidebar-right {
  position: sticky;
  top: var(--topbar-height);
  align-self: start;
  height: calc(100vh - var(--topbar-height));
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.12) transparent;
}

.sidebar-left {
  padding: 22px 16px;
  border-right: 1px solid var(--line);
}

.sidebar-right {
  padding: 22px 16px;
  border-left: 1px solid var(--line);
}

.feed-center {
  min-width: 0;
  border-right: 0;
  background: rgba(5, 6, 8, 0.18);
}

.feed-header {
  padding: 18px 18px 15px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 6, 8, 0.2);
}

.feed-header h1,
.feed-header h2,
.feed-header h3 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-size: 0.98rem;
  color: var(--text);
}

.feed-subtitle,
.notice {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* =========================================================
   Navigation
   ========================================================= */

.nav-menu {
  display: grid;
  gap: 7px;
}

.nav-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  color: var(--text-soft);
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 14px;
  transition: 160ms ease;
  border: 1px solid transparent;
  font-weight: 720;
}

.nav-menu a:hover {
  background: rgba(255,255,255,0.045);
  border-color: var(--line);
  color: var(--text);
}

.nav-menu a.active {
  color: var(--text);
  background: linear-gradient(90deg, rgba(247,147,26,0.14), rgba(247,147,26,0.03));
  border-color: rgba(247,147,26,0.23);
}

.nav-menu .icon,
.mobile-nav .icon {
  width: 22px;
  display: inline-flex;
  justify-content: center;
  opacity: 0.82;
  filter: grayscale(0.25);
}

/* Hide old gamified daily energy card for premium look */
.energy-card {
  display: none !important;
}

/* =========================================================
   Composer
   ========================================================= */

.composer {
  padding: 16px 18px 18px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.008));
}

.composer-main {
  display: flex;
  gap: 13px;
}

.avatar {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(247,147,26,0.75), rgba(255,255,255,0.06)),
    #151b26;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,0.11);
  text-decoration: none;
}

textarea,
.input-ipfs,
.input-basic,
.comment-box input,
#searchInput,
#profileName,
#profileAvatar {
  width: 100%;
  color: var(--text);
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
  transition: 160ms ease;
}

textarea {
  min-height: 72px;
  padding: 8px 0;
  background: transparent;
  border: 0;
  resize: vertical;
  font-size: 1.03rem;
  line-height: 1.5;
}

textarea::placeholder,
.input-ipfs::placeholder,
.comment-box input::placeholder,
#searchInput::placeholder,
#profileName::placeholder,
#profileAvatar::placeholder {
  color: var(--muted-2);
}

.input-ipfs,
.input-basic,
#searchInput,
#profileName,
#profileAvatar {
  margin-top: 12px;
  padding: 11px 13px;
  font-size: 0.92rem;
}

.input-ipfs:focus,
.input-basic:focus,
.comment-box input:focus,
#searchInput:focus,
#profileName:focus,
#profileAvatar:focus {
  border-color: var(--accent-line);
  background: rgba(255,255,255,0.052);
  box-shadow: 0 0 0 3px rgba(247,147,26,0.08);
}

.composer .btn-spark {
  min-width: 104px;
}

/* =========================================================
   Posts
   ========================================================= */

.post-card {
  display: flex;
  gap: 13px;
  padding: 17px 18px;
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition: 160ms ease;
}

.post-card:hover {
  background: rgba(255,255,255,0.018);
}

.post-body {
  min-width: 0;
  width: 100%;
}

.post-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.post-topline h4,
.post-body h4 {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.35;
  font-weight: 850;
  color: var(--text);
}

.post-topline h4 a,
.post-body h4 a {
  color: var(--text);
  text-decoration: none;
}

.post-topline h4 a:hover,
.post-body h4 a:hover {
  color: var(--accent-2);
}

.post-topline span,
.post-body h4 span {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.86rem;
}

.post-text {
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.58;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.post-text a {
  color: var(--accent-2);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,179,87,0.35);
}

.post-text a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.post-img,
.post-video {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  display: block;
  margin-top: 12px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #000;
  box-shadow: var(--shadow-soft);
}

.post-video {
  object-fit: contain;
}

.post-audio {
  width: 100%;
  margin-top: 12px;
}

.post-link-card {
  display: block;
  margin-top: 12px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.035);
  color: var(--text);
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: 160ms ease;
}

.post-link-card:hover {
  border-color: var(--accent-line);
  background: rgba(247,147,26,0.055);
}

.post-link-card strong {
  display: block;
  color: var(--accent-2);
  font-size: 0.88rem;
  margin-bottom: 4px;
}

.post-link-card span {
  color: var(--muted);
  font-size: 0.86rem;
}

/* =========================================================
   Actions
   ========================================================= */

.post-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 12px;
  color: var(--muted);
}

.post-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 760;
  transition: 150ms ease;
}

.post-actions button:hover {
  color: var(--text);
  background: rgba(255,255,255,0.055);
  border-color: var(--line);
  transform: translateY(-1px);
}

.post-actions button:nth-child(1):hover,
.post-actions button:nth-child(2):hover {
  color: var(--accent-2);
  border-color: rgba(247,147,26,0.22);
  background: rgba(247,147,26,0.075);
}

.btn-delete-post {
  color: #ffb3b3 !important;
}

.btn-delete-post:hover {
  color: #ff5e6c !important;
  border-color: rgba(255,94,108,0.28) !important;
  background: rgba(255,94,108,0.09) !important;
}

/* =========================================================
   Comments
   ========================================================= */

.comment-box {
  display: none;
  gap: 9px;
  margin-top: 12px;
}

.comment-box.active {
  display: flex;
}

.comment-box input {
  min-height: 38px;
  padding: 8px 12px;
}

.comment-box button {
  border: 1px solid var(--accent-line);
  background: var(--accent-soft);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 800;
}

.comments-list {
  margin-top: 11px;
  display: grid;
  gap: 8px;
}

.comment-item {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.026);
}

.comment-item strong {
  display: block;
  color: var(--text);
  font-size: 0.84rem;
  margin-bottom: 2px;
}

.comment-item p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

/* =========================================================
   Echo / Repost
   ========================================================= */

.echo-card {
  background: rgba(247,147,26,0.014);
}

.echo-label {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 8px;
}

.echo-label a {
  color: var(--text-soft);
  text-decoration: none;
  font-weight: 850;
}

.echo-label a:hover {
  color: var(--accent-2);
}

.echo-label span {
  color: var(--muted);
  font-size: 0.83rem;
}

.echo-quote {
  margin: 7px 0 12px;
  font-size: 0.98rem;
}

.echo-original-card {
  display: block;
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px;
  background: rgba(255,255,255,0.025);
  transition: 160ms ease;
}

.echo-original-card:hover {
  border-color: rgba(247,147,26,0.38);
  background: rgba(247,147,26,0.035);
}

.echo-original-top {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.85rem;
}

.echo-original-top strong {
  color: var(--text);
}

.echo-original-top span {
  color: var(--muted);
}

.echo-open-original {
  float: right;
  color: var(--muted);
  text-decoration: none;
}

.echo-open-original:hover {
  color: var(--accent);
}

.echo-actions {
  margin-top: 10px;
}

/* =========================================================
   Deleted posts
   ========================================================= */

.deleted-post-card {
  opacity: 0.82;
}

.deleted-post-message {
  border: 1px dashed rgba(255,255,255,0.18);
  color: var(--muted);
  background: rgba(255,255,255,0.025);
  border-radius: 14px;
  padding: 12px;
  font-size: 0.92rem;
}

.deleted-original-card {
  cursor: default;
}

/* =========================================================
   Cards / Sidebars
   ========================================================= */

.trending-card,
.profile-card,
.status-box,
.empty-state {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.035);
  box-shadow: none;
}

.trending-card {
  padding: 16px;
}

.trending-card h4 {
  margin: 0 0 13px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.trending-card p,
.trending-card a {
  display: block;
  margin: 7px 0;
  color: var(--text-soft) !important;
  text-decoration: none;
  font-size: 0.92rem;
}

.trending-card p:hover,
.trending-card a:hover {
  color: var(--accent-2) !important;
}

.status-box,
.empty-state {
  margin: 16px;
  padding: 16px;
  color: var(--muted);
}

.status-box strong,
.empty-state strong {
  color: var(--text);
}

.community-pill {
  display: block;
  margin: 8px 0;
  padding: 11px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--text-soft);
  text-decoration: none;
  transition: 150ms ease;
}

.community-pill:hover {
  color: var(--text);
  border-color: var(--accent-line);
  background: rgba(247,147,26,0.055);
}

/* =========================================================
   Profile
   ========================================================= */

.profile-card {
  margin: 16px;
  overflow: hidden;
}

.profile-header {
  display: flex;
  gap: 16px;
  padding: 18px;
  align-items: center;
}

.profile-avatar {
  width: 82px;
  height: 82px;
  flex: 0 0 82px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(247,147,26,0.9), rgba(255,255,255,0.07)),
    #161d28;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-soft);
}

.profile-header h2 {
  margin: 0 0 4px;
  font-size: 1.18rem;
  color: var(--text);
}

.profile-header p {
  margin: 3px 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

/* =========================================================
   Forms / Search
   ========================================================= */

#searchForm {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

#searchForm button {
  margin-top: 10px;
}

.form-card {
  margin: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
}

/* =========================================================
   Mobile nav
   ========================================================= */

.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 66px;
  z-index: 2000;
  align-items: center;
  justify-content: space-around;
  background: rgba(5, 6, 8, 0.9);
  backdrop-filter: blur(18px) saturate(130%);
  border-top: 1px solid var(--line);
}

.mobile-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 1.22rem;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  transition: 160ms ease;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--accent-2);
  background: rgba(247,147,26,0.08);
}

/* =========================================================
   Toast
   ========================================================= */

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 5000;
  transform: translateX(-50%) translateY(12px);
  opacity: 0;
  pointer-events: none;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(17, 24, 34, 0.98);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: 180ms ease;
  font-weight: 780;
}

.toast.active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1100px) {
  .ledger-grid {
    grid-template-columns: 230px minmax(0, 1fr);
  }

  .sidebar-right {
    display: none;
  }

  .feed-center {
    border-right: 0;
  }
}

@media (max-width: 900px) {
  :root {
    --topbar-height: 62px;
  }

  body {
    padding-bottom: 72px;
  }

  .topbar {
    height: var(--topbar-height);
  }

  .brand {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
  }

  .lang-switcher {
    display: none;
  }

  .ledger-grid {
    grid-template-columns: 1fr;
  }

  .sidebar-left,
  .sidebar-right {
    display: none;
  }

  .mobile-nav {
    display: flex;
  }

  .post-card,
  .composer,
  .feed-header,
  #searchForm {
    padding-left: 14px;
    padding-right: 14px;
  }

  .avatar {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .post-actions {
    justify-content: space-between;
  }

  .profile-header {
    align-items: flex-start;
  }
}

@media (max-width: 540px) {
  .nav-actions {
    gap: 8px;
  }

  .btn-connect {
    padding: 8px 12px;
    font-size: 0.86rem;
  }

  .user-badge span {
    display: none;
  }

  .composer-main {
    gap: 10px;
  }

  .post-card {
    gap: 10px;
  }

  .post-actions button {
    padding: 7px 8px;
  }

  .comment-box {
    flex-direction: column;
  }

  .profile-avatar {
    width: 66px;
    height: 66px;
    flex-basis: 66px;
    border-radius: 20px;
  }
}


/* =========================================================
   MIMHO Ledger - Upload / Publish State
   ========================================================= */

.publish-status {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 11px 13px;
  border-radius: 14px;
  border: 1px solid rgba(247,147,26,0.28);
  background: rgba(247,147,26,0.075);
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 750;
}

.publish-status.active {
  display: flex;
}

.publish-status.active::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(247,147,26,0.75);
  animation: mimho-ledger-pulse 900ms ease-in-out infinite;
}

@keyframes mimho-ledger-pulse {
  0% {
    opacity: 0.45;
    transform: scale(0.86);
  }

  50% {
    opacity: 1;
    transform: scale(1.18);
  }

  100% {
    opacity: 0.45;
    transform: scale(0.86);
  }
}

.btn-spark:disabled,
.btn-spark.is-busy,
button.is-busy {
  opacity: 0.62;
  cursor: wait !important;
  pointer-events: none;
  transform: none !important;
}

textarea:disabled,
.input-ipfs:disabled,
input:disabled {
  opacity: 0.68;
  cursor: wait;
}


/* =========================================================
   MIMHO Ledger - Premium Echo Modal
   ========================================================= */

body.modal-open {
  overflow: hidden;
}

.echo-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 7000;
  padding: 22px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(14px);
  align-items: center;
  justify-content: center;
}

.echo-modal-overlay.active {
  display: flex;
}

.echo-modal {
  width: min(720px, 100%);
  max-height: min(86vh, 860px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 0%, rgba(247,147,26,0.09), transparent 34%),
    rgba(12, 16, 24, 0.98);
  box-shadow: var(--shadow);
}

.echo-modal-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 18px 14px;
  border-bottom: 1px solid var(--line);
}

.echo-modal-header h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.echo-modal-header p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.echo-modal-close {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
  color: var(--text-soft);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
  transition: 160ms ease;
}

.echo-modal-close:hover {
  color: var(--text);
  border-color: var(--accent-line);
  background: rgba(247,147,26,0.08);
}

.echo-modal-textarea {
  margin: 16px 18px 0;
  width: calc(100% - 36px);
  min-height: 96px;
  padding: 13px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
  color: var(--text);
  outline: none;
  resize: vertical;
  font-size: 0.98rem;
  line-height: 1.55;
}

.echo-modal-textarea:focus {
  border-color: var(--accent-line);
  box-shadow: 0 0 0 3px rgba(247,147,26,0.08);
}

.echo-modal-preview {
  margin: 14px 18px 0;
  overflow-y: auto;
  max-height: 420px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.018);
}

.echo-modal-preview .post-card {
  border-bottom: 0;
  pointer-events: none;
}

.echo-modal-preview .post-actions,
.echo-modal-preview .comment-box,
.echo-modal-preview .comments-list,
.echo-modal-preview .btn-delete-post {
  display: none !important;
}

.echo-modal-preview .post-img,
.echo-modal-preview .post-video {
  max-height: 260px;
}

.echo-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 16px 18px 18px;
  border-top: 1px solid var(--line);
  margin-top: 16px;
}

.echo-modal-cancel {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
  color: var(--text-soft);
  border-radius: 999px;
  padding: 9px 15px;
  cursor: pointer;
  font-weight: 800;
  transition: 160ms ease;
}

.echo-modal-cancel:hover {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(255,255,255,0.06);
}

@media (max-width: 640px) {
  .echo-modal-overlay {
    padding: 10px;
    align-items: flex-end;
  }

  .echo-modal {
    max-height: 92vh;
    border-radius: 22px 22px 0 0;
  }

  .echo-modal-preview {
    max-height: 330px;
  }

  .echo-modal-actions {
    flex-direction: column-reverse;
  }

  .echo-modal-actions button {
    width: 100%;
  }
}


/* =========================================================
   MIMHO Ledger - Strong Profile V1
   ========================================================= */

.profile-hero {
  margin: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 20% 0%, rgba(247,147,26,0.08), transparent 34%),
    rgba(255,255,255,0.032);
  overflow: hidden;
}

.profile-hero-top {
  display: flex;
  gap: 18px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.profile-hero-main {
  min-width: 0;
  width: 100%;
}

.profile-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.profile-title-row h2 {
  margin: 0;
  color: var(--text);
  font-size: 1.28rem;
  line-height: 1.2;
}

.profile-wallet {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  overflow-wrap: anywhere;
}

.profile-pill {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid var(--accent-line);
  color: var(--accent-2);
  background: rgba(247,147,26,0.075);
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.profile-bio {
  margin: 12px 0 0;
  color: var(--text-soft);
  line-height: 1.58;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.profile-bio.muted {
  color: var(--muted);
}

.profile-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 13px;
}

.profile-meta-row a,
.profile-meta-row span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.032);
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
}

.profile-meta-row a:hover {
  color: var(--accent-2);
  border-color: var(--accent-line);
}

.profile-score-card {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.profile-score-card > div {
  display: grid;
  gap: 5px;
}

.profile-score-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-score-card strong {
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
}

.profile-score-card small {
  color: var(--muted);
}

.profile-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.profile-stat-card {
  padding: 16px 18px;
  border-right: 1px solid var(--line);
}

.profile-stat-card:nth-child(3n) {
  border-right: 0;
}

.profile-stat-card strong {
  display: block;
  color: var(--text);
  font-size: 1.22rem;
  line-height: 1.1;
}

.profile-stat-card span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.82rem;
}

.profile-top-posts {
  padding: 18px 20px 20px;
}

.profile-top-posts h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text);
}

.profile-mini-post {
  display: block;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.026);
  color: var(--text);
  text-decoration: none;
  margin-top: 8px;
  transition: 150ms ease;
}

.profile-mini-post:hover {
  border-color: var(--accent-line);
  background: rgba(247,147,26,0.052);
}

.profile-mini-post strong {
  display: block;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.42;
}

.profile-mini-post span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.8rem;
}

@media (max-width: 720px) {
  .profile-hero-top {
    flex-direction: column;
  }

  .profile-title-row {
    flex-direction: column;
  }

  .profile-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-stat-card:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .profile-stat-card:nth-child(2n) {
    border-right: 0;
  }
}


/* =========================================================
   MIMHO Ledger - Profile Bio Fields
   ========================================================= */

#profileBio,
#profileWebsite,
#profileLocation {
  width: 100%;
  color: var(--text);
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
  transition: 160ms ease;
  margin-top: 8px;
  padding: 11px 13px;
  font-size: 0.92rem;
}

#profileBio {
  min-height: 96px;
  resize: vertical;
  line-height: 1.5;
}

#profileBio:focus,
#profileWebsite:focus,
#profileLocation:focus {
  border-color: var(--accent-line);
  background: rgba(255,255,255,0.052);
  box-shadow: 0 0 0 3px rgba(247,147,26,0.08);
}

#profileBio::placeholder,
#profileWebsite::placeholder,
#profileLocation::placeholder {
  color: var(--muted-2);
}


/* =========================================================
   MIMHO Ledger - Follow V1
   ========================================================= */

.profile-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  flex-wrap: wrap;
}

.profile-follow-btn {
  min-height: 32px;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid var(--accent-line);
  background: rgba(247,147,26,0.11);
  color: var(--text);
  cursor: pointer;
  font-weight: 900;
  font-size: 0.82rem;
  transition: 160ms ease;
}

.profile-follow-btn:hover {
  background: rgba(247,147,26,0.18);
  border-color: rgba(247,147,26,0.62);
  transform: translateY(-1px);
}

.profile-follow-btn.following {
  border-color: var(--line-strong);
  background: rgba(255,255,255,0.055);
  color: var(--text-soft);
}

.profile-follow-btn.following:hover {
  border-color: rgba(255,94,108,0.32);
  background: rgba(255,94,108,0.09);
  color: #ffb3b3;
}

.profile-follow-btn:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

@media (max-width: 720px) {
  .profile-actions {
    justify-content: flex-start;
  }
}


/* =========================================================
   MIMHO Ledger - Post More Menu / Edit / Boost V1
   ========================================================= */

.post-actions {
  position: relative;
}

.post-actions > .btn-delete-post,
.post-actions > button.btn-delete-post {
  display: none !important;
}

.post-more-wrap {
  margin-left: auto;
  position: relative;
  display: inline-flex;
  align-items: center;
}

.post-more-btn {
  min-width: 34px !important;
  width: 34px;
  height: 34px;
  padding: 0 !important;
  border-radius: 999px !important;
  font-size: 1.2rem !important;
  line-height: 1 !important;
}

.post-more-menu {
  display: none;
  position: absolute;
  right: 0;
  bottom: 42px;
  z-index: 4000;
  width: 220px;
  padding: 8px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(15, 20, 29, 0.98);
  box-shadow: var(--shadow);
}

.post-more-menu.active {
  display: block;
}

.post-more-menu button {
  width: 100%;
  justify-content: flex-start !important;
  min-height: 38px;
  border-radius: 11px !important;
  padding: 9px 10px !important;
  color: var(--text-soft) !important;
  background: transparent !important;
  border: 0 !important;
  font-size: 0.88rem !important;
  transform: none !important;
}

.post-more-menu button:hover {
  color: var(--text) !important;
  background: rgba(255,255,255,0.055) !important;
}

.post-more-menu button.danger:hover {
  color: #ffb3b3 !important;
  background: rgba(255,94,108,0.09) !important;
}


/* =========================================================
   MIMHO Ledger - Fixed Post More Menu
   ========================================================= */

.post-actions {
  position: relative;
}

.post-inline-admin-hidden {
  display: none !important;
}

.post-more-wrap {
  margin-left: auto;
  position: relative;
  display: inline-flex;
  align-items: center;
}

.post-more-btn {
  min-width: 34px !important;
  width: 34px !important;
  height: 34px !important;
  padding: 0 !important;
  border-radius: 999px !important;
  font-size: 1.35rem !important;
  line-height: 1 !important;
  letter-spacing: 1px;
}

.post-more-menu {
  display: none;
  position: absolute;
  right: 0;
  bottom: 42px;
  z-index: 5000;
  width: 230px;
  padding: 8px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(15, 20, 29, 0.98);
  box-shadow: var(--shadow);
}

.post-more-menu.active {
  display: block;
}

.post-more-menu button {
  width: 100%;
  justify-content: flex-start !important;
  min-height: 38px;
  border-radius: 11px !important;
  padding: 9px 10px !important;
  color: var(--text-soft) !important;
  background: transparent !important;
  border: 0 !important;
  font-size: 0.88rem !important;
  transform: none !important;
}

.post-more-menu button:hover {
  color: var(--text) !important;
  background: rgba(255,255,255,0.055) !important;
}

.post-more-menu button.danger:hover {
  color: #ffb3b3 !important;
  background: rgba(255,94,108,0.09) !important;
}


/* =========================================================
   MIMHO Ledger - Boost Panel V1
   ========================================================= */

.boost-panel {
  margin-bottom: 14px;
}

.boost-balance-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--accent-line);
  border-radius: 16px;
  background: rgba(247,147,26,0.075);
}

.boost-balance-row span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.boost-balance-row strong {
  color: var(--accent-2);
  font-size: 1.55rem;
  line-height: 1;
}

.boost-progress {
  margin-top: 12px;
}

.boost-progress-bar {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--line);
}

.boost-progress-bar div {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(247,147,26,0.75), rgba(255,179,87,0.95));
  box-shadow: 0 0 18px rgba(247,147,26,0.45);
  transition: width 240ms ease;
}

.boost-progress small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.78rem;
}

.boost-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 12px;
}

.boost-stat-grid div {
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.026);
}

.boost-stat-grid strong {
  display: block;
  color: var(--text);
  font-size: 0.98rem;
}

.boost-stat-grid span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.76rem;
}

.boost-costs {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.boost-costs p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 8px 0;
  color: var(--text-soft);
  font-size: 0.84rem;
}

.boost-costs strong {
  color: var(--accent-2);
}

.boost-panel-muted {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}


/* =========================================================
   MIMHO Ledger - Force Inline Admin Actions Into ⋯ Menu
   ========================================================= */

.post-actions > button[onclick^="deletePost("],
.post-actions > button[onclick^="reportPost("],
.post-actions > button.btn-delete-post {
  display: none !important;
}

.post-actions .post-more-wrap button[onclick^="deletePost("],
.post-actions .post-more-wrap button[onclick^="reportPost("] {
  display: flex !important;
}


/* =========================================================
   MIMHO Ledger - Spark Toggle State
   ========================================================= */

.post-actions button.spark-active {
  color: var(--accent-2) !important;
  border-color: rgba(247,147,26,0.28) !important;
  background: rgba(247,147,26,0.085) !important;
}

.post-actions button.spark-active:hover {
  color: var(--accent) !important;
  background: rgba(247,147,26,0.12) !important;
}


/* =========================================================
   MIMHO Ledger - Premium Feed Tabs Final V1
   ========================================================= */

#ledgerFeedTabs.premium-feed-tabs,
.feed-tabs.premium-feed-tabs {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.008));
}

#ledgerFeedTabs.premium-feed-tabs button,
.feed-tabs.premium-feed-tabs button {
  appearance: none !important;
  -webkit-appearance: none !important;
  min-height: 58px;
  border: 0 !important;
  border-right: 1px solid var(--line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--muted) !important;
  cursor: pointer;
  display: grid;
  place-items: center;
  gap: 2px;
  padding: 9px 8px;
  box-shadow: none !important;
  position: relative;
  transition: 160ms ease;
}

#ledgerFeedTabs.premium-feed-tabs button:last-child,
.feed-tabs.premium-feed-tabs button:last-child {
  border-right: 0 !important;
}

#ledgerFeedTabs.premium-feed-tabs button strong,
.feed-tabs.premium-feed-tabs button strong {
  display: block;
  color: inherit;
  font-size: 0.9rem;
  line-height: 1.1;
  font-weight: 900;
}

#ledgerFeedTabs.premium-feed-tabs button small,
.feed-tabs.premium-feed-tabs button small {
  display: block;
  color: var(--muted-2);
  font-size: 0.72rem;
  line-height: 1.1;
  font-weight: 700;
}

#ledgerFeedTabs.premium-feed-tabs button:hover,
.feed-tabs.premium-feed-tabs button:hover {
  color: var(--text) !important;
  background: rgba(255,255,255,0.032) !important;
}

#ledgerFeedTabs.premium-feed-tabs button.active,
.feed-tabs.premium-feed-tabs button.active {
  color: var(--text) !important;
  background: rgba(247,147,26,0.052) !important;
}

#ledgerFeedTabs.premium-feed-tabs button.active small,
.feed-tabs.premium-feed-tabs button.active small {
  color: var(--accent-2);
}

#ledgerFeedTabs.premium-feed-tabs button.active::after,
.feed-tabs.premium-feed-tabs button.active::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: 0;
  height: 2px;
  border-radius: 99px 99px 0 0;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(247,147,26,0.6);
}

@media (max-width: 540px) {
  #ledgerFeedTabs.premium-feed-tabs button,
  .feed-tabs.premium-feed-tabs button {
    min-height: 52px;
    padding: 8px 4px;
  }

  #ledgerFeedTabs.premium-feed-tabs button strong,
  .feed-tabs.premium-feed-tabs button strong {
    font-size: 0.78rem;
  }

  #ledgerFeedTabs.premium-feed-tabs button small,
  .feed-tabs.premium-feed-tabs button small {
    display: none;
  }
}


/* =========================================================
   MIMHO Ledger - Feed Tabs V2 Final Override
   ========================================================= */

#ledgerFeedTabs {
  display: none !important;
}

#mimhoFeedTabsV2,
.mimho-feed-tabs-v2 {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  width: 100% !important;
  border-bottom: 1px solid var(--line) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.028), rgba(255,255,255,0.008)) !important;
}

#mimhoFeedTabsV2 .mimho-feed-tab-button,
.mimho-feed-tabs-v2 .mimho-feed-tab-button {
  appearance: none !important;
  -webkit-appearance: none !important;
  min-height: 58px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 9px 8px !important;
  border: 0 !important;
  border-right: 1px solid var(--line) !important;
  border-radius: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  color: var(--muted) !important;
  cursor: pointer !important;
  display: grid !important;
  place-items: center !important;
  gap: 3px !important;
  font-family: var(--font-sans) !important;
  text-align: center !important;
  position: relative !important;
  transition: 160ms ease !important;
}

#mimhoFeedTabsV2 .mimho-feed-tab-button:last-child,
.mimho-feed-tabs-v2 .mimho-feed-tab-button:last-child {
  border-right: 0 !important;
}

#mimhoFeedTabsV2 .mimho-feed-tab-button strong,
.mimho-feed-tabs-v2 .mimho-feed-tab-button strong {
  display: block !important;
  color: inherit !important;
  font-size: 0.9rem !important;
  line-height: 1.1 !important;
  font-weight: 900 !important;
}

#mimhoFeedTabsV2 .mimho-feed-tab-button small,
.mimho-feed-tabs-v2 .mimho-feed-tab-button small {
  display: block !important;
  color: var(--muted-2) !important;
  font-size: 0.72rem !important;
  line-height: 1.1 !important;
  font-weight: 700 !important;
}

#mimhoFeedTabsV2 .mimho-feed-tab-button:hover,
.mimho-feed-tabs-v2 .mimho-feed-tab-button:hover {
  color: var(--text) !important;
  background: rgba(255,255,255,0.035) !important;
}

#mimhoFeedTabsV2 .mimho-feed-tab-button.active,
.mimho-feed-tabs-v2 .mimho-feed-tab-button.active {
  color: var(--text) !important;
  background: rgba(247,147,26,0.052) !important;
}

#mimhoFeedTabsV2 .mimho-feed-tab-button.active small,
.mimho-feed-tabs-v2 .mimho-feed-tab-button.active small {
  color: var(--accent-2) !important;
}

#mimhoFeedTabsV2 .mimho-feed-tab-button.active::after,
.mimho-feed-tabs-v2 .mimho-feed-tab-button.active::after {
  content: "" !important;
  position: absolute !important;
  left: 20% !important;
  right: 20% !important;
  bottom: 0 !important;
  height: 2px !important;
  border-radius: 99px 99px 0 0 !important;
  background: var(--accent) !important;
  box-shadow: 0 0 18px rgba(247,147,26,0.6) !important;
}

/* Premium file input button */
.input-ipfs[type="file"] {
  padding: 9px 12px !important;
  color: var(--muted) !important;
}

.input-ipfs[type="file"]::file-selector-button {
  appearance: none !important;
  -webkit-appearance: none !important;
  margin-right: 12px !important;
  padding: 8px 13px !important;
  border-radius: 999px !important;
  border: 1px solid var(--accent-line) !important;
  background: rgba(247,147,26,0.11) !important;
  color: var(--text) !important;
  cursor: pointer !important;
  font-weight: 850 !important;
}

.input-ipfs[type="file"]::file-selector-button:hover {
  background: rgba(247,147,26,0.18) !important;
}

@media (max-width: 540px) {
  #mimhoFeedTabsV2 .mimho-feed-tab-button,
  .mimho-feed-tabs-v2 .mimho-feed-tab-button {
    min-height: 52px !important;
    padding: 8px 4px !important;
  }

  #mimhoFeedTabsV2 .mimho-feed-tab-button strong,
  .mimho-feed-tabs-v2 .mimho-feed-tab-button strong {
    font-size: 0.78rem !important;
  }

  #mimhoFeedTabsV2 .mimho-feed-tab-button small,
  .mimho-feed-tabs-v2 .mimho-feed-tab-button small {
    display: none !important;
  }
}


/* =========================================================
   MIMHO Ledger - Boosted Signals V1
   ========================================================= */

.boosted-signals-panel {
  margin-bottom: 14px;
}

.boosted-section {
  margin-top: 13px;
}

.boosted-section h5 {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.boosted-empty {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.45;
}

.boosted-signal-item,
.boosted-wallet-item {
  display: block;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.026);
  color: var(--text);
  text-decoration: none;
  margin-top: 8px;
  transition: 160ms ease;
}

.boosted-signal-item:hover,
.boosted-wallet-item:hover {
  border-color: var(--accent-line);
  background: rgba(247,147,26,0.055);
  transform: translateY(-1px);
}

.boosted-signal-kicker {
  display: block;
  margin-bottom: 4px;
  color: var(--accent-2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.boosted-signal-item strong,
.boosted-wallet-item strong {
  display: block;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.25;
}

.boosted-signal-item p,
.boosted-wallet-item p {
  margin: 6px 0 0;
  color: var(--text-soft);
  font-size: 0.84rem;
  line-height: 1.42;
  overflow-wrap: anywhere;
}

.boosted-signal-item small,
.boosted-wallet-item small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.76rem;
}

.boosted-wallet-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.boosted-wallet-avatar {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(135deg, rgba(247,147,26,0.72), rgba(255,255,255,0.05)),
    #141a25;
}

.boosted-wallet-main {
  min-width: 0;
  display: block;
}


/* =========================================================
   MIMHO Ledger - Feed Tabs V4 High Signal Final
   ========================================================= */

#ledgerFeedTabs,
#mimhoFeedTabsV2,
#mimhoFeedTabsV3,
.feed-tabs,
.premium-feed-tabs,
.mimho-feed-tabs-v2,
.mimho-feed-tabs-v3 {
  display: none !important;
}

#mimhoFeedTabsV4,
.mimho-feed-tabs-v4 {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  width: 100% !important;
  border-bottom: 1px solid var(--line) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.028), rgba(255,255,255,0.008)) !important;
}

#mimhoFeedTabsV4 .mimho-feed-tab-v4,
.mimho-feed-tabs-v4 .mimho-feed-tab-v4 {
  appearance: none !important;
  -webkit-appearance: none !important;
  min-height: 58px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 9px 6px !important;
  border: 0 !important;
  border-right: 1px solid var(--line) !important;
  border-radius: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  color: var(--muted) !important;
  cursor: pointer !important;
  display: grid !important;
  place-items: center !important;
  gap: 3px !important;
  font-family: var(--font-sans) !important;
  text-align: center !important;
  position: relative !important;
  transition: 160ms ease !important;
}

#mimhoFeedTabsV4 .mimho-feed-tab-v4:last-child,
.mimho-feed-tabs-v4 .mimho-feed-tab-v4:last-child {
  border-right: 0 !important;
}

#mimhoFeedTabsV4 .mimho-feed-tab-v4 strong,
.mimho-feed-tabs-v4 .mimho-feed-tab-v4 strong {
  display: block !important;
  color: inherit !important;
  font-size: 0.84rem !important;
  line-height: 1.1 !important;
  font-weight: 900 !important;
}

#mimhoFeedTabsV4 .mimho-feed-tab-v4 small,
.mimho-feed-tabs-v4 .mimho-feed-tab-v4 small {
  display: block !important;
  color: var(--muted-2) !important;
  font-size: 0.68rem !important;
  line-height: 1.1 !important;
  font-weight: 700 !important;
}

#mimhoFeedTabsV4 .mimho-feed-tab-v4:hover,
.mimho-feed-tabs-v4 .mimho-feed-tab-v4:hover {
  color: var(--text) !important;
  background: rgba(255,255,255,0.035) !important;
}

#mimhoFeedTabsV4 .mimho-feed-tab-v4.active,
.mimho-feed-tabs-v4 .mimho-feed-tab-v4.active {
  color: var(--text) !important;
  background: rgba(247,147,26,0.052) !important;
}

#mimhoFeedTabsV4 .mimho-feed-tab-v4.active small,
.mimho-feed-tabs-v4 .mimho-feed-tab-v4.active small {
  color: var(--accent-2) !important;
}

#mimhoFeedTabsV4 .mimho-feed-tab-v4.active::after,
.mimho-feed-tabs-v4 .mimho-feed-tab-v4.active::after {
  content: "" !important;
  position: absolute !important;
  left: 18% !important;
  right: 18% !important;
  bottom: 0 !important;
  height: 2px !important;
  border-radius: 99px 99px 0 0 !important;
  background: var(--accent) !important;
  box-shadow: 0 0 18px rgba(247,147,26,0.6) !important;
}

@media (max-width: 640px) {
  #mimhoFeedTabsV4,
  .mimho-feed-tabs-v4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  #mimhoFeedTabsV4 .mimho-feed-tab-v4,
  .mimho-feed-tabs-v4 .mimho-feed-tab-v4 {
    min-height: 50px !important;
    border-bottom: 1px solid var(--line) !important;
  }

  #mimhoFeedTabsV4 .mimho-feed-tab-v4:nth-child(2n),
  .mimho-feed-tabs-v4 .mimho-feed-tab-v4:nth-child(2n) {
    border-right: 0 !important;
  }

  #mimhoFeedTabsV4 .mimho-feed-tab-v4 small,
  .mimho-feed-tabs-v4 .mimho-feed-tab-v4 small {
    display: none !important;
  }
}


/* =========================================================
   MIMHO Ledger - Reputation V2 Profile Breakdown
   ========================================================= */

.profile-score-breakdown {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.012);
}

.profile-score-breakdown-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.profile-score-breakdown-head h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.profile-score-breakdown-head span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 8px;
  background: rgba(255,255,255,0.025);
}

.profile-score-breakdown-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.profile-score-breakdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 40px;
  padding: 10px 11px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.024);
}

.profile-score-breakdown-item span {
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.25;
}

.profile-score-breakdown-item strong {
  color: var(--accent-2);
  font-size: 0.88rem;
  white-space: nowrap;
}

.profile-score-breakdown-item.negative strong {
  color: #ff9b9b;
}

.profile-score-breakdown p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

@media (max-width: 640px) {
  .profile-score-breakdown-grid {
    grid-template-columns: 1fr;
  }

  .profile-score-breakdown-head {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* =========================================================
   MIMHO Ledger - Post Signal Badge V2 Native
   ========================================================= */

.post-card {
  position: relative;
}

.post-signal-badge-v2 {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 25px;
  max-width: 150px;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.045);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  backdrop-filter: blur(10px);
}

.post-signal-badge-v2.fresh {
  color: var(--muted);
  border-color: var(--line);
  background: rgba(255,255,255,0.035);
}

.post-signal-badge-v2.active {
  color: var(--text-soft);
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
}

.post-signal-badge-v2.trending {
  color: var(--accent-2);
  border-color: rgba(247,147,26,0.30);
  background: rgba(247,147,26,0.09);
}

.post-signal-badge-v2.high {
  color: var(--accent);
  border-color: rgba(247,147,26,0.46);
  background:
    linear-gradient(135deg, rgba(247,147,26,0.17), rgba(255,255,255,0.03));
  box-shadow: 0 0 20px rgba(247,147,26,0.18);
}

@media (max-width: 640px) {
  .post-signal-badge-v2 {
    top: 12px;
    right: 12px;
    max-width: 118px;
    font-size: 0.6rem;
    padding: 4px 7px;
  }
}


/* =========================================================
   MIMHO Ledger - Communities V2
   ========================================================= */

.communities-grid-v2 {
  display: grid;
  gap: 12px;
}

.community-card-v2 {
  display: block;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 20% 0%, rgba(247,147,26,0.055), transparent 32%),
    rgba(255,255,255,0.026);
  color: var(--text);
  text-decoration: none;
  transition: 160ms ease;
}

.community-card-v2:hover {
  border-color: var(--accent-line);
  background:
    radial-gradient(circle at 20% 0%, rgba(247,147,26,0.09), transparent 35%),
    rgba(255,255,255,0.04);
  transform: translateY(-1px);
}

.community-card-v2-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.community-rank-v2 {
  display: inline-flex;
  margin-bottom: 6px;
  min-height: 24px;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid var(--accent-line);
  color: var(--accent-2);
  background: rgba(247,147,26,0.075);
  font-size: 0.72rem;
  font-weight: 900;
}

.community-card-v2 h3 {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.15;
}

.community-card-v2 strong {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
}

.community-status-v2 {
  flex: 0 0 auto;
  max-width: 130px;
  text-align: center;
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  justify-content: center;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text-soft);
  background: rgba(255,255,255,0.035);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.community-card-v2 p {
  margin: 12px 0 0;
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.45;
}

.community-stats-v2 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 13px;
}

.community-stats-v2 div {
  min-width: 0;
  padding: 10px 8px;
  border-radius: 13px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.024);
}

.community-stats-v2 strong {
  margin: 0;
  color: var(--text);
  font-size: 0.94rem;
}

.community-stats-v2 span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
}

@media (max-width: 560px) {
  .community-card-v2-head {
    flex-direction: column;
  }

  .community-status-v2 {
    max-width: none;
  }

  .community-stats-v2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* =========================================================
   MIMHO Ledger - Security Alerts V1
   ========================================================= */

.security-alerts-panel {
  margin-bottom: 14px;
}

.security-alerts-desc-v1 {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.42;
}

.security-alert-list-v1 {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.security-alert-item-v1 {
  display: block;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.026);
  color: var(--text);
  text-decoration: none;
  transition: 160ms ease;
}

.security-alert-item-v1:hover {
  transform: translateY(-1px);
  border-color: var(--accent-line);
  background: rgba(247,147,26,0.052);
}

.security-alert-item-v1.critical {
  border-color: rgba(255,94,108,0.32);
  background: rgba(255,94,108,0.055);
}

.security-alert-item-v1.high {
  border-color: rgba(255,147,64,0.28);
  background: rgba(255,147,64,0.052);
}

.security-alert-head-v1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.security-alert-level-v1 {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.security-alert-level-v1.critical {
  color: #ffb3b3;
  border: 1px solid rgba(255,94,108,0.38);
  background: rgba(255,94,108,0.11);
}

.security-alert-level-v1.high {
  color: #ffd0a8;
  border: 1px solid rgba(255,147,64,0.34);
  background: rgba(255,147,64,0.10);
}

.security-alert-level-v1.watch {
  color: var(--accent-2);
  border: 1px solid rgba(247,147,26,0.30);
  background: rgba(247,147,26,0.08);
}

.security-alert-level-v1.info {
  color: var(--muted);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
}

.security-alert-head-v1 small {
  color: var(--muted);
  font-size: 0.72rem;
}

.security-alert-item-v1 strong {
  display: block;
  color: var(--text);
  font-size: 0.9rem;
}

.security-alert-item-v1 p {
  margin: 6px 0 0;
  color: var(--text-soft);
  font-size: 0.83rem;
  line-height: 1.42;
  overflow-wrap: anywhere;
}

.security-alert-tags-v1 {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 8px;
}

.security-alert-tags-v1 span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 4px 7px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255,255,255,0.028);
  font-size: 0.68rem;
  font-weight: 800;
}

.security-alert-empty-v1 {
  margin-top: 10px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
  background: rgba(255,255,255,0.024);
  font-size: 0.82rem;
  line-height: 1.42;
}

.security-alert-link-v1 {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 850;
  transition: 160ms ease;
}

.security-alert-link-v1:hover {
  color: var(--accent-2);
  border-color: var(--accent-line);
  background: rgba(247,147,26,0.055);
}


/* =========================================================
   MIMHO Ledger - Security Alerts Page V2
   ========================================================= */

.security-page-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.012);
}

.security-page-tabs button {
  min-height: 48px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 900;
  transition: 160ms ease;
}

.security-page-tabs button:last-child {
  border-right: 0;
}

.security-page-tabs button:hover {
  color: var(--text);
  background: rgba(255,255,255,0.035);
}

.security-page-tabs button.active {
  color: var(--text);
  background: rgba(247,147,26,0.055);
  box-shadow: inset 0 -2px 0 var(--accent);
}

.security-page-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.security-page-summary div {
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.026);
}

.security-page-summary strong {
  display: block;
  color: var(--text);
  font-size: 1.28rem;
  line-height: 1;
}

.security-page-summary span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
}

.security-page-list {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.security-page-alert-card {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 0%, rgba(247,147,26,0.055), transparent 34%),
    rgba(255,255,255,0.026);
}

.security-page-alert-card.critical {
  border-color: rgba(255,94,108,0.35);
  background:
    radial-gradient(circle at 20% 0%, rgba(255,94,108,0.10), transparent 36%),
    rgba(255,255,255,0.026);
}

.security-page-alert-card.high {
  border-color: rgba(255,147,64,0.32);
}

.security-page-alert-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}

.security-page-alert-top h3 {
  margin: 9px 0 0;
  color: var(--text);
  font-size: 1rem;
}

.security-page-alert-top a {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.8rem;
  overflow-wrap: anywhere;
}

.security-page-alert-top > strong {
  color: var(--accent-2);
  font-size: 1.15rem;
  white-space: nowrap;
}

.security-page-level {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.security-page-level.critical {
  color: #ffb3b3;
  border: 1px solid rgba(255,94,108,0.38);
  background: rgba(255,94,108,0.11);
}

.security-page-level.high {
  color: #ffd0a8;
  border: 1px solid rgba(255,147,64,0.34);
  background: rgba(255,147,64,0.10);
}

.security-page-level.watch {
  color: var(--accent-2);
  border: 1px solid rgba(247,147,26,0.30);
  background: rgba(247,147,26,0.08);
}

.security-page-level.info {
  color: var(--muted);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
}

.security-page-alert-card p {
  margin: 13px 0 0;
  color: var(--text-soft);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.security-page-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.security-page-tags span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
}

.security-page-alert-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.security-page-alert-actions a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 850;
  transition: 160ms ease;
}

.security-page-alert-actions a:hover {
  color: var(--accent-2);
  border-color: var(--accent-line);
  background: rgba(247,147,26,0.055);
}

@media (max-width: 720px) {
  .security-page-tabs,
  .security-page-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .security-page-alert-top {
    flex-direction: column;
  }
}


/* =========================================================
   MIMHO Ledger - Standard Mobile Nav 7 Items
   ========================================================= */

.mobile-nav {
  grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
}

.mobile-nav a {
  min-width: 0;
}

@media (max-width: 420px) {
  .mobile-nav a {
    font-size: 1rem;
    padding-left: 0;
    padding-right: 0;
  }
}


/* =========================================================
   MIMHO Ledger - Security Alerts V3 Actions
   ========================================================= */

.security-v3-card {
  position: relative;
}

.security-v3-action-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.security-v3-action-grid button {
  min-height: 42px;
  padding: 8px 9px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.026);
  color: var(--text-soft);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 850;
  transition: 160ms ease;
}

.security-v3-action-grid button:hover {
  color: var(--text);
  border-color: var(--accent-line);
  background: rgba(247,147,26,0.055);
}

.security-v3-action-grid button.active {
  color: var(--accent-2);
  border-color: rgba(247,147,26,0.35);
  background: rgba(247,147,26,0.09);
}

.security-v3-action-grid button.danger:hover,
.security-v3-action-grid button.danger.active {
  color: #ffb3b3;
  border-color: rgba(255,94,108,0.34);
  background: rgba(255,94,108,0.09);
}

.security-v3-action-grid button strong {
  display: block;
  margin-top: 4px;
  color: inherit;
  font-size: 0.92rem;
}

.security-evidence-form-v3 {
  margin-top: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.024);
}

.security-evidence-form-v3 textarea,
.security-evidence-form-v3 input {
  width: 100%;
  margin-bottom: 9px;
  padding: 11px 12px;
  border-radius: 13px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
  color: var(--text);
  outline: none;
}

.security-evidence-form-v3 textarea {
  resize: vertical;
  min-height: 96px;
}

.security-evidence-form-v3 textarea:focus,
.security-evidence-form-v3 input:focus {
  border-color: var(--accent-line);
  box-shadow: 0 0 0 3px rgba(247,147,26,0.08);
}

.security-evidence-list-v3 {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.security-evidence-item-v3 {
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(0,0,0,0.12);
}

.security-evidence-item-v3 strong {
  display: block;
  color: var(--text);
  font-size: 0.82rem;
}

.security-evidence-item-v3 p {
  margin: 6px 0 0;
  color: var(--text-soft);
  font-size: 0.84rem;
  line-height: 1.45;
}

.security-evidence-item-v3 a {
  display: block;
  margin-top: 6px;
  color: var(--accent-2);
  font-size: 0.8rem;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.security-evidence-empty-v3 {
  margin-top: 13px;
  padding: 10px 11px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.018);
  color: var(--muted);
  font-size: 0.82rem;
}

@media (max-width: 720px) {
  .security-v3-action-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .security-v3-action-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   MIMHO Ledger - Market Chips V1
   ========================================================= */

.post-market-chips-v1 {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 12px 0 4px;
}

.market-chip-v1 {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  max-width: 100%;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.032);
  color: var(--text-soft);
  font-size: 0.78rem;
  line-height: 1;
  white-space: nowrap;
}

.market-chip-v1 strong {
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.market-chip-v1 em {
  color: var(--text-soft);
  font-style: normal;
  font-weight: 850;
}

.market-chip-v1 b {
  font-weight: 950;
}

.market-chip-v1.up {
  border-color: rgba(33, 194, 139, 0.28);
  background: rgba(33, 194, 139, 0.07);
}

.market-chip-v1.up b {
  color: #73e6bd;
}

.market-chip-v1.down {
  border-color: rgba(255,94,108,0.28);
  background: rgba(255,94,108,0.07);
}

.market-chip-v1.down b {
  color: #ff9b9b;
}

.market-chip-v1.flat b,
.market-chip-v1.loading em {
  color: var(--muted);
}

.market-chip-v1.pending {
  border-color: rgba(247,147,26,0.25);
  background: rgba(247,147,26,0.075);
}

.market-chip-v1.pending em {
  color: var(--accent-2);
}

.post-market-chips-v1.market-error {
  display: none;
}

@media (max-width: 560px) {
  .market-chip-v1 {
    width: 100%;
    justify-content: space-between;
    border-radius: 14px;
  }
}


/* =========================================================
   MIMHO Ledger - Trending Tokens V1
   ========================================================= */

.trending-tokens-panel {
  margin-bottom: 14px;
}

.trending-tokens-desc-v1 {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.42;
}

.trending-token-list-v1 {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.trending-token-item-v1 {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.026);
  color: var(--text);
  text-decoration: none;
  transition: 160ms ease;
}

.trending-token-item-v1:hover {
  border-color: var(--accent-line);
  background: rgba(247,147,26,0.052);
  transform: translateY(-1px);
}

.trending-token-rank-v1 {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
  color: var(--accent-2);
  font-size: 0.76rem;
  font-weight: 950;
}

.trending-token-main-v1 {
  min-width: 0;
}

.trending-token-main-v1 strong {
  display: block;
  color: var(--text);
  font-size: 0.86rem;
  line-height: 1.1;
}

.trending-token-main-v1 small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.2;
}

.trending-token-price-v1 {
  text-align: right;
  min-width: 78px;
}

.trending-token-price-v1 strong {
  display: block;
  color: var(--text-soft);
  font-size: 0.8rem;
  line-height: 1.1;
}

.trending-token-price-v1 em {
  display: block;
  margin-top: 5px;
  font-style: normal;
  font-size: 0.74rem;
  font-weight: 950;
}

.trending-token-item-v1.up .trending-token-price-v1 em {
  color: #73e6bd;
}

.trending-token-item-v1.down .trending-token-price-v1 em {
  color: #ff9b9b;
}

.trending-token-item-v1.pending .trending-token-price-v1 strong {
  color: var(--accent-2);
}

.trending-token-empty-v1 {
  margin-top: 10px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
  background: rgba(255,255,255,0.024);
  font-size: 0.82rem;
  line-height: 1.42;
}

@media (max-width: 560px) {
  .trending-token-item-v1 {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .trending-token-price-v1 {
    grid-column: 1 / -1;
    text-align: left;
    padding-left: 44px;
  }
}


/* =========================================================
   MIMHO Ledger - Market Token Page V1
   ========================================================= */

.market-token-hero-v1 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 0%, rgba(247,147,26,0.11), transparent 36%),
    rgba(255,255,255,0.016);
}

.market-token-kicker-v1 {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid var(--accent-line);
  background: rgba(247,147,26,0.075);
  color: var(--accent-2);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.market-token-hero-v1 h1 {
  margin: 12px 0 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3rem);
  letter-spacing: -0.04em;
}

.market-token-hero-v1 p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.market-token-pricebox-v1 {
  min-width: 160px;
  text-align: right;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.026);
}

.market-token-pricebox-v1 strong {
  display: block;
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1.1;
}

.market-token-pricebox-v1 span {
  display: block;
  margin-top: 8px;
  font-weight: 950;
}

.market-token-hero-v1.up .market-token-pricebox-v1 span {
  color: #73e6bd;
}

.market-token-hero-v1.down .market-token-pricebox-v1 span {
  color: #ff9b9b;
}

.market-token-hero-v1.pending .market-token-pricebox-v1 strong {
  color: var(--accent-2);
}

.market-token-summary-v1 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.market-token-summary-v1 div {
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.026);
}

.market-token-summary-v1 strong {
  display: block;
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1;
}

.market-token-summary-v1 span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
}

.market-token-section-v1 {
  border-bottom: 1px solid var(--line);
}

.market-token-section-v1 h2 {
  margin: 0;
  padding: 17px 18px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}

.market-token-post-list-v1 {
  display: grid;
}

.market-token-alert-list-v1 {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.market-token-alert-v1 {
  display: block;
  padding: 13px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.026);
  color: var(--text);
  text-decoration: none;
}

.market-token-alert-v1.critical {
  border-color: rgba(255,94,108,0.35);
  background: rgba(255,94,108,0.06);
}

.market-token-alert-v1.high {
  border-color: rgba(255,147,64,0.32);
}

.market-token-alert-v1 strong {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid var(--accent-line);
  color: var(--accent-2);
  background: rgba(247,147,26,0.075);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.market-token-alert-v1 p {
  margin: 10px 0 0;
  color: var(--text-soft);
  line-height: 1.45;
}

.market-token-alert-v1 small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.market-chip-v1 {
  text-decoration: none !important;
}

.sidebar-right .trending-card a {
  color: var(--accent-2);
  text-decoration: none;
}

.sidebar-right .trending-card a:hover {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .market-token-hero-v1 {
    flex-direction: column;
  }

  .market-token-pricebox-v1 {
    width: 100%;
    text-align: left;
  }

  .market-token-summary-v1 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 440px) {
  .market-token-summary-v1 {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   MIMHO Ledger - Promote Modal + Home Promoted V1
   ========================================================= */

.mimho-promote-modal-overlay-v1 {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(10px);
}

.mimho-promote-modal-overlay-v1.active {
  display: flex;
}

.mimho-promote-modal-v1 {
  width: min(480px, 100%);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 0%, rgba(247,147,26,0.14), transparent 36%),
    rgba(12, 16, 23, 0.98);
  box-shadow: 0 24px 80px rgba(0,0,0,0.48);
  overflow: hidden;
}

.mimho-promote-modal-head-v1 {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.mimho-promote-kicker-v1 {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid var(--accent-line);
  color: var(--accent-2);
  background: rgba(247,147,26,0.075);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mimho-promote-modal-head-v1 h3 {
  margin: 12px 0 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.mimho-promote-modal-head-v1 p {
  margin: 8px 0 0;
  color: var(--text-soft);
  line-height: 1.45;
}

#mimhoPromoteModalCloseV1 {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
  color: var(--text-soft);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

#mimhoPromoteModalCloseV1:hover {
  color: var(--text);
  border-color: var(--accent-line);
}

.mimho-promote-modal-info-v1 {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.mimho-promote-modal-info-v1 div {
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.mimho-promote-modal-info-v1 strong {
  color: var(--accent-2);
  font-size: 2rem;
  line-height: 1;
}

.mimho-promote-modal-info-v1 span {
  color: var(--muted);
  font-weight: 800;
}

.mimho-promote-modal-info-v1 p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.mimho-promote-modal-actions-v1 {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding: 16px 20px 20px;
}

.mimho-promote-modal-actions-v1 button {
  min-height: 42px;
  border-radius: 999px;
  padding: 10px 15px;
  cursor: pointer;
  font-weight: 900;
}

.mimho-promote-cancel-v1 {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
  color: var(--text-soft);
}

.mimho-promote-confirm-v1 {
  border: 1px solid var(--accent-line);
  background: rgba(247,147,26,0.16);
  color: var(--text);
}

.mimho-promote-cancel-v1:hover,
.mimho-promote-confirm-v1:hover {
  transform: translateY(-1px);
}

.home-promoted-posts-v1 {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 0%, rgba(247,147,26,0.08), transparent 35%),
    rgba(255,255,255,0.012);
}

.home-promoted-title-v1 {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: baseline;
  margin-bottom: 10px;
}

.home-promoted-title-v1 strong {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-promoted-title-v1 span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.home-promoted-list-v1 {
  display: grid;
  gap: 8px;
}

.home-promoted-item-v1 {
  display: block;
  padding: 13px;
  border: 1px solid var(--accent-line);
  border-radius: 17px;
  background: rgba(247,147,26,0.06);
  color: var(--text);
  text-decoration: none;
  transition: 160ms ease;
}

.home-promoted-item-v1:hover {
  background: rgba(247,147,26,0.095);
  transform: translateY(-1px);
}

.home-promoted-item-head-v1 {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.home-promoted-item-head-v1 span {
  display: inline-flex;
  min-height: 23px;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid var(--accent-line);
  color: var(--accent-2);
  background: rgba(247,147,26,0.085);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-promoted-item-head-v1 small {
  color: var(--muted);
  font-size: 0.74rem;
}

.home-promoted-item-v1 strong {
  color: var(--text);
  font-size: 0.92rem;
}

.home-promoted-item-v1 p {
  margin: 7px 0 0;
  color: var(--text-soft);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

@media (max-width: 560px) {
  .mimho-promote-modal-actions-v1 {
    flex-direction: column;
  }

  .home-promoted-title-v1,
  .home-promoted-item-head-v1 {
    flex-direction: column;
  }
}


/* =========================================================
   MIMHO Ledger - Daily Market Pulse V1
   ========================================================= */

.pulse-hero-v1 {
  padding: 24px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 0%, rgba(247,147,26,0.12), transparent 36%),
    rgba(255,255,255,0.014);
}

.pulse-kicker-v1 {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--accent-line);
  color: var(--accent-2);
  background: rgba(247,147,26,0.075);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pulse-hero-v1 h1 {
  margin: 14px 0 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  letter-spacing: -0.05em;
}

.pulse-hero-v1 p {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--text-soft);
  line-height: 1.5;
}

.pulse-hero-v1 small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.82rem;
}

.pulse-summary-v1 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.pulse-summary-v1 div {
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.026);
}

.pulse-summary-v1 strong {
  display: block;
  color: var(--text);
  font-size: 1.22rem;
  line-height: 1;
}

.pulse-summary-v1 span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
}

.pulse-section-v1 {
  border-bottom: 1px solid var(--line);
}

.pulse-section-v1 h2 {
  margin: 0;
  padding: 17px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pulse-token-grid-v1,
.pulse-community-grid-v1 {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.pulse-token-card-v1,
.pulse-community-card-v1,
.pulse-post-card-v1,
.pulse-security-card-v1 {
  display: block;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255,255,255,0.026);
  color: var(--text);
  text-decoration: none;
  transition: 160ms ease;
}

.pulse-token-card-v1:hover,
.pulse-community-card-v1:hover,
.pulse-post-card-v1:hover,
.pulse-security-card-v1:hover {
  transform: translateY(-1px);
  border-color: var(--accent-line);
  background: rgba(247,147,26,0.055);
}

.pulse-token-card-v1 > span,
.pulse-post-card-v1 > span,
.pulse-security-card-v1 > span,
.pulse-community-card-v1 > span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid var(--accent-line);
  color: var(--accent-2);
  background: rgba(247,147,26,0.075);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pulse-token-card-v1 strong,
.pulse-community-card-v1 strong,
.pulse-post-card-v1 strong {
  display: block;
  margin-top: 9px;
  color: var(--text);
  font-size: 0.96rem;
}

.pulse-token-card-v1 p,
.pulse-community-card-v1 p,
.pulse-post-card-v1 p,
.pulse-security-card-v1 p {
  margin: 7px 0 0;
  color: var(--text-soft);
  line-height: 1.45;
}

.pulse-token-card-v1 div {
  margin-top: 10px;
}

.pulse-token-card-v1 b {
  color: var(--text);
}

.pulse-token-card-v1 em {
  margin-left: 8px;
  font-style: normal;
  font-weight: 950;
}

.pulse-token-card-v1.up em {
  color: #73e6bd;
}

.pulse-token-card-v1.down em {
  color: #ff9b9b;
}

.pulse-token-card-v1.pending b {
  color: var(--accent-2);
}

.pulse-post-list-v1,
.pulse-security-list-v1 {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.pulse-post-card-v1 small,
.pulse-security-card-v1 small,
.pulse-community-card-v1 small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
}

.pulse-security-card-v1.critical {
  border-color: rgba(255,94,108,0.35);
  background: rgba(255,94,108,0.055);
}

.pulse-security-card-v1.high {
  border-color: rgba(255,147,64,0.32);
}

.daily-pulse-sidebar-card-v1 {
  margin-bottom: 14px;
}

.daily-pulse-sidebar-card-v1 p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.daily-pulse-sidebar-card-v1 a {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  padding: 9px 11px;
  border: 1px solid var(--accent-line);
  border-radius: 999px;
  color: var(--accent-2);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 900;
  background: rgba(247,147,26,0.07);
}

.daily-pulse-sidebar-card-v1 a:hover {
  background: rgba(247,147,26,0.12);
}

@media (max-width: 720px) {
  .pulse-summary-v1 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 440px) {
  .pulse-summary-v1 {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   MIMHO Ledger - Navigation Premium V2
   ========================================================= */

.nav-menu-v2 {
  gap: 5px;
}

.nav-menu-v2 a {
  position: relative;
  overflow: hidden;
}

.nav-menu-v2 a::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247,147,26,0.11), transparent 56%);
  opacity: 0;
  transition: 160ms ease;
  pointer-events: none;
}

.nav-menu-v2 a:hover::before {
  opacity: 1;
}

.nav-menu-v2 a .icon {
  width: 24px;
  min-width: 24px;
  display: inline-flex;
  justify-content: center;
  color: var(--accent-2);
  font-weight: 950;
}

.nav-menu-v2 a[href="/ledger/market/"] .icon,
.nav-menu-v2 a[href="/ledger/pulse/"] .icon,
.nav-menu-v2 a[href="/ledger/security/"] .icon {
  color: var(--accent);
}

.nav-menu-v2 a.active,
.nav-menu-v2 a[aria-current="page"] {
  color: var(--text);
  border-color: var(--accent-line);
  background: rgba(247,147,26,0.075);
}

.mobile-nav-v2 {
  display: flex !important;
  grid-template-columns: none !important;
  justify-content: flex-start !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scrollbar-width: none;
  gap: 0;
  padding-left: max(8px, env(safe-area-inset-left));
  padding-right: max(8px, env(safe-area-inset-right));
}

.mobile-nav-v2::-webkit-scrollbar {
  display: none;
}

.mobile-nav-v2 a {
  flex: 0 0 48px;
  min-width: 48px;
  height: 48px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 1.06rem;
  font-weight: 950;
  border-radius: 14px;
}

.mobile-nav-v2 a:hover,
.mobile-nav-v2 a.active,
.mobile-nav-v2 a[aria-current="page"] {
  color: var(--accent-2);
  background: rgba(247,147,26,0.075);
}

.mobile-nav-v2 a[href="/ledger/write/"] {
  color: var(--text);
  background: rgba(247,147,26,0.13);
  border: 1px solid var(--accent-line);
}

@media (min-width: 901px) {
  .mobile-nav-v2 {
    display: none !important;
  }
}

@media (max-width: 420px) {
  .mobile-nav-v2 a {
    flex-basis: 44px;
    min-width: 44px;
    height: 46px;
    font-size: 1rem;
  }
}


/* =========================================================
   MIMHO Ledger - Delete Modal + Video Autoplay V1
   ========================================================= */

.mimho-delete-modal-overlay-v1 {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.70);
  backdrop-filter: blur(10px);
}

.mimho-delete-modal-overlay-v1.active {
  display: flex;
}

.mimho-delete-modal-v1 {
  width: min(500px, 100%);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,94,108,0.11), transparent 34%),
    rgba(12, 16, 23, 0.98);
  box-shadow: 0 24px 80px rgba(0,0,0,0.48);
  overflow: hidden;
}

.mimho-delete-modal-head-v1 {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.mimho-delete-kicker-v1 {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255,94,108,0.34);
  color: #ffb3b3;
  background: rgba(255,94,108,0.09);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mimho-delete-modal-head-v1 h3 {
  margin: 12px 0 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.mimho-delete-modal-head-v1 p {
  margin: 8px 0 0;
  color: var(--text-soft);
  line-height: 1.45;
}

#mimhoDeleteModalCloseV1 {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
  color: var(--text-soft);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

#mimhoDeleteModalCloseV1:hover {
  color: var(--text);
  border-color: rgba(255,94,108,0.34);
}

.mimho-delete-modal-body-v1 {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.mimho-delete-modal-body-v1 label {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  margin-bottom: 8px;
}

#mimhoDeleteReasonV1 {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
  color: var(--text);
  outline: none;
}

#mimhoDeleteReasonV1:focus {
  border-color: rgba(255,94,108,0.34);
  box-shadow: 0 0 0 3px rgba(255,94,108,0.08);
}

.mimho-delete-warning-v1 {
  margin-top: 12px;
  padding: 11px;
  border: 1px solid rgba(255,94,108,0.22);
  border-radius: 14px;
  background: rgba(255,94,108,0.055);
}

.mimho-delete-warning-v1 strong {
  color: #ffb3b3;
  font-size: 0.82rem;
  line-height: 1.35;
}

.mimho-delete-modal-actions-v1 {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding: 16px 20px 20px;
}

.mimho-delete-modal-actions-v1 button {
  min-height: 42px;
  border-radius: 999px;
  padding: 10px 15px;
  cursor: pointer;
  font-weight: 900;
}

.mimho-delete-cancel-v1 {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
  color: var(--text-soft);
}

.mimho-delete-confirm-v1 {
  border: 1px solid rgba(255,94,108,0.38);
  background: rgba(255,94,108,0.12);
  color: #ffb3b3;
}

.mimho-delete-cancel-v1:hover,
.mimho-delete-confirm-v1:hover {
  transform: translateY(-1px);
}

.post-deleting-v1 {
  opacity: 0;
  transform: translateY(-8px);
  transition: 180ms ease;
}

.post-card video,
video.post-video {
  width: 100%;
  max-height: 540px;
  border-radius: 16px;
  background: #05070b;
  object-fit: contain;
}

@media (max-width: 560px) {
  .mimho-delete-modal-actions-v1 {
    flex-direction: column;
  }

  .mimho-delete-modal-v1 {
    border-radius: 20px;
  }
}


/* =========================================================
   MIMHO Ledger - Delete + Copy Final V4
   ========================================================= */

.mimho-delete-modal-overlay-v4 {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.mimho-delete-modal-overlay-v4.active {
  display: flex;
}

.mimho-delete-modal-v4 {
  width: min(500px, 100%);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,94,108,0.11), transparent 34%),
    rgba(12, 16, 23, 0.98);
  box-shadow: 0 24px 80px rgba(0,0,0,0.48);
  overflow: hidden;
}

.mimho-delete-modal-head-v4 {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.mimho-delete-kicker-v4 {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255,94,108,0.34);
  color: #ffb3b3;
  background: rgba(255,94,108,0.09);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mimho-delete-modal-head-v4 h3 {
  margin: 12px 0 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.mimho-delete-modal-head-v4 p {
  margin: 8px 0 0;
  color: var(--text-soft);
  line-height: 1.45;
}

#mimhoDeleteModalCloseV4 {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
  color: var(--text-soft);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

#mimhoDeleteModalCloseV4:hover {
  color: var(--text);
  border-color: rgba(255,94,108,0.34);
}

.mimho-delete-modal-body-v4 {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.mimho-delete-modal-body-v4 label {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  margin-bottom: 8px;
}

#mimhoDeleteReasonV4 {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
  color: var(--text);
  outline: none;
}

#mimhoDeleteReasonV4:focus {
  border-color: rgba(255,94,108,0.34);
  box-shadow: 0 0 0 3px rgba(255,94,108,0.08);
}

.mimho-delete-warning-v4 {
  margin-top: 12px;
  padding: 11px;
  border: 1px solid rgba(255,94,108,0.22);
  border-radius: 14px;
  background: rgba(255,94,108,0.055);
}

.mimho-delete-warning-v4 strong {
  color: #ffb3b3;
  font-size: 0.82rem;
  line-height: 1.35;
}

.mimho-delete-modal-actions-v4 {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding: 16px 20px 20px;
}

.mimho-delete-modal-actions-v4 button {
  min-height: 42px;
  border-radius: 999px;
  padding: 10px 15px;
  cursor: pointer;
  font-weight: 900;
}

.mimho-delete-cancel-v4 {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
  color: var(--text-soft);
}

.mimho-delete-confirm-v4 {
  border: 1px solid rgba(255,94,108,0.38);
  background: rgba(255,94,108,0.12);
  color: #ffb3b3;
}

.mimho-delete-cancel-v4:hover,
.mimho-delete-confirm-v4:hover {
  transform: translateY(-1px);
}

.post-deleting-v4 {
  opacity: 0;
  transform: translateY(-8px);
  transition: 180ms ease;
}

@media (max-width: 560px) {
  .mimho-delete-modal-actions-v4 {
    flex-direction: column;
  }

  .mimho-delete-modal-v4 {
    border-radius: 20px;
  }
}


/* =========================================================
   MIMHO Ledger - Delete Menu Only V5
   ========================================================= */

.mimho-delete-modal-overlay-v5 {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.mimho-delete-modal-overlay-v5.active {
  display: flex;
}

.mimho-delete-modal-v5 {
  width: min(500px, 100%);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,94,108,0.11), transparent 34%),
    rgba(12, 16, 23, 0.98);
  box-shadow: 0 24px 80px rgba(0,0,0,0.48);
  overflow: hidden;
}

.mimho-delete-modal-head-v5 {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.mimho-delete-kicker-v5 {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255,94,108,0.34);
  color: #ffb3b3;
  background: rgba(255,94,108,0.09);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mimho-delete-modal-head-v5 h3 {
  margin: 12px 0 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.mimho-delete-modal-head-v5 p {
  margin: 8px 0 0;
  color: var(--text-soft);
  line-height: 1.45;
}

#mimhoDeleteModalCloseV5 {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
  color: var(--text-soft);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

#mimhoDeleteModalCloseV5:hover {
  color: var(--text);
  border-color: rgba(255,94,108,0.34);
}

.mimho-delete-modal-body-v5 {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.mimho-delete-modal-body-v5 label {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  margin-bottom: 8px;
}

#mimhoDeleteReasonV5 {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
  color: var(--text);
  outline: none;
}

#mimhoDeleteReasonV5:focus {
  border-color: rgba(255,94,108,0.34);
  box-shadow: 0 0 0 3px rgba(255,94,108,0.08);
}

.mimho-delete-warning-v5 {
  margin-top: 12px;
  padding: 11px;
  border: 1px solid rgba(255,94,108,0.22);
  border-radius: 14px;
  background: rgba(255,94,108,0.055);
}

.mimho-delete-warning-v5 strong {
  color: #ffb3b3;
  font-size: 0.82rem;
  line-height: 1.35;
}

.mimho-delete-modal-actions-v5 {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding: 16px 20px 20px;
}

.mimho-delete-modal-actions-v5 button {
  min-height: 42px;
  border-radius: 999px;
  padding: 10px 15px;
  cursor: pointer;
  font-weight: 900;
}

.mimho-delete-cancel-v5 {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
  color: var(--text-soft);
}

.mimho-delete-confirm-v5 {
  border: 1px solid rgba(255,94,108,0.38);
  background: rgba(255,94,108,0.12);
  color: #ffb3b3;
}

.mimho-delete-cancel-v5:hover,
.mimho-delete-confirm-v5:hover {
  transform: translateY(-1px);
}

.post-deleting-v5 {
  opacity: 0;
  transform: translateY(-8px);
  transition: 180ms ease;
}

@media (max-width: 560px) {
  .mimho-delete-modal-actions-v5 {
    flex-direction: column;
  }

  .mimho-delete-modal-v5 {
    border-radius: 20px;
  }
}


/* =========================================================
   MIMHO Ledger - Delete Original Modal V6
   ========================================================= */

.mimho-delete-modal-overlay-v6 {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.mimho-delete-modal-overlay-v6.active {
  display: flex;
}

.mimho-delete-modal-v6 {
  width: min(500px, 100%);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,94,108,0.11), transparent 34%),
    rgba(12, 16, 23, 0.98);
  box-shadow: 0 24px 80px rgba(0,0,0,0.48);
  overflow: hidden;
}

.mimho-delete-modal-head-v6 {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.mimho-delete-kicker-v6 {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255,94,108,0.34);
  color: #ffb3b3;
  background: rgba(255,94,108,0.09);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mimho-delete-modal-head-v6 h3 {
  margin: 12px 0 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.mimho-delete-modal-head-v6 p {
  margin: 8px 0 0;
  color: var(--text-soft);
  line-height: 1.45;
}

#mimhoDeleteModalCloseOriginalV6 {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
  color: var(--text-soft);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

#mimhoDeleteModalCloseOriginalV6:hover {
  color: var(--text);
  border-color: rgba(255,94,108,0.34);
}

.mimho-delete-modal-body-v6 {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.mimho-delete-modal-body-v6 label {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  margin-bottom: 8px;
}

#mimhoDeleteReasonOriginalV6 {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
  color: var(--text);
  outline: none;
}

#mimhoDeleteReasonOriginalV6:focus {
  border-color: rgba(255,94,108,0.34);
  box-shadow: 0 0 0 3px rgba(255,94,108,0.08);
}

.mimho-delete-warning-v6 {
  margin-top: 12px;
  padding: 11px;
  border: 1px solid rgba(255,94,108,0.22);
  border-radius: 14px;
  background: rgba(255,94,108,0.055);
}

.mimho-delete-warning-v6 strong {
  color: #ffb3b3;
  font-size: 0.82rem;
  line-height: 1.35;
}

.mimho-delete-modal-actions-v6 {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding: 16px 20px 20px;
}

.mimho-delete-modal-actions-v6 button {
  min-height: 42px;
  border-radius: 999px;
  padding: 10px 15px;
  cursor: pointer;
  font-weight: 900;
}

.mimho-delete-cancel-v6 {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
  color: var(--text-soft);
}

.mimho-delete-confirm-v6 {
  border: 1px solid rgba(255,94,108,0.38);
  background: rgba(255,94,108,0.12);
  color: #ffb3b3;
}

.mimho-delete-cancel-v6:hover,
.mimho-delete-confirm-v6:hover {
  transform: translateY(-1px);
}

.post-deleting-v6 {
  opacity: 0;
  transform: translateY(-8px);
  transition: 180ms ease;
}

.post-card video,
video.post-video {
  width: 100%;
  max-height: 540px;
  border-radius: 16px;
  background: #05070b;
  object-fit: contain;
}

@media (max-width: 560px) {
  .mimho-delete-modal-actions-v6 {
    flex-direction: column;
  }

  .mimho-delete-modal-v6 {
    border-radius: 20px;
  }
}


/* =========================================================
   MIMHO Ledger - Delete Modal Original V7
   ========================================================= */

.mimho-delete-modal-overlay-v7 {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.mimho-delete-modal-overlay-v7.active {
  display: flex;
}

.mimho-delete-modal-v7 {
  width: min(500px, 100%);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,94,108,0.11), transparent 34%),
    rgba(12, 16, 23, 0.98);
  box-shadow: 0 24px 80px rgba(0,0,0,0.48);
  overflow: hidden;
}

.mimho-delete-modal-head-v7 {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.mimho-delete-kicker-v7 {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255,94,108,0.34);
  color: #ffb3b3;
  background: rgba(255,94,108,0.09);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mimho-delete-modal-head-v7 h3 {
  margin: 12px 0 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.mimho-delete-modal-head-v7 p {
  margin: 8px 0 0;
  color: var(--text-soft);
  line-height: 1.45;
}

#mimhoDeleteModalCloseV7 {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
  color: var(--text-soft);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

#mimhoDeleteModalCloseV7:hover {
  color: var(--text);
  border-color: rgba(255,94,108,0.34);
}

.mimho-delete-modal-body-v7 {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.mimho-delete-modal-body-v7 label {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  margin-bottom: 8px;
}

#mimhoDeleteReasonV7 {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
  color: var(--text);
  outline: none;
}

#mimhoDeleteReasonV7:focus {
  border-color: rgba(255,94,108,0.34);
  box-shadow: 0 0 0 3px rgba(255,94,108,0.08);
}

.mimho-delete-warning-v7 {
  margin-top: 12px;
  padding: 11px;
  border: 1px solid rgba(255,94,108,0.22);
  border-radius: 14px;
  background: rgba(255,94,108,0.055);
}

.mimho-delete-warning-v7 strong {
  color: #ffb3b3;
  font-size: 0.82rem;
  line-height: 1.35;
}

.mimho-delete-modal-actions-v7 {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding: 16px 20px 20px;
}

.mimho-delete-modal-actions-v7 button {
  min-height: 42px;
  border-radius: 999px;
  padding: 10px 15px;
  cursor: pointer;
  font-weight: 900;
}

.mimho-delete-cancel-v7 {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
  color: var(--text-soft);
}

.mimho-delete-confirm-v7 {
  border: 1px solid rgba(255,94,108,0.38);
  background: rgba(255,94,108,0.12);
  color: #ffb3b3;
}

.mimho-delete-cancel-v7:hover,
.mimho-delete-confirm-v7:hover {
  transform: translateY(-1px);
}

.post-deleting-v7 {
  opacity: 0;
  transform: translateY(-8px);
  transition: 180ms ease;
}

@media (max-width: 560px) {
  .mimho-delete-modal-actions-v7 {
    flex-direction: column;
  }

  .mimho-delete-modal-v7 {
    border-radius: 20px;
  }
}


/* =========================================================
   MIMHO Ledger - Delete Modal Original V8
   ========================================================= */

.mimho-delete-modal-overlay-v8 {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.mimho-delete-modal-overlay-v8.active {
  display: flex;
}

.mimho-delete-modal-v8 {
  width: min(500px, 100%);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,94,108,0.11), transparent 34%),
    rgba(12, 16, 23, 0.98);
  box-shadow: 0 24px 80px rgba(0,0,0,0.48);
  overflow: hidden;
}

.mimho-delete-modal-head-v8 {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.mimho-delete-kicker-v8 {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255,94,108,0.34);
  color: #ffb3b3;
  background: rgba(255,94,108,0.09);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mimho-delete-modal-head-v8 h3 {
  margin: 12px 0 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.mimho-delete-modal-head-v8 p {
  margin: 8px 0 0;
  color: var(--text-soft);
  line-height: 1.45;
}

#mimhoDeleteModalCloseV8 {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
  color: var(--text-soft);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

#mimhoDeleteModalCloseV8:hover {
  color: var(--text);
  border-color: rgba(255,94,108,0.34);
}

.mimho-delete-modal-body-v8 {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.mimho-delete-modal-body-v8 label {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  margin-bottom: 8px;
}

#mimhoDeleteReasonV8 {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
  color: var(--text);
  outline: none;
}

#mimhoDeleteReasonV8:focus {
  border-color: rgba(255,94,108,0.34);
  box-shadow: 0 0 0 3px rgba(255,94,108,0.08);
}

.mimho-delete-warning-v8 {
  margin-top: 12px;
  padding: 11px;
  border: 1px solid rgba(255,94,108,0.22);
  border-radius: 14px;
  background: rgba(255,94,108,0.055);
}

.mimho-delete-warning-v8 strong {
  color: #ffb3b3;
  font-size: 0.82rem;
  line-height: 1.35;
}

.mimho-delete-modal-actions-v8 {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding: 16px 20px 20px;
}

.mimho-delete-modal-actions-v8 button {
  min-height: 42px;
  border-radius: 999px;
  padding: 10px 15px;
  cursor: pointer;
  font-weight: 900;
}

.mimho-delete-cancel-v8 {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
  color: var(--text-soft);
}

.mimho-delete-confirm-v8 {
  border: 1px solid rgba(255,94,108,0.38);
  background: rgba(255,94,108,0.12);
  color: #ffb3b3;
}

.post-deleting-v8 {
  opacity: 0;
  transform: translateY(-8px);
  transition: 180ms ease;
}

@media (max-width: 560px) {
  .mimho-delete-modal-actions-v8 {
    flex-direction: column;
  }

  .mimho-delete-modal-v8 {
    border-radius: 20px;
  }
}


/* =========================================================
   MIMHO Ledger - Onboarding V1
   ========================================================= */

.ledger-onboarding-hero-v1 {
  padding: 24px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 0%, rgba(247,147,26,0.13), transparent 36%),
    rgba(255,255,255,0.014);
}

.ledger-onboarding-kicker-v1 {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--accent-line);
  color: var(--accent-2);
  background: rgba(247,147,26,0.075);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ledger-onboarding-hero-v1 h1 {
  margin: 14px 0 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 3.1rem);
  letter-spacing: -0.05em;
}

.ledger-onboarding-hero-v1 p {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--text-soft);
  line-height: 1.5;
}

.ledger-onboarding-complete-v1 {
  margin-top: 14px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(33,194,139,0.28);
  background: rgba(33,194,139,0.07);
  color: #73e6bd;
}

.ledger-onboarding-steps-v1 {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.ledger-onboarding-step-v1 {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.024);
}

.ledger-onboarding-step-v1 > span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255,255,255,0.035);
  font-weight: 950;
}

.ledger-onboarding-step-v1.done > span {
  color: #73e6bd;
  border-color: rgba(33,194,139,0.28);
  background: rgba(33,194,139,0.08);
}

.ledger-onboarding-step-v1 strong {
  display: block;
  color: var(--text);
  font-size: 0.95rem;
}

.ledger-onboarding-step-v1 p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.42;
}

.ledger-onboarding-step-v1 button,
.ledger-onboarding-step-v1 a,
.ledger-onboarding-actions-v1 button,
.ledger-onboarding-actions-v1 a,
.ledger-onboarding-sidebar-card-v1 a,
.ledger-onboarding-modal-actions-v1 a,
.ledger-onboarding-modal-actions-v1 button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid var(--accent-line);
  background: rgba(247,147,26,0.09);
  color: var(--accent-2);
  text-decoration: none;
  cursor: pointer;
  font-weight: 900;
  font-size: 0.82rem;
}

.ledger-onboarding-step-v1 button:hover,
.ledger-onboarding-step-v1 a:hover,
.ledger-onboarding-actions-v1 button:hover,
.ledger-onboarding-actions-v1 a:hover,
.ledger-onboarding-sidebar-card-v1 a:hover,
.ledger-onboarding-modal-actions-v1 a:hover,
.ledger-onboarding-modal-actions-v1 button:hover {
  background: rgba(247,147,26,0.14);
  transform: translateY(-1px);
}

.ledger-onboarding-actions-v1 {
  display: flex;
  gap: 10px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.ledger-onboarding-sidebar-card-v1 {
  margin-bottom: 14px;
}

.ledger-onboarding-sidebar-card-v1 p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.ledger-onboarding-sidebar-card-v1 a {
  width: 100%;
  margin-top: 10px;
}

.ledger-onboarding-modal-overlay-v1 {
  position: fixed;
  inset: 0;
  z-index: 999998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0,0,0,0.66);
  backdrop-filter: blur(10px);
}

.ledger-onboarding-modal-v1 {
  width: min(760px, 100%);
  max-height: min(86vh, 820px);
  overflow: auto;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 0%, rgba(247,147,26,0.14), transparent 34%),
    rgba(12,16,23,0.98);
  box-shadow: 0 24px 80px rgba(0,0,0,0.48);
}

.ledger-onboarding-modal-head-v1 {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.ledger-onboarding-modal-head-v1 h3 {
  margin: 12px 0 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.ledger-onboarding-modal-head-v1 p {
  margin: 8px 0 0;
  color: var(--text-soft);
}

.ledger-onboarding-modal-head-v1 > button {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
  color: var(--text-soft);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

.ledger-onboarding-modal-actions-v1 {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding: 0 16px 16px;
}

.ledger-onboarding-modal-actions-v1 button {
  color: var(--text-soft);
  background: rgba(255,255,255,0.035);
  border-color: var(--line);
}

@media (max-width: 720px) {
  .ledger-onboarding-step-v1 {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .ledger-onboarding-step-v1 button,
  .ledger-onboarding-step-v1 a {
    grid-column: 1 / -1;
    width: 100%;
  }

  .ledger-onboarding-actions-v1,
  .ledger-onboarding-modal-actions-v1 {
    flex-direction: column;
  }
}


/* =========================================================
   MIMHO Ledger - Threaded Comments V1
   ========================================================= */

.threaded-comments-v1 {
  display: grid;
  gap: 8px;
}

.threaded-comments-v1 .comment-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.024);
  padding: 10px;
}

.threaded-comments-v1 .comment-main-v1 strong {
  color: var(--text);
  font-size: 0.84rem;
}

.threaded-comments-v1 .comment-main-v1 p {
  margin: 5px 0 0;
  color: var(--text-soft);
  line-height: 1.42;
}

.comment-reply-btn-v1 {
  margin-top: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.035);
  color: var(--muted);
  padding: 5px 9px;
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 850;
}

.comment-reply-btn-v1:hover {
  border-color: var(--accent-line);
  color: var(--accent-2);
  background: rgba(247,147,26,0.07);
}

.comment-replies-v1 {
  display: grid;
  gap: 7px;
  margin-top: 9px;
  margin-left: 18px;
  padding-left: 12px;
  border-left: 2px solid rgba(247,147,26,0.22);
}

.comment-replies-v1 .comment-item {
  background: rgba(247,147,26,0.035);
}

.comment-reply-state-v1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  margin-bottom: 8px;
  padding: 7px 9px;
  border: 1px solid var(--accent-line);
  border-radius: 12px;
  background: rgba(247,147,26,0.075);
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 850;
}

.comment-reply-state-v1[hidden] {
  display: none !important;
}

.comment-reply-state-v1 button {
  width: 24px;
  height: 24px;
  min-height: 24px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.16);
  color: var(--text-soft);
  cursor: pointer;
}

.comment-reply-state-v1 button:hover {
  color: var(--text);
  border-color: var(--accent-line);
}

@media (max-width: 560px) {
  .comment-replies-v1 {
    margin-left: 8px;
    padding-left: 9px;
  }
}


/* =========================================================
   MIMHO Ledger - Comment Like/Delete V1
   ========================================================= */

.comment-actions-v1 {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 8px;
}

.comment-like-btn-v1,
.comment-delete-btn-v1 {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.035);
  color: var(--muted);
  padding: 5px 9px;
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 850;
}

.comment-like-btn-v1:hover {
  border-color: var(--accent-line);
  color: var(--accent-2);
  background: rgba(247,147,26,0.07);
}

.comment-delete-btn-v1:hover {
  border-color: rgba(255,94,108,0.38);
  color: #ffb3b3;
  background: rgba(255,94,108,0.08);
}

.comment-like-btn-v1 span {
  margin-left: 3px;
}


/* =========================================================
   MIMHO Ledger - Splash Screen V1
   ========================================================= */

html.mimho-splash-lock-v1,
html.mimho-splash-lock-v1 body {
  overflow: hidden;
}

.mimho-splash-overlay-v1 {
  position: fixed;
  inset: 0;
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(0, 196, 255, 0.12), transparent 28%),
    radial-gradient(circle at 58% 48%, rgba(247, 147, 26, 0.08), transparent 24%),
    #000;
  color: #eafcff;
  opacity: 1;
  transition: opacity 520ms ease, transform 520ms ease;
  overflow: hidden;
}

.mimho-splash-overlay-v1::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(rgba(0, 153, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 153, 255, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.12;
  transform: perspective(600px) rotateX(58deg) translateY(18%);
  animation: mimhoSplashGridV1 4s linear infinite;
}

.mimho-splash-constellation-v1 {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 22%, rgba(0, 180, 255, 0.42) 0 2px, transparent 3px),
    radial-gradient(circle at 28% 74%, rgba(0, 180, 255, 0.30) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 18%, rgba(0, 180, 255, 0.32) 0 2px, transparent 3px),
    radial-gradient(circle at 84% 70%, rgba(0, 180, 255, 0.34) 0 2px, transparent 3px),
    linear-gradient(32deg, transparent 0 18%, rgba(0, 145, 255, 0.18) 18.2%, transparent 18.5% 100%),
    linear-gradient(144deg, transparent 0 33%, rgba(0, 145, 255, 0.14) 33.2%, transparent 33.5% 100%);
  opacity: 0.45;
  animation: mimhoSplashPulseV1 2.4s ease-in-out infinite;
}

.mimho-splash-content-v1 {
  position: relative;
  z-index: 2;
  width: min(460px, 88vw);
  text-align: center;
  transform: translateY(-1vh);
}

.mimho-splash-logo-shell-v1 {
  position: relative;
  width: min(280px, 62vw);
  height: min(280px, 62vw);
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 42px;
  filter: drop-shadow(0 0 28px rgba(0, 190, 255, 0.34));
  animation: mimhoSplashLogoEnterV1 780ms cubic-bezier(.2,.9,.2,1) both;
}

.mimho-splash-logo-v1 {
  position: relative;
  z-index: 2;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 28px;
  animation: mimhoSplashFloatV1 2.2s ease-in-out infinite;
}

.mimho-splash-glow-v1 {
  position: absolute;
  inset: 16%;
  border-radius: 999px;
  background: rgba(0, 190, 255, 0.26);
  filter: blur(44px);
  opacity: 0.95;
  animation: mimhoSplashGlowV1 1.8s ease-in-out infinite;
}

.mimho-splash-spark-v1 {
  position: absolute;
  z-index: 4;
  left: 8%;
  right: 8%;
  top: 51%;
  height: 3px;
  background:
    linear-gradient(90deg,
      transparent,
      rgba(0, 221, 255, 0.0),
      rgba(0, 221, 255, 1),
      rgba(255, 156, 38, 1),
      rgba(0, 221, 255, 1),
      rgba(0, 221, 255, 0.0),
      transparent
    );
  border-radius: 999px;
  box-shadow:
    0 0 12px rgba(0, 225, 255, 0.9),
    0 0 22px rgba(247, 147, 26, 0.75);
  transform: rotate(-18deg) scaleX(0);
  transform-origin: left center;
  animation: mimhoSplashSparkV1 940ms 260ms cubic-bezier(.2,.9,.2,1) both;
}

.mimho-splash-title-v1 {
  font-family: var(--font-display, Orbitron, Inter, sans-serif);
  font-size: clamp(2rem, 8vw, 3.6rem);
  letter-spacing: 0.08em;
  color: #8ff3ff;
  text-shadow:
    0 0 12px rgba(0, 206, 255, 0.72),
    0 0 32px rgba(0, 120, 255, 0.38);
  animation: mimhoSplashTextV1 1.8s ease-in-out infinite;
}

.mimho-splash-subtitle-v1 {
  margin-top: 8px;
  color: rgba(234, 252, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mimho-splash-loader-v1 {
  position: relative;
  width: min(210px, 52vw);
  height: 2px;
  margin: 28px auto 0;
  background: rgba(0, 190, 255, 0.18);
  border-radius: 999px;
  overflow: hidden;
}

.mimho-splash-loader-v1 span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #63ecff, #f7931a, transparent);
  animation: mimhoSplashLoaderV1 1.15s ease-in-out infinite;
}

.mimho-splash-hide-v1 {
  opacity: 0;
  transform: scale(1.015);
  pointer-events: none;
}

@keyframes mimhoSplashLogoEnterV1 {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes mimhoSplashSparkV1 {
  0% {
    opacity: 0;
    transform: rotate(-18deg) scaleX(0);
  }
  28% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: rotate(-18deg) scaleX(1);
  }
}

@keyframes mimhoSplashFloatV1 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes mimhoSplashGlowV1 {
  0%, 100% {
    opacity: 0.72;
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes mimhoSplashTextV1 {
  0%, 100% {
    opacity: 0.88;
  }
  50% {
    opacity: 1;
  }
}

@keyframes mimhoSplashLoaderV1 {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(260%);
  }
}

@keyframes mimhoSplashPulseV1 {
  0%, 100% {
    opacity: 0.32;
  }
  50% {
    opacity: 0.55;
  }
}

@keyframes mimhoSplashGridV1 {
  from {
    transform: perspective(600px) rotateX(58deg) translateY(18%) translateX(0);
  }
  to {
    transform: perspective(600px) rotateX(58deg) translateY(18%) translateX(64px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mimho-splash-overlay-v1,
  .mimho-splash-overlay-v1::before,
  .mimho-splash-constellation-v1,
  .mimho-splash-logo-shell-v1,
  .mimho-splash-logo-v1,
  .mimho-splash-glow-v1,
  .mimho-splash-spark-v1,
  .mimho-splash-title-v1,
  .mimho-splash-loader-v1 span {
    animation: none !important;
  }

  .mimho-splash-spark-v1 {
    transform: rotate(-18deg) scaleX(1);
  }
}


/* =========================================================
   MIMHO Ledger - Splash Screen No Image V2
   ========================================================= */

.mimho-splash-mark-v2 {
  position: relative;
  z-index: 3;
  width: min(220px, 52vw);
  height: min(220px, 52vw);
  display: grid;
  place-items: center;
  filter:
    drop-shadow(0 0 18px rgba(0, 221, 255, 0.55))
    drop-shadow(0 0 34px rgba(247, 147, 26, 0.25));
}

.mimho-splash-cube-v2 {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  border: 1px solid rgba(132, 239, 255, 0.56);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.18), rgba(0, 221, 255, 0.045)),
    radial-gradient(circle at 30% 22%, rgba(255,255,255,0.34), transparent 34%),
    rgba(0, 17, 28, 0.56);
  box-shadow:
    inset 0 0 18px rgba(132, 239, 255, 0.22),
    0 0 20px rgba(0, 221, 255, 0.26);
  backdrop-filter: blur(8px);
  transform: rotate(45deg);
}

.mimho-splash-cube-v2::before {
  content: "101";
  position: absolute;
  inset: 9px auto auto 10px;
  color: rgba(143, 243, 255, 0.52);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  transform: rotate(-45deg);
}

.mimho-splash-cube-v2::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 12px;
  border: 1px solid rgba(247, 147, 26, 0.18);
  box-shadow: inset 0 0 14px rgba(247, 147, 26, 0.12);
}

.mimho-splash-cube-v2.cube-a {
  left: 24px;
  top: 58px;
  animation: mimhoSplashCubeAV2 1.8s ease-in-out infinite;
}

.mimho-splash-cube-v2.cube-b {
  right: 24px;
  top: 58px;
  animation: mimhoSplashCubeBV2 1.8s ease-in-out infinite;
}

.mimho-splash-cube-v2.cube-c {
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) rotate(45deg);
  animation: mimhoSplashCubeCV2 1.8s ease-in-out infinite;
}

.mimho-splash-bolt-v2 {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-10deg);
  color: #f7931a;
  font-size: clamp(3.2rem, 13vw, 5.8rem);
  line-height: 1;
  text-shadow:
    0 0 10px rgba(247, 147, 26, 0.95),
    0 0 24px rgba(0, 221, 255, 0.70),
    0 0 44px rgba(0, 221, 255, 0.38);
  animation: mimhoSplashBoltV2 1.15s ease-in-out infinite;
}

.mimho-splash-logo-shell-v1 {
  width: min(280px, 66vw);
  height: min(280px, 66vw);
}

.mimho-splash-logo-v1 {
  display: none !important;
}

@keyframes mimhoSplashCubeAV2 {
  0%, 100% {
    transform: rotate(45deg) translate(0, 0);
  }
  50% {
    transform: rotate(45deg) translate(-5px, -4px);
  }
}

@keyframes mimhoSplashCubeBV2 {
  0%, 100% {
    transform: rotate(45deg) translate(0, 0);
  }
  50% {
    transform: rotate(45deg) translate(5px, -4px);
  }
}

@keyframes mimhoSplashCubeCV2 {
  0%, 100% {
    transform: translateX(-50%) rotate(45deg) translate(0, 0);
  }
  50% {
    transform: translateX(-50%) rotate(45deg) translate(0, 6px);
  }
}

@keyframes mimhoSplashBoltV2 {
  0%, 100% {
    opacity: 0.88;
    filter: brightness(1);
    transform: translate(-50%, -50%) rotate(-10deg) scale(1);
  }
  50% {
    opacity: 1;
    filter: brightness(1.28);
    transform: translate(-50%, -50%) rotate(-10deg) scale(1.07);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mimho-splash-cube-v2,
  .mimho-splash-bolt-v2 {
    animation: none !important;
  }
}


/* =========================================================
   MIMHO Ledger - Mobile Production Fix V1
   ========================================================= */

@media (max-width: 860px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    padding-bottom: 78px;
  }

  .topbar {
    position: sticky;
    top: 0;
    z-index: 9999;
    min-height: 58px;
    padding: 9px 12px;
    gap: 8px;
    backdrop-filter: blur(14px);
  }

  .brand {
    font-size: 0.96rem;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }

  .nav-actions {
    gap: 7px;
  }

  .lang-switcher {
    display: none !important;
  }

  .btn-connect {
    min-height: 36px;
    padding: 8px 11px;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .user-badge {
    min-height: 36px;
    max-width: 132px;
    padding: 6px 8px;
  }

  #walletBadgeText {
    max-width: 82px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .ledger-grid {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .sidebar-left,
  .sidebar-right {
    display: none !important;
  }

  .feed-center {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-radius: 0 !important;
  }

  .composer-card,
  .feed-tabs-v2,
  .premium-feed-tabs-v1,
  .market-feed-card,
  .post-card,
  .empty-state,
  .status-box {
    border-left: 0 !important;
    border-right: 0 !important;
    border-radius: 0 !important;
  }

  .composer-card {
    padding: 14px 12px;
  }

  .composer-card textarea,
  #postText {
    min-height: 110px;
    font-size: 1rem;
    line-height: 1.45;
  }

  .post-card {
    grid-template-columns: 42px minmax(0, 1fr) !important;
    gap: 10px !important;
    padding: 14px 12px !important;
  }

  .avatar {
    width: 42px !important;
    height: 42px !important;
  }

  .post-body {
    min-width: 0 !important;
  }

  .post-topline {
    gap: 6px;
    align-items: flex-start;
  }

  .post-topline h4 {
    min-width: 0;
    font-size: 0.92rem;
    line-height: 1.28;
  }

  .post-topline h4 span {
    display: block;
    margin-top: 2px;
    font-size: 0.74rem;
    line-height: 1.25;
  }

  .post-text {
    font-size: 1rem !important;
    line-height: 1.48 !important;
    overflow-wrap: anywhere;
  }

  .post-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
  }

  .post-actions button,
  .post-actions a {
    min-height: 34px;
    padding: 7px 9px;
    font-size: 0.82rem;
  }

  .comment-box.active {
    display: grid;
    gap: 8px;
  }

  .comment-box input {
    width: 100%;
    min-height: 40px;
    font-size: 0.96rem;
  }

  .comments-list {
    margin-top: 10px;
  }

  .threaded-comments-v1 .comment-item {
    padding: 9px;
  }

  .comment-replies-v1 {
    margin-left: 7px !important;
    padding-left: 8px !important;
  }

  .echo-card .echo-original-card {
    padding: 10px;
    border-radius: 14px;
  }

  .echo-original-top {
    align-items: flex-start;
    gap: 5px;
  }

  .post-video,
  .post-card video,
  video.post-video {
    max-height: 62vh !important;
    border-radius: 14px !important;
  }

  .post-media-image,
  .post-image,
  .post-card img {
    max-width: 100%;
    height: auto;
  }

  .mobile-nav,
  .mobile-nav-v2 {
    position: fixed !important;
    left: 8px !important;
    right: 8px !important;
    bottom: 8px !important;
    z-index: 99999 !important;
    display: flex !important;
    justify-content: space-around !important;
    align-items: center !important;
    gap: 4px !important;
    min-height: 56px !important;
    padding: 7px !important;
    border: 1px solid var(--line-strong) !important;
    border-radius: 22px !important;
    background: rgba(8, 12, 18, 0.94) !important;
    backdrop-filter: blur(16px) !important;
    box-shadow: 0 18px 50px rgba(0,0,0,0.42) !important;
  }

  .mobile-nav a,
  .mobile-nav-v2 a {
    display: inline-flex !important;
    width: 38px !important;
    height: 38px !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 14px !important;
    color: var(--text-soft) !important;
    text-decoration: none !important;
    font-size: 1.05rem !important;
  }

  .mobile-nav a.active,
  .mobile-nav-v2 a.active {
    color: var(--accent-2) !important;
    background: rgba(247,147,26,0.10) !important;
  }

  .wallet-menu {
    right: 0;
    left: auto;
    width: min(280px, calc(100vw - 24px));
  }
}

/* Onboarding legível no mobile */
@media (max-width: 860px) {
  .ledger-onboarding-hero-v1 {
    padding: 20px 14px !important;
  }

  .ledger-onboarding-hero-v1 h1 {
    font-size: 1.8rem !important;
    line-height: 1.08 !important;
    letter-spacing: -0.04em !important;
  }

  .ledger-onboarding-hero-v1 p {
    font-size: 0.98rem !important;
    line-height: 1.48 !important;
  }

  .ledger-onboarding-steps-v1 {
    padding: 12px !important;
    gap: 10px !important;
  }

  .ledger-onboarding-step-v1 {
    grid-template-columns: 34px minmax(0, 1fr) !important;
    gap: 10px !important;
    padding: 12px !important;
    border-radius: 16px !important;
  }

  .ledger-onboarding-step-v1 > span {
    width: 32px !important;
    height: 32px !important;
  }

  .ledger-onboarding-step-v1 strong {
    font-size: 0.98rem !important;
    line-height: 1.25 !important;
  }

  .ledger-onboarding-step-v1 p {
    font-size: 0.88rem !important;
    line-height: 1.42 !important;
  }

  .ledger-onboarding-step-v1 button,
  .ledger-onboarding-step-v1 a {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    min-height: 42px !important;
    font-size: 0.9rem !important;
  }

  .ledger-onboarding-actions-v1 {
    flex-direction: column !important;
    padding: 12px !important;
  }

  .ledger-onboarding-actions-v1 button,
  .ledger-onboarding-actions-v1 a {
    width: 100% !important;
    min-height: 42px !important;
  }

  .ledger-onboarding-modal-overlay-v1 {
    align-items: stretch !important;
    padding: 10px !important;
  }

  .ledger-onboarding-modal-v1 {
    width: 100% !important;
    max-height: calc(100dvh - 20px) !important;
    border-radius: 20px !important;
  }

  .ledger-onboarding-modal-head-v1 {
    padding: 16px !important;
  }

  .ledger-onboarding-modal-head-v1 h3 {
    font-size: 1.28rem !important;
  }

  .ledger-onboarding-modal-head-v1 p {
    font-size: 0.94rem !important;
    line-height: 1.42 !important;
  }

  .ledger-onboarding-modal-actions-v1 {
    flex-direction: column !important;
    padding: 0 12px 12px !important;
  }

  .ledger-onboarding-modal-actions-v1 a,
  .ledger-onboarding-modal-actions-v1 button {
    width: 100% !important;
    min-height: 42px !important;
  }
}

/* Splash ajustada para mobile */
@media (max-width: 560px) {
  .mimho-splash-content-v1 {
    width: 92vw !important;
  }

  .mimho-splash-logo-shell-v1 {
    width: min(230px, 70vw) !important;
    height: min(230px, 70vw) !important;
    margin-bottom: 12px !important;
  }

  .mimho-splash-title-v1 {
    font-size: clamp(1.72rem, 10vw, 2.65rem) !important;
    letter-spacing: 0.055em !important;
  }

  .mimho-splash-subtitle-v1 {
    font-size: 0.72rem !important;
    letter-spacing: 0.12em !important;
  }
}


/* =========================================================
   MIMHO Ledger - Mobile Emergency Fix V2
   Force mobile layout for production
   ========================================================= */

@media screen and (max-width: 900px) {
  html,
  body {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-x: hidden !important;
  }

  body {
    margin: 0 !important;
    padding: 0 0 82px 0 !important;
  }

  .ledger-grid,
  main.ledger-grid {
    display: block !important;
    grid-template-columns: 1fr !important;
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .sidebar-left,
  .sidebar-right,
  aside.sidebar-left,
  aside.sidebar-right,
  [aria-label="Primary navigation"],
  [aria-label="Onboarding sidebar"] {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    min-width: 0 !important;
    max-width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
  }

  .feed-center,
  section.feed-center {
    display: block !important;
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
  }

  .topbar {
    width: 100vw !important;
    max-width: 100vw !important;
    min-height: 58px !important;
    padding: 8px 10px !important;
    box-sizing: border-box !important;
  }

  .brand {
    font-size: 0.92rem !important;
    max-width: 150px !important;
    overflow: hidden !important;
    white-space: nowrap !important;
  }

  .lang-switcher {
    display: none !important;
  }

  .btn-connect {
    min-height: 36px !important;
    padding: 7px 10px !important;
    font-size: 0.76rem !important;
  }

  .user-badge {
    max-width: 120px !important;
  }

  .composer-card,
  .market-feed-card,
  .feed-tabs-v2,
  .premium-feed-tabs-v1,
  .post-card,
  article.post-card,
  .status-box,
  .empty-state {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-radius: 0 !important;
  }

  .post-card,
  article.post-card {
    display: grid !important;
    grid-template-columns: 44px minmax(0, 1fr) !important;
    gap: 10px !important;
    padding: 14px 12px !important;
  }

  .avatar {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
  }

  .post-body {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .post-topline {
    display: flex !important;
    align-items: flex-start !important;
    gap: 6px !important;
    min-width: 0 !important;
  }

  .post-topline h4 {
    min-width: 0 !important;
    max-width: 100% !important;
    font-size: 0.95rem !important;
    line-height: 1.25 !important;
  }

  .post-topline h4 a {
    font-size: 0.95rem !important;
  }

  .post-topline h4 span {
    display: block !important;
    margin-top: 3px !important;
    font-size: 0.74rem !important;
    line-height: 1.24 !important;
    opacity: 0.78 !important;
  }

  .post-text,
  .echo-quote {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 1.02rem !important;
    line-height: 1.52 !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }

  .post-actions,
  .echo-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 7px !important;
  }

  .post-actions button,
  .post-actions a,
  .echo-actions button,
  .echo-actions a {
    min-height: 36px !important;
    padding: 7px 10px !important;
    font-size: 0.84rem !important;
  }

  .comment-box {
    width: 100% !important;
  }

  .comment-box.active {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    gap: 8px !important;
  }

  .comment-box input {
    min-height: 42px !important;
    font-size: 0.98rem !important;
  }

  .comments-list,
  .threaded-comments-v1 {
    width: 100% !important;
    max-width: 100% !important;
  }

  .threaded-comments-v1 .comment-item {
    padding: 9px !important;
    border-radius: 13px !important;
  }

  .comment-replies-v1 {
    margin-left: 7px !important;
    padding-left: 8px !important;
  }

  .echo-original-card {
    padding: 10px !important;
    border-radius: 14px !important;
    max-width: 100% !important;
  }

  .post-card video,
  video.post-video,
  .post-video {
    width: 100% !important;
    max-height: 62vh !important;
    border-radius: 14px !important;
  }

  .post-card img,
  .post-image,
  .post-media-image {
    max-width: 100% !important;
    height: auto !important;
  }

  .mobile-nav,
  .mobile-nav-v2 {
    display: flex !important;
    position: fixed !important;
    left: 8px !important;
    right: 8px !important;
    bottom: 8px !important;
    z-index: 999999 !important;
    min-height: 58px !important;
    padding: 7px !important;
    justify-content: space-around !important;
    align-items: center !important;
    border-radius: 22px !important;
    border: 1px solid var(--line-strong) !important;
    background: rgba(8, 12, 18, 0.96) !important;
    backdrop-filter: blur(16px) !important;
    box-shadow: 0 18px 50px rgba(0,0,0,0.45) !important;
  }

  .mobile-nav a,
  .mobile-nav-v2 a {
    width: 38px !important;
    height: 38px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 14px !important;
    font-size: 1.05rem !important;
  }

  .ledger-onboarding-hero-v1,
  .ledger-onboarding-steps-v1,
  .ledger-onboarding-actions-v1 {
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }

  .ledger-onboarding-hero-v1 {
    padding: 20px 14px !important;
  }

  .ledger-onboarding-hero-v1 h1 {
    font-size: 1.85rem !important;
    line-height: 1.1 !important;
  }

  .ledger-onboarding-hero-v1 p {
    font-size: 1rem !important;
    line-height: 1.48 !important;
  }

  .ledger-onboarding-step-v1 {
    grid-template-columns: 34px minmax(0, 1fr) !important;
    padding: 12px !important;
  }

  .ledger-onboarding-step-v1 button,
  .ledger-onboarding-step-v1 a {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    min-height: 42px !important;
  }
}


/* =========================================================
   MIMHO Ledger - Viewer Spark/Like State V1
   ========================================================= */

.post-actions button.spark-active,
.echo-actions button.spark-active {
  border-color: rgba(247, 147, 26, 0.55) !important;
  color: #ffd28a !important;
  background: rgba(247, 147, 26, 0.15) !important;
  box-shadow: 0 0 0 1px rgba(247,147,26,0.12), 0 0 18px rgba(247,147,26,0.12);
}

.post-actions button.spark-active span,
.echo-actions button.spark-active span {
  color: #ffd28a !important;
}

.comment-like-btn-v1.comment-liked-v1 {
  border-color: rgba(247, 147, 26, 0.55) !important;
  color: #ffd28a !important;
  background: rgba(247, 147, 26, 0.15) !important;
  box-shadow: 0 0 0 1px rgba(247,147,26,0.12);
}

.comment-like-btn-v1.comment-liked-v1 span {
  color: #ffd28a !important;
}


/* =========================================================
   MIMHO Ledger - Comment Liked Highlight V2
   ========================================================= */

.comment-like-btn-v1.comment-liked-v2,
.comment-like-btn-v1.comment-liked-v1 {
  border-color: rgba(247, 147, 26, 0.62) !important;
  color: #ffd28a !important;
  background: rgba(247, 147, 26, 0.18) !important;
  box-shadow:
    0 0 0 1px rgba(247,147,26,0.16),
    0 0 16px rgba(247,147,26,0.13) !important;
}

.comment-like-btn-v1.comment-liked-v2 span,
.comment-like-btn-v1.comment-liked-v1 span {
  color: #ffd28a !important;
}

.comment-like-btn-v1.comment-liked-v2::first-letter,
.comment-like-btn-v1.comment-liked-v1::first-letter {
  color: #ffd28a !important;
}


/* =========================================================
   MIMHO Ledger - Comment Spark V4
   Comentários e replies usam ⚡ como Spark.
   ========================================================= */

.comment-spark-btn-v4 {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.035);
  color: rgba(190, 200, 214, 0.78);
  padding: 5px 9px;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 900;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.comment-spark-btn-v4:hover {
  border-color: rgba(247, 147, 26, 0.36);
  color: #ffd28a;
  background: rgba(247, 147, 26, 0.08);
}

.comment-spark-btn-v4.comment-sparked-v4 {
  border-color: rgba(247, 147, 26, 0.68) !important;
  color: #ffd28a !important;
  background: rgba(247, 147, 26, 0.18) !important;
  box-shadow:
    0 0 0 1px rgba(247,147,26,0.18),
    0 0 18px rgba(247,147,26,0.18) !important;
}

.comment-spark-btn-v4.comment-sparked-v4 span {
  color: #ffd28a !important;
}

.comment-spark-btn-v4[data-sparked="1"] {
  border-color: rgba(247, 147, 26, 0.68) !important;
  color: #ffd28a !important;
  background: rgba(247, 147, 26, 0.18) !important;
  box-shadow:
    0 0 0 1px rgba(247,147,26,0.18),
    0 0 18px rgba(247,147,26,0.18) !important;
}


/* =========================================================
   MIMHO Ledger - Mobile Language Switcher V1
   Reativa idiomas no mobile em formato compacto.
   ========================================================= */

@media screen and (max-width: 920px) {
  .lang-switcher {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    flex: 0 0 auto !important;
    min-width: auto !important;
    max-width: none !important;
    padding: 3px !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,0.035) !important;
  }

  .lang-switcher button,
  .lang-switcher a,
  .lang-switcher span {
    min-width: 28px !important;
    min-height: 28px !important;
    height: 28px !important;
    padding: 0 7px !important;
    border-radius: 999px !important;
    font-size: 0.72rem !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    white-space: nowrap !important;
  }

  .lang-switcher button.active,
  .lang-switcher a.active,
  .lang-switcher .active {
    color: #ffd28a !important;
    background: rgba(247,147,26,0.16) !important;
    border-color: rgba(247,147,26,0.35) !important;
  }

  .topbar .lang-switcher {
    order: 2 !important;
  }

  .topbar .nav-actions {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    min-width: 0 !important;
  }

  .topbar .btn-connect,
  .topbar .user-badge {
    order: 3 !important;
  }
}

@media screen and (max-width: 430px) {
  .brand {
    max-width: 118px !important;
  }

  .lang-switcher {
    gap: 2px !important;
    padding: 2px !important;
  }

  .lang-switcher button,
  .lang-switcher a,
  .lang-switcher span {
    min-width: 25px !important;
    height: 26px !important;
    min-height: 26px !important;
    padding: 0 5px !important;
    font-size: 0.66rem !important;
  }

  .topbar .nav-actions {
    gap: 4px !important;
  }
}


/* =========================================================
   MIMHO Ledger - Mobile More Menu V1
   Botão Mais seguro no mobile.
   ========================================================= */

.mimho-mobile-more-button-v1,
.mimho-mobile-more-overlay-v1,
.mimho-mobile-more-panel-v1 {
  display: none;
}

@media screen and (max-width: 920px) {
  .mimho-mobile-more-button-v1 {
    position: fixed;
    right: 12px;
    bottom: 14px;
    z-index: 999998;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 46px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(247,147,26,0.42);
    background:
      radial-gradient(circle at 20% 0%, rgba(0,221,255,0.16), transparent 36%),
      rgba(8, 12, 18, 0.96);
    color: #ffd28a;
    box-shadow:
      0 18px 52px rgba(0,0,0,0.48),
      0 0 20px rgba(247,147,26,0.13);
    font-weight: 950;
    cursor: pointer;
    backdrop-filter: blur(14px);
  }

  .mimho-mobile-more-button-v1 span {
    font-size: 1.05rem;
    line-height: 1;
  }

  .mimho-mobile-more-button-v1 strong {
    font-size: 0.78rem;
    line-height: 1;
  }

  .mimho-mobile-more-overlay-v1 {
    position: fixed;
    inset: 0;
    z-index: 999996;
    display: none;
    background: rgba(0,0,0,0.46);
    backdrop-filter: blur(6px);
  }

  .mimho-mobile-more-overlay-v1.active {
    display: block;
  }

  .mimho-mobile-more-panel-v1 {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 72px;
    z-index: 999997;
    display: none;
    max-height: min(74dvh, 620px);
    overflow-y: auto;
    padding: 12px;
    border-radius: 24px;
    border: 1px solid rgba(247,147,26,0.32);
    background:
      radial-gradient(circle at 12% 0%, rgba(0,221,255,0.13), transparent 34%),
      radial-gradient(circle at 96% 4%, rgba(247,147,26,0.12), transparent 32%),
      rgba(8, 12, 18, 0.985);
    box-shadow: 0 24px 80px rgba(0,0,0,0.58);
    backdrop-filter: blur(18px);
  }

  .mimho-mobile-more-panel-v1.active {
    display: block;
  }

  .mimho-mobile-more-head-v1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 4px 4px 12px;
  }

  .mimho-mobile-more-head-v1 strong {
    display: block;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.15;
  }

  .mimho-mobile-more-head-v1 span {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
    margin-top: 2px;
  }

  .mimho-mobile-more-close-v1 {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.05);
    color: var(--text);
    font-size: 1.2rem;
    font-weight: 900;
    cursor: pointer;
  }

  .mimho-mobile-more-grid-v1 {
    display: grid;
    gap: 8px;
  }

  .mimho-mobile-more-grid-v1 a,
  .mimho-mobile-more-grid-v1 button {
    width: 100%;
    min-height: 56px;
    display: block;
    padding: 11px 12px;
    border-radius: 17px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.045);
    color: var(--text);
    text-align: left;
    text-decoration: none;
    cursor: pointer;
  }

  .mimho-mobile-more-grid-v1 a:active,
  .mimho-mobile-more-grid-v1 button:active {
    transform: scale(0.99);
  }

  .mimho-mobile-more-grid-v1 strong {
    display: block;
    color: #ffd28a;
    font-size: 0.9rem;
    line-height: 1.15;
  }

  .mimho-mobile-more-grid-v1 span {
    display: block;
    margin-top: 3px;
    color: rgba(234,252,255,0.68);
    font-size: 0.76rem;
    line-height: 1.25;
  }

  body.mimho-mobile-more-open-v1 {
    overflow: hidden;
  }
}

@media screen and (min-width: 921px) {
  .mimho-mobile-more-button-v1,
  .mimho-mobile-more-overlay-v1,
  .mimho-mobile-more-panel-v1 {
    display: none !important;
  }
}


/* =========================================================
   MIMHO Ledger - Mobile More Plus Trigger V2
   Reaproveita o botão + antigo como botão Mais.
   ========================================================= */

#mimhoMobileMoreButtonV1 {
  display: none !important;
}

@media screen and (max-width: 920px) {
  a.mimho-mobile-more-plus-trigger-v2 {
    color: #ffd28a !important;
    border-color: rgba(247,147,26,0.36) !important;
    background: rgba(247,147,26,0.10) !important;
    box-shadow: 0 0 18px rgba(247,147,26,0.12) !important;
  }

  a.mimho-mobile-more-plus-trigger-v2 .icon {
    display: block !important;
    font-size: 1.12rem !important;
    line-height: 1 !important;
  }

  a.mimho-mobile-more-plus-trigger-v2 .mimho-mobile-more-plus-label-v2 {
    display: block !important;
    margin-top: 2px !important;
    font-size: 0.58rem !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    color: #ffd28a !important;
  }
}


/* =========================================================
   MIMHO Ledger - Fear & Greed Feed Card V1
   ========================================================= */

.mimho-fear-greed-card-v1 {
  margin: 12px 0;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(247,147,26,0.26);
  background:
    radial-gradient(circle at 12% 0%, rgba(0,221,255,0.12), transparent 34%),
    radial-gradient(circle at 96% 10%, rgba(247,147,26,0.12), transparent 32%),
    rgba(8, 12, 18, 0.96);
  box-shadow: 0 18px 54px rgba(0,0,0,0.28);
}

.mimho-fg-top-v1 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.mimho-fg-top-v1 strong {
  display: block;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.15;
}

.mimho-fg-top-v1 span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.3;
}

.mimho-fg-top-v1 button {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
}

.mimho-fg-body-v1 {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 13px;
  align-items: center;
  margin-top: 14px;
}

.mimho-fg-score-v1 {
  width: 74px;
  height: 74px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-size: 1.65rem;
  font-weight: 950;
  color: #ffd28a;
  background: rgba(247,147,26,0.12);
  border: 1px solid rgba(247,147,26,0.28);
}

.mimho-fg-info-v1 strong {
  color: var(--text);
  font-size: 0.98rem;
}

.mimho-fg-info-v1 small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.72rem;
}

.mimho-fg-bar-v1 {
  position: relative;
  width: 100%;
  height: 9px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}

.mimho-fg-bar-v1 i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff4d4d, #ffd166, #22c55e);
}

.mimho-fear-greed-card-v1.extreme-fear .mimho-fg-score-v1 {
  color: #ff8a8a;
  border-color: rgba(255,77,77,0.35);
  background: rgba(255,77,77,0.10);
}

.mimho-fear-greed-card-v1.fear .mimho-fg-score-v1 {
  color: #ffb86b;
  border-color: rgba(255,184,107,0.35);
  background: rgba(255,184,107,0.10);
}

.mimho-fear-greed-card-v1.neutral .mimho-fg-score-v1 {
  color: #eafcff;
  border-color: rgba(234,252,255,0.22);
  background: rgba(234,252,255,0.06);
}

.mimho-fear-greed-card-v1.greed .mimho-fg-score-v1,
.mimho-fear-greed-card-v1.extreme-greed .mimho-fg-score-v1 {
  color: #7cffb2;
  border-color: rgba(124,255,178,0.35);
  background: rgba(124,255,178,0.10);
}

@media screen and (max-width: 700px) {
  .mimho-fear-greed-card-v1 {
    margin: 10px 0;
    border-radius: 20px;
    padding: 13px;
  }

  .mimho-fg-body-v1 {
    grid-template-columns: 62px 1fr;
    gap: 11px;
  }

  .mimho-fg-score-v1 {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    font-size: 1.35rem;
  }
}


/* =========================================================
   MIMHO Ledger - YouTube Embed V1
   ========================================================= */

.mimho-youtube-embed-v1 {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(247,147,26,0.22);
  background:
    radial-gradient(circle at 20% 0%, rgba(255,0,0,0.14), transparent 34%),
    rgba(0,0,0,0.55);
  box-shadow: 0 16px 48px rgba(0,0,0,0.28);
}

.mimho-youtube-embed-v1 iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media screen and (max-width: 700px) {
  .mimho-youtube-embed-v1 {
    margin-top: 10px;
    border-radius: 16px;
  }
}


/* =========================================================
   MIMHO Ledger - Comment Report Button V1
   ========================================================= */

.comment-report-btn-v1 {
  min-width: 32px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 80, 80, 0.24);
  background: rgba(255, 80, 80, 0.08);
  color: #ffb4b4;
  cursor: pointer;
  font-weight: 900;
}

.comment-report-btn-v1:hover {
  border-color: rgba(255, 80, 80, 0.42);
  background: rgba(255, 80, 80, 0.13);
}


/* =========================================================
   MIMHO Ledger - Security Moderation Card V1
   ========================================================= */

.mimho-security-moderation-card-v1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 14px 0 16px;
  padding: 15px;
  border-radius: 22px;
  border: 1px solid rgba(247,147,26,0.28);
  background:
    radial-gradient(circle at 12% 0%, rgba(0,221,255,0.12), transparent 34%),
    radial-gradient(circle at 96% 8%, rgba(247,147,26,0.13), transparent 32%),
    rgba(8, 12, 18, 0.96);
  box-shadow: 0 18px 54px rgba(0,0,0,0.30);
}

.mimho-security-moderation-card-v1 strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.2;
}

.mimho-security-moderation-card-v1 p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.mimho-security-moderation-card-v1 a {
  flex: 0 0 auto;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(247,147,26,0.36);
  background: rgba(247,147,26,0.12);
  color: #ffd28a;
  text-decoration: none;
  font-weight: 950;
  white-space: nowrap;
}

.mimho-security-moderation-card-v1 a:hover {
  border-color: rgba(247,147,26,0.58);
  background: rgba(247,147,26,0.18);
}

@media screen and (max-width: 700px) {
  .mimho-security-moderation-card-v1 {
    align-items: stretch;
    flex-direction: column;
    border-radius: 20px;
    padding: 13px;
  }

  .mimho-security-moderation-card-v1 a {
    width: 100%;
  }
}

/* =========================================================
   MIMHO Ledger - Home AMA Discovery V1
   ========================================================= */

.mimho-home-ama-discovery-v1 {
  margin: 14px 0;
  padding: 15px;
  border-radius: 24px;
  border: 1px solid rgba(0,221,255,0.24);
  background:
    radial-gradient(circle at 12% 0%, rgba(0,221,255,0.12), transparent 34%),
    radial-gradient(circle at 94% 8%, rgba(247,147,26,0.10), transparent 32%),
    rgba(8, 12, 18, 0.96);
  box-shadow: 0 18px 54px rgba(0,0,0,0.30);
}

.mimho-home-ama-head-v1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.mimho-home-ama-head-v1 strong {
  display: block;
  color: var(--text);
  font-size: 1.02rem;
}

.mimho-home-ama-head-v1 span {
  display: block;
  color: var(--muted);
  margin-top: 4px;
  font-size: 0.82rem;
  line-height: 1.4;
}

.mimho-home-ama-actions-v1 {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.mimho-home-ama-actions-v1 a,
.mimho-home-ama-bottom-v1 a,
.mimho-home-ama-empty-v1 a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(247,147,26,0.34);
  background: rgba(247,147,26,0.12);
  color: #ffd28a;
  text-decoration: none;
  font-weight: 950;
  padding: 0 13px;
}

.mimho-home-ama-list-v1 {
  display: grid;
  gap: 10px;
}

.mimho-home-ama-card-v1 {
  padding: 13px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(0,0,0,0.22);
}

.mimho-home-ama-card-v1.live {
  border-color: rgba(255,80,80,0.34);
  background:
    radial-gradient(circle at 8% 0%, rgba(255,80,80,0.12), transparent 32%),
    rgba(0,0,0,0.24);
}

.mimho-home-ama-top-v1,
.mimho-home-ama-bottom-v1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.mimho-home-ama-top-v1 span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  background: rgba(0,221,255,0.09);
  border: 1px solid rgba(0,221,255,0.22);
  color: #a7f3ff;
  padding: 0 8px;
  font-size: 0.72rem;
  font-weight: 950;
}

.mimho-home-ama-card-v1 h3 {
  margin: 10px 0 6px;
  color: var(--text);
  font-size: 0.98rem;
}

.mimho-home-ama-card-v1 p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.42;
  overflow-wrap: anywhere;
}

.mimho-home-ama-meta-v1 {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin: 10px 0;
}

.mimho-home-ama-meta-v1 span {
  border-radius: 999px;
  background: rgba(255,255,255,0.055);
  color: var(--muted);
  padding: 5px 8px;
  font-size: 0.72rem;
  font-weight: 850;
}

.mimho-home-ama-bottom-v1 small {
  color: var(--muted);
}

.mimho-home-ama-empty-v1 {
  padding: 13px;
  border-radius: 18px;
  border: 1px dashed rgba(255,255,255,0.13);
  color: var(--muted);
  background: rgba(255,255,255,0.035);
}

.mimho-home-ama-empty-v1 a {
  margin-left: 8px;
}

@media screen and (max-width: 700px) {
  .mimho-home-ama-discovery-v1 {
    border-radius: 20px;
    padding: 13px;
  }

  .mimho-home-ama-actions-v1,
  .mimho-home-ama-actions-v1 a,
  .mimho-home-ama-bottom-v1 a {
    width: 100%;
  }

  .mimho-home-ama-empty-v1 a {
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
  }
}


/* =========================================================
   MIMHO Ledger - Anonymous Mode V1
   ========================================================= */

.mimho-anonymous-compose-v1 {
  margin-top: 12px;
  border: 1px solid rgba(124,255,178,0.18);
  background:
    radial-gradient(circle at 0% 0%, rgba(124,255,178,0.10), transparent 34%),
    rgba(255,255,255,0.035);
  border-radius: 16px;
  padding: 12px;
}

.mimho-anonymous-compose-v1 label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
}

.mimho-anonymous-compose-v1 input {
  width: 18px;
  height: 18px;
  accent-color: #7cffb2;
}

.mimho-anonymous-compose-v1 small {
  display: block;
  color: var(--muted);
  margin-top: 7px;
  line-height: 1.35;
}

.anonymous-avatar-v1 {
  background:
    radial-gradient(circle at 35% 25%, rgba(124,255,178,0.85), transparent 22%),
    linear-gradient(135deg, rgba(124,255,178,0.22), rgba(0,221,255,0.14));
  border: 1px solid rgba(124,255,178,0.28);
  box-shadow: 0 0 18px rgba(124,255,178,0.12);
}

.anonymous-avatar-v1::after {
  content: "◌";
  color: #7cffb2;
  font-weight: 950;
}

.anonymous-author-v1 {
  color: #7cffb2;
  font-weight: 950;
}

.post-card:has(.anonymous-author-v1) {
  border-color: rgba(124,255,178,0.16);
}

@media screen and (max-width: 640px) {
  .mimho-anonymous-compose-v1 {
    padding: 11px;
  }
}


/* =========================================================
   MIMHO Ledger - Anonymous Global Mode V1
   ========================================================= */

.mimho-anonymous-compose-v1 {
  margin-top: 12px;
  border: 1px solid rgba(124,255,178,0.18);
  background:
    radial-gradient(circle at 0% 0%, rgba(124,255,178,0.10), transparent 34%),
    rgba(255,255,255,0.035);
  border-radius: 16px;
  padding: 12px;
}

.mimho-anonymous-compose-v1 label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
}

.mimho-anonymous-compose-v1 input {
  width: 18px;
  height: 18px;
  accent-color: #7cffb2;
}

.mimho-anonymous-compose-v1 small {
  display: block;
  color: var(--muted);
  margin-top: 7px;
  line-height: 1.35;
}

.anonymous-avatar-v1 {
  background:
    radial-gradient(circle at 35% 25%, rgba(124,255,178,0.85), transparent 22%),
    linear-gradient(135deg, rgba(124,255,178,0.22), rgba(0,221,255,0.14));
  border: 1px solid rgba(124,255,178,0.28);
  box-shadow: 0 0 18px rgba(124,255,178,0.12);
}

.anonymous-avatar-v1::after {
  content: "◌";
  color: #7cffb2;
  font-weight: 950;
}

.anonymous-author-v1 {
  color: #7cffb2;
  font-weight: 950;
}

.post-card:has(.anonymous-author-v1) {
  border-color: rgba(124,255,178,0.16);
}

@media screen and (max-width: 640px) {
  .mimho-anonymous-compose-v1 {
    padding: 11px;
  }
}


/* =========================================================
   MIMHO Ledger - Anonymous Profile Toggle V1
   ========================================================= */

.profile-anonymous-settings-v1 {
  width: 100%;
  margin-top: 14px;
}

.profile-anonymous-settings-v1 label {
  justify-content: flex-start;
}

.profile-anonymous-settings-v1 small {
  max-width: 680px;
}

@media screen and (max-width: 640px) {
  .profile-anonymous-settings-v1 {
    margin-top: 12px;
  }
}


/* =========================================================
   MIMHO Ledger - Copy Signals V1
   ========================================================= */

.signals-disclaimer-v1,
.signals-create-card-v1,
.copy-signal-card-v1,
.signals-empty-v1 {
  border: 1px solid rgba(124,255,178,0.16);
  background: rgba(8, 12, 18, 0.94);
  border-radius: 22px;
  padding: 16px;
}

.signals-disclaimer-v1 {
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.45;
}

.signals-disclaimer-v1 strong {
  color: #ffd28a;
}

.signals-create-card-v1 {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.signals-create-card-v1 h2,
.signals-list-head-v1 h2 {
  margin: 0;
  color: var(--text);
}

.signals-form-grid-v1 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.signals-create-card-v1 label {
  color: var(--text);
  font-weight: 850;
  display: grid;
  gap: 6px;
}

.signals-create-card-v1 input,
.signals-create-card-v1 select,
.signals-create-card-v1 textarea,
.signals-list-head-v1 select {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.28);
  color: var(--text);
  padding: 11px 12px;
  outline: none;
}

.signals-create-card-v1 textarea {
  resize: vertical;
}

.signals-list-head-v1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 18px 0 10px;
}

.signals-list-head-v1 div {
  display: flex;
  gap: 8px;
  align-items: center;
}

.signals-list-head-v1 button {
  border-radius: 999px;
  border: 1px solid rgba(124,255,178,0.22);
  background: rgba(124,255,178,0.08);
  color: #7cffb2;
  font-weight: 900;
  padding: 10px 14px;
  cursor: pointer;
}

.signals-status-v1 {
  color: var(--muted);
  margin: 8px 0 12px;
}

.signals-status-v1.ok {
  color: #7cffb2;
}

.signals-status-v1.error {
  color: #ff9a9a;
}

.signals-list-v1 {
  display: grid;
  gap: 12px;
}

.copy-signal-card-v1 {
  position: relative;
  overflow: hidden;
}

.copy-signal-card-v1.long,
.copy-signal-card-v1.spot_buy {
  border-color: rgba(124,255,178,0.24);
}

.copy-signal-card-v1.short {
  border-color: rgba(255,106,106,0.24);
}

.copy-signal-card-v1.watch {
  border-color: rgba(0,221,255,0.20);
}

.copy-signal-card-v1.tp1,
.copy-signal-card-v1.tp2,
.copy-signal-card-v1.tp3 {
  box-shadow: 0 0 0 1px rgba(124,255,178,0.10);
}

.copy-signal-card-v1.stop {
  box-shadow: 0 0 0 1px rgba(255,106,106,0.10);
}

.copy-signal-top-v1 {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.copy-signal-top-v1 strong {
  display: block;
  color: var(--text);
  font-size: 1.2rem;
}

.copy-signal-top-v1 span,
.signal-author {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
}

.copy-signal-badges-v1 {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-end;
}

.copy-signal-badges-v1 em {
  border-radius: 999px;
  background: rgba(255,255,255,0.065);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  padding: 5px 8px;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 850;
  text-transform: uppercase;
}

.copy-signal-badges-v1 .risk-high {
  color: #ff9a9a;
}

.copy-signal-badges-v1 .risk-low {
  color: #7cffb2;
}

.copy-signal-price-grid-v1 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0;
}

.copy-signal-price-grid-v1 div {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
  border-radius: 16px;
  padding: 10px;
}

.copy-signal-price-grid-v1 span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  margin-bottom: 4px;
}

.copy-signal-price-grid-v1 strong {
  color: #7cffb2;
}

.copy-signal-targets-v1 {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.signal-target {
  border-radius: 999px;
  background: rgba(124,255,178,0.08);
  border: 1px solid rgba(124,255,178,0.14);
  color: #7cffb2;
  padding: 5px 8px;
  font-size: 0.76rem;
  font-weight: 850;
}

.signal-target.muted {
  background: rgba(255,255,255,0.045);
  color: var(--muted);
  border-color: rgba(255,255,255,0.08);
}

.copy-signal-thesis-v1 {
  color: var(--text);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.copy-signal-actions-v1 {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.copy-signal-actions-v1 button {
  border-radius: 999px;
  border: 1px solid rgba(124,255,178,0.20);
  background: rgba(124,255,178,0.08);
  color: #7cffb2;
  font-weight: 900;
  padding: 8px 11px;
  cursor: pointer;
}

.signals-empty-v1 {
  color: var(--muted);
}

@media screen and (max-width: 760px) {
  .signals-form-grid-v1,
  .copy-signal-price-grid-v1 {
    grid-template-columns: 1fr;
  }

  .signals-list-head-v1,
  .signals-list-head-v1 div {
    align-items: stretch;
    flex-direction: column;
  }

  .copy-signal-actions-v1 button {
    flex: 1 1 calc(50% - 8px);
  }
}


/* =========================================================
   MIMHO Ledger - Signal Announcement Post V1
   ========================================================= */

.signal-announcement-post-v1 {
  border-color: rgba(124,255,178,0.22);
  background:
    radial-gradient(circle at 0% 0%, rgba(124,255,178,0.10), transparent 34%),
    radial-gradient(circle at 100% 0%, rgba(0,221,255,0.07), transparent 34%),
    rgba(8, 12, 18, 0.96);
  cursor: pointer;
}

.signal-announcement-post-v1:hover {
  border-color: rgba(124,255,178,0.34);
}

.signal-announcement-badge-v1 {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(124,255,178,0.18);
  background: rgba(124,255,178,0.08);
  color: #7cffb2;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-top: 6px;
}

.signal-announcement-body-v1 {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
  border-radius: 18px;
  padding: 13px;
  margin-top: 12px;
}

.signal-announcement-body-v1 h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 1.05rem;
}

.signal-announcement-body-v1 p {
  color: var(--text);
  line-height: 1.45;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  margin: 0;
}

.signal-announcement-cta-v1 {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}

.signal-announcement-cta-v1 a {
  border-radius: 999px;
  border: 1px solid rgba(124,255,178,0.22);
  color: #7cffb2;
  background: rgba(124,255,178,0.08);
  text-decoration: none;
  font-weight: 950;
  padding: 9px 12px;
  font-size: 0.82rem;
}

@media screen and (max-width: 760px) {
  .signal-announcement-cta-v1 a {
    width: 100%;
    text-align: center;
  }
}


/* =========================================================
   MIMHO Ledger - Sentimeter V1
   ========================================================= */

.mimho-sentimeter-v1 {
  border: 1px solid rgba(124,255,178,0.15);
  background:
    radial-gradient(circle at 0% 0%, rgba(124,255,178,0.08), transparent 34%),
    radial-gradient(circle at 100% 0%, rgba(0,221,255,0.06), transparent 34%),
    rgba(8, 12, 18, 0.92);
  border-radius: 20px;
  padding: 12px;
  margin: 0 0 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}

.mimho-sentimeter-top-v1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.mimho-sentimeter-top-v1 > div {
  min-width: 0;
}

.mimho-sentimeter-kicker-v1 {
  display: block;
  color: #7cffb2;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.mimho-sentimeter-top-v1 strong {
  color: var(--text);
  font-size: 0.98rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#mimhoSentimeterToggleV1 {
  border: 1px solid rgba(124,255,178,0.20);
  background: rgba(124,255,178,0.08);
  color: #7cffb2;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 950;
  cursor: pointer;
  flex: 0 0 auto;
}

.mimho-sentimeter-bar-v1 {
  display: flex;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  margin: 10px 0 8px;
}

.mimho-sentimeter-segment-v1 {
  display: block;
  min-width: 0;
  transition: width 180ms ease;
}

.mimho-sentimeter-segment-v1.bullish {
  background: rgba(124,255,178,0.95);
}

.mimho-sentimeter-segment-v1.bearish {
  background: rgba(255,106,106,0.85);
}

.mimho-sentimeter-segment-v1.neutral {
  background: rgba(255,255,255,0.45);
}

.mimho-sentimeter-segment-v1.fear {
  background: rgba(255,210,138,0.90);
}

.mimho-sentimeter-segment-v1.fomo {
  background: rgba(0,221,255,0.85);
}

.mimho-sentimeter-summary-v1 {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.mimho-sentimeter-summary-v1::-webkit-scrollbar {
  display: none;
}

.mimho-sentimeter-summary-v1 span {
  color: var(--muted);
  font-size: 0.72rem;
  white-space: nowrap;
}

.mimho-sentimeter-actions-v1 {
  display: none;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
  margin-top: 10px;
}

.mimho-sentimeter-v1.expanded .mimho-sentimeter-actions-v1 {
  display: grid;
}

.mimho-sentimeter-actions-v1 button {
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-radius: 14px;
  padding: 8px 6px;
  cursor: pointer;
  display: grid;
  gap: 2px;
  text-align: center;
}

.mimho-sentimeter-actions-v1 button.active {
  border-color: rgba(124,255,178,0.34);
  background: rgba(124,255,178,0.10);
}

.mimho-sentimeter-actions-v1 button span {
  font-size: 1rem;
}

.mimho-sentimeter-actions-v1 button strong {
  font-size: 0.72rem;
}

.mimho-sentimeter-actions-v1 button em {
  color: var(--muted);
  font-size: 0.66rem;
  font-style: normal;
}

.mimho-sentimeter-foot-v1 {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.68rem;
}

.mimho-sentimeter-status-v1,
.mimho-sentimeter-loading-v1 {
  color: var(--muted);
  font-size: 0.76rem;
  margin-top: 8px;
}

.mimho-sentimeter-status-v1.ok {
  color: #7cffb2;
}

.mimho-sentimeter-status-v1.error {
  color: #ff9a9a;
}

@media screen and (max-width: 760px) {
  .mimho-sentimeter-v1 {
    border-radius: 16px;
    padding: 10px;
    margin-bottom: 10px;
  }

  .mimho-sentimeter-actions-v1 {
    grid-template-columns: repeat(5, minmax(74px, 1fr));
    overflow-x: auto;
    scrollbar-width: none;
  }

  .mimho-sentimeter-actions-v1::-webkit-scrollbar {
    display: none;
  }

  .mimho-sentimeter-foot-v1 {
    flex-direction: column;
    gap: 2px;
  }
}


/* =========================================================
   MIMHO Ledger - External Repost V1
   ========================================================= */

.mimho-external-repost-card-v1 {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(124,255,178,0.16);
  background:
    radial-gradient(circle at 0% 0%, rgba(124,255,178,0.08), transparent 32%),
    rgba(255,255,255,0.035);
  border-radius: 18px;
  padding: 12px;
  margin: 12px 0 2px;
  text-decoration: none;
  color: var(--text);
  overflow: hidden;
}

.mimho-external-repost-card-v1:hover {
  border-color: rgba(124,255,178,0.34);
  background:
    radial-gradient(circle at 0% 0%, rgba(124,255,178,0.11), transparent 32%),
    rgba(255,255,255,0.045);
}

.mimho-external-repost-icon-v1 {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(124,255,178,0.18);
  background: rgba(124,255,178,0.08);
  color: #7cffb2;
  font-weight: 950;
  font-size: 1.15rem;
}

.mimho-external-repost-main-v1 {
  min-width: 0;
}

.mimho-external-repost-kicker-v1 {
  display: block;
  color: #7cffb2;
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.mimho-external-repost-main-v1 strong {
  display: block;
  color: var(--text);
  font-size: 0.98rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mimho-external-repost-main-v1 p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mimho-external-repost-main-v1 small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.25;
}

.mimho-external-repost-open-v1 {
  border: 1px solid rgba(124,255,178,0.18);
  background: rgba(124,255,178,0.08);
  color: #7cffb2;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.74rem;
  font-weight: 950;
  white-space: nowrap;
}

.mimho-external-repost-card-v1.video .mimho-external-repost-icon-v1 {
  border-color: rgba(255,80,80,0.22);
  background: rgba(255,80,80,0.08);
  color: #ff9a9a;
}

.mimho-external-repost-card-v1.chain .mimho-external-repost-icon-v1 {
  border-color: rgba(0,221,255,0.22);
  background: rgba(0,221,255,0.08);
  color: #7deaff;
}

@media screen and (max-width: 760px) {
  .mimho-external-repost-card-v1 {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    padding: 11px;
    border-radius: 16px;
  }

  .mimho-external-repost-icon-v1 {
    width: 38px;
    height: 38px;
    border-radius: 13px;
  }

  .mimho-external-repost-open-v1 {
    grid-column: 1 / -1;
    text-align: center;
    padding: 8px 10px;
  }

  .mimho-external-repost-main-v1 small {
    display: none;
  }
}


/* =========================================================
   MIMHO Ledger - Profile Mobile Complete V1
   ========================================================= */

.mimho-profile-mobile-actions-v1 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.mimho-profile-mobile-actions-v1 button,
.mimho-profile-mobile-actions-v1 a {
  border: 1px solid rgba(124,255,178,0.18);
  background: rgba(124,255,178,0.08);
  color: #7cffb2;
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 0.78rem;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mimho-profile-mobile-status-v1 {
  display: none;
  margin-top: 10px;
  color: #7cffb2;
  font-size: 0.8rem;
  font-weight: 850;
}

.mimho-profile-mobile-status-v1.show {
  display: block;
}

.profile-wallet {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.profile-bio {
  overflow-wrap: anywhere;
}

.profile-meta-row {
  overflow-wrap: anywhere;
}

.profile-meta-row a {
  overflow-wrap: anywhere;
}

@media screen and (max-width: 760px) {
  .profile-hero {
    border-radius: 18px;
    padding: 14px;
    margin-bottom: 12px;
  }

  .profile-hero-top {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
  }

  .profile-avatar {
    width: 62px;
    height: 62px;
    min-width: 62px;
    border-radius: 20px;
  }

  .profile-hero-main {
    min-width: 0;
  }

  .profile-title-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    align-items: start;
  }

  .profile-title-row h2 {
    font-size: 1.18rem;
    line-height: 1.15;
    margin-bottom: 4px;
    overflow-wrap: anywhere;
  }

  .profile-wallet {
    font-size: 0.72rem;
    line-height: 1.35;
    max-width: 100%;
    opacity: 0.78;
  }

  .profile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
  }

  .profile-pill,
  .profile-follow-btn {
    min-height: 34px;
    border-radius: 999px;
    font-size: 0.75rem;
    padding: 8px 10px;
  }

  .mimho-profile-mobile-actions-v1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    grid-column: 1 / -1;
  }

  .mimho-profile-mobile-actions-v1 button,
  .mimho-profile-mobile-actions-v1 a {
    justify-content: center;
    width: 100%;
    min-height: 38px;
    padding: 9px 8px;
    font-size: 0.74rem;
  }

  .mimho-profile-mobile-actions-v1 a:last-child {
    grid-column: 1 / -1;
  }

  .profile-bio {
    margin-top: 10px;
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .profile-meta-row {
    display: flex;
    gap: 7px;
    overflow-x: auto;
    padding-bottom: 2px;
    margin-top: 10px;
    scrollbar-width: none;
  }

  .profile-meta-row::-webkit-scrollbar {
    display: none;
  }

  .profile-meta-row span,
  .profile-meta-row a {
    flex: 0 0 auto;
    max-width: 220px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.035);
    border-radius: 999px;
    padding: 6px 9px;
    font-size: 0.72rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .profile-score-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    border-radius: 18px;
    padding: 12px;
    margin-top: 12px;
  }

  .profile-score-label {
    font-size: 0.72rem;
  }

  .profile-score-card strong {
    font-size: 1.55rem;
    line-height: 1;
  }

  .profile-score-card small {
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .profile-stats-grid,
  .profile-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .profile-stats-grid > *,
  .profile-stats > * {
    min-width: 0;
    border-radius: 16px;
    padding: 10px;
  }

  .profile-score-breakdown {
    border-radius: 18px;
    padding: 12px;
    margin-top: 12px;
  }

  .profile-score-breakdown-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .profile-score-breakdown-head h3 {
    font-size: 1rem;
  }

  .profile-score-breakdown-grid {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .profile-score-breakdown-item {
    border-radius: 14px;
    padding: 9px;
  }

  .profile-score-breakdown-item span {
    font-size: 0.78rem;
  }

  .profile-score-breakdown-item strong {
    font-size: 0.9rem;
  }

  .profile-section,
  .profile-posts,
  .profile-top-posts {
    margin-top: 12px;
  }

  .profile-top-posts .post-card,
  .profile-posts .post-card {
    border-radius: 18px;
  }
}

@media screen and (max-width: 420px) {
  .profile-hero-top {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 10px;
  }

  .profile-avatar {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 17px;
  }

  .profile-title-row h2 {
    font-size: 1.06rem;
  }

  .profile-wallet {
    font-size: 0.68rem;
  }

  .mimho-profile-mobile-actions-v1 {
    grid-template-columns: 1fr;
  }

  .mimho-profile-mobile-actions-v1 a:last-child {
    grid-column: auto;
  }
}


/* =========================================================
   MIMHO Ledger - Profile Local Mobile V1
   ========================================================= */

.mimho-profile-local-mobile-mount-v1 {
  display: none;
}

@media screen and (max-width: 900px) {
  .mimho-profile-local-mobile-mount-v1 {
    display: block;
    margin: 12px 0;
  }

  .mimho-profile-local-mobile-mount-v1 .profile-card,
  .mimho-profile-local-mobile-card-v1 {
    display: block;
    width: 100%;
    border-radius: 18px;
    margin: 0 0 12px;
  }

  .mimho-profile-local-mobile-card-v1::before {
    content: "Editar perfil";
    display: block;
    color: #7cffb2;
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  .mimho-profile-local-mobile-card-v1 input,
  .mimho-profile-local-mobile-card-v1 textarea {
    width: 100%;
    max-width: 100%;
  }

  .mimho-profile-local-mobile-card-v1 button {
    width: 100%;
    justify-content: center;
    min-height: 42px;
    border-radius: 999px;
  }
}



/* =========================================================
   MIMHO Ledger - Pure Black Background V1
   Fundo preto real, sem tom marrom.
   ========================================================= */

:root {
  --bg: #000000 !important;
  --background: #000000 !important;
  --page-bg: #000000 !important;
  --app-bg: #000000 !important;
}

html,
body {
  background: #000000 !important;
  background-color: #000000 !important;
}

body::before,
body::after {
  background: transparent !important;
}

.ledger-shell,
.ledger-app,
.app-shell,
.main-shell,
.page-shell,
.feed-shell,
.feed-layout,
.ledger-layout,
main {
  background: #000000 !important;
  background-color: #000000 !important;
}

.sidebar-left,
.sidebar-right,
.feed-center,
.feed-main,
.content-main {
  background-color: transparent !important;
}


/* =========================================================
   MIMHO Ledger - Auth Session V4 Status
   ========================================================= */

.mimho-ledger-auth-session-status-v4 {
  position: fixed;
  left: 50%;
  bottom: 74px;
  transform: translateX(-50%) translateY(20px);
  z-index: 999999;
  max-width: min(520px, calc(100vw - 28px));
  border: 1px solid rgba(124,255,178,0.28);
  background: rgba(0,0,0,0.94);
  color: #7cffb2;
  border-radius: 999px;
  padding: 11px 16px;
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  box-shadow: 0 20px 70px rgba(0,0,0,0.55);
}

.mimho-ledger-auth-session-status-v4.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media screen and (max-width: 760px) {
  .mimho-ledger-auth-session-status-v4 {
    bottom: 84px;
    border-radius: 18px;
    width: calc(100vw - 28px);
  }
}


/* =========================================================
   MIMHO Ledger - Mobile Scroll Fix V1
   Mantém rolagem nativa do celular sem content-visibility pesado.
   ========================================================= */

html,
body {
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: auto;
}

.feed-center,
#ledgerFeed,
.post-card,
.echo-card {
  touch-action: pan-y;
}

.post-card,
.echo-card {
  contain: layout paint;
}

.post-card img,
.post-card video,
.post-card iframe {
  max-width: 100%;
}

/* =========================================================
   MIMHO Ledger - Mobile Signals Nav V1
   Adiciona Signals no menu inferior mobile.
   ========================================================= */

.mobile-bottom-nav {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.mobile-bottom-nav a {
  min-width: 0;
}

/* =========================================================
   MIMHO Ledger - Mobile Signals Nav V2
   Garante espaço para Signals no menu inferior mobile.
   ========================================================= */

.mobile-bottom-nav,
.mobile-nav-bottom,
.bottom-mobile-nav {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.mobile-bottom-nav a,
.mobile-nav-bottom a,
.bottom-mobile-nav a {
  min-width: 0;
}

/* MIMHO_LEDGER_LAYOUT_RAILS_FIXED_V1
   Ajuste visual desktop:
   - mantém a barra lateral esquerda fixa/sticky durante a rolagem;
   - faz a coluna direita não "morrer" no meio da tela;
   - mantém as linhas finas do feed central contínuas.
   NÃO altera carteira, conexão, sessão, assinatura ou JS.
*/
@media (min-width: 1024px) {
  body[data-page] .ledger-layout,
  body[data-page] .ledger-main,
  body[data-page] .main-layout,
  body[data-page] .app-layout,
  body[data-page] .page-layout,
  body[data-page] .layout-grid,
  body[data-page] .ledger-grid {
    align-items: stretch !important;
    overflow: visible !important;
  }

  body[data-page] .sidebar-left,
  body[data-page] .left-sidebar,
  body[data-page] .sidebar-nav {
    position: sticky !important;
    top: 92px !important;
    align-self: flex-start !important;
    max-height: calc(100vh - 108px) !important;
    overflow-y: auto !important;
    z-index: 35 !important;
    scrollbar-width: thin;
  }

  body[data-page] .sidebar-right {
    position: sticky !important;
    top: 92px !important;
    align-self: flex-start !important;
    min-height: calc(100vh - 108px) !important;
    max-height: calc(100vh - 108px) !important;
    overflow-y: auto !important;
    z-index: 20 !important;
    scrollbar-width: thin;
  }

  body[data-page] .feed-center {
    position: relative !important;
    align-self: stretch !important;
    min-height: calc(100vh - 92px) !important;
  }

  body[data-page] .feed-center::before,
  body[data-page] .feed-center::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.075);
    z-index: 0;
  }

  body[data-page] .feed-center::before {
    left: 0;
  }

  body[data-page] .feed-center::after {
    right: 0;
  }

  body[data-page] .feed-center > * {
    position: relative;
    z-index: 1;
  }
}

@media (max-width: 1023px) {
  body[data-page] .feed-center::before,
  body[data-page] .feed-center::after {
    display: none !important;
  }
}
