:root {
      --bg: #050806;
      --panel: rgba(15, 24, 19, 0.92);
      --panel-2: rgba(20, 31, 24, 0.86);
      --line: rgba(159, 255, 84, 0.18);
      --lime: #9fff54;
      --lime-2: #69ff85;
      --yellow: #ffe45c;
      --pink: #ff4fc8;
      --cyan: #54e8ff;
      --red: #ff5e5e;
      --orange: #ff9a42;
      --white: #f3fff5;
      --muted: #91a498;
      --shadow: 0 18px 55px rgba(0, 0, 0, .42);
      --radius: 18px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      min-height: 100vh;
      color: var(--white);
      background:
        radial-gradient(circle at 12% 8%, rgba(105,255,133,.11), transparent 28%),
        radial-gradient(circle at 88% 10%, rgba(255,79,200,.08), transparent 24%),
        linear-gradient(180deg, #08100b 0%, var(--bg) 38%, #030504 100%);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: .17;
      background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
      background-size: 42px 42px;
      mask-image: linear-gradient(to bottom, black, transparent 78%);
      z-index: -1;
    }

    a { color: inherit; text-decoration: none; }
    button, input, textarea, select { font: inherit; }
    button { cursor: pointer; }
    .hidden { display: none !important; }

    .top-banner {
      position: sticky;
      top: 0;
      z-index: 50;
      height: 40px;
      border-bottom: 1px solid rgba(159,255,84,.28);
      background: #0a120d;
      overflow: hidden;
      box-shadow: 0 8px 28px rgba(0,0,0,.26);
    }
    .ticker-track {
      display: flex;
      width: max-content;
      min-width: 200%;
      animation: ticker 38s linear infinite;
      height: 100%;
      align-items: center;
    }
    .ticker-track:hover { animation-play-state: paused; }
    .ticker-set { display: flex; align-items: center; white-space: nowrap; }
    .ticker-item {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 0 28px;
      height: 40px;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: #eaffde;
    }
    .ticker-item::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--lime);
      box-shadow: 0 0 14px var(--lime);
    }
    .ticker-item.sponsored::after {
      content: "SPONSORED";
      padding: 3px 6px;
      border: 1px solid rgba(255,228,92,.45);
      border-radius: 999px;
      color: var(--yellow);
      font-size: 8px;
      letter-spacing: .08em;
    }
    @keyframes ticker { to { transform: translateX(-50%); } }

    .shell { width: min(1480px, calc(100% - 28px)); margin: 0 auto; padding: 22px 0 56px; }

    .hero {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(159,255,84,.24);
      border-radius: 26px;
      padding: 0;
      background:
        linear-gradient(130deg, rgba(159,255,84,.11), rgba(7,15,10,.90) 44%, rgba(255,79,200,.07)),
        rgba(8,14,10,.94);
      box-shadow: var(--shadow);
    }
    .hero-visual {
      position: relative;
      width: 100%;
      overflow: hidden;
      border-bottom: 1px solid rgba(159,255,84,.18);
      background: #020403;
    }
    .hero-visual::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(180deg, transparent 62%, rgba(3,7,4,.54));
    }
    .hero-banner {
      display: block;
      width: 100%;
      height: auto;
      aspect-ratio: 3 / 1;
      object-fit: cover;
      object-position: center;
    }
    .hero::after {
      content: "";
      position: absolute;
      width: 340px;
      height: 340px;
      right: -160px;
      top: -180px;
      border-radius: 50%;
      border: 42px solid rgba(159,255,84,.045);
      box-shadow: 0 0 0 28px rgba(255,79,200,.026), 0 0 0 58px rgba(84,232,255,.018);
    }
    .hero-row { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 20px 24px 0; }
    .brand { display: flex; gap: 16px; align-items: center; min-width: 0; }
    .brand-logos { display: flex; align-items: center; flex: 0 0 auto; }
    .mark {
      flex: 0 0 auto;
      width: 74px;
      height: 74px;
      overflow: hidden;
      display: grid;
      place-items: center;
      border-radius: 20px;
      border: 2px solid var(--lime);
      background: #050806;
      box-shadow: inset 0 0 22px rgba(159,255,84,.16), 0 0 25px rgba(159,255,84,.12);
      transform: rotate(-3deg);
    }
    .mark.tag-mark {
      width: 52px;
      height: 52px;
      margin-left: -12px;
      margin-top: 30px;
      border-color: var(--pink);
      border-radius: 16px;
      transform: rotate(4deg);
      box-shadow: 0 0 22px rgba(255,79,200,.14);
    }
    .mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .brand-copy { min-width: 0; }
    .eyebrow { color: var(--lime); font-size: 11px; font-weight: 900; letter-spacing: .2em; text-transform: uppercase; }
    h1 { margin: 4px 0 5px; font-size: clamp(28px, 4vw, 52px); line-height: .95; letter-spacing: -.045em; text-transform: uppercase; }
    .hero-sub { color: #bad0c0; max-width: 760px; font-size: 14px; line-height: 1.55; }
    .hero-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }

    .btn {
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 12px;
      padding: 10px 14px;
      color: var(--white);
      background: rgba(255,255,255,.055);
      font-weight: 850;
      font-size: 12px;
      letter-spacing: .03em;
      transition: .18s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 40px;
    }
    .btn:hover { transform: translateY(-1px); border-color: rgba(159,255,84,.46); background: rgba(159,255,84,.09); }
    .btn.primary { color: #071006; border-color: var(--lime); background: var(--lime); box-shadow: 0 0 22px rgba(159,255,84,.17); }
    .btn.primary:hover { background: #b6ff7e; }
    .btn.warn { border-color: rgba(255,228,92,.45); color: var(--yellow); }
    .btn.danger { border-color: rgba(255,94,94,.45); color: #ff9d9d; }
    .btn.small { min-height: 34px; padding: 7px 10px; font-size: 11px; border-radius: 10px; }
    .btn.icon { width: 40px; padding: 0; }

    .status-strip {
      position: relative;
      z-index: 1;
      margin-top: 18px;
      padding: 0 24px 22px;
      display: flex;
      gap: 10px;
      align-items: center;
      flex-wrap: wrap;
      color: var(--muted);
      font-size: 11px;
    }
    .pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 6px 9px;
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(0,0,0,.24);
      border-radius: 999px;
      font-size: 10px;
      font-weight: 850;
      letter-spacing: .06em;
      text-transform: uppercase;
    }
    .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--muted); }
    .dot.live { background: var(--lime); box-shadow: 0 0 10px var(--lime); }
    .dot.warn { background: var(--yellow); box-shadow: 0 0 10px var(--yellow); }
    .dot.bad { background: var(--red); box-shadow: 0 0 10px var(--red); }

    .metrics { margin: 18px 0; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
    .metric {
      min-width: 0;
      padding: 16px;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: linear-gradient(155deg, rgba(159,255,84,.07), rgba(12,20,15,.90) 58%);
      box-shadow: 0 12px 30px rgba(0,0,0,.18);
    }
    .metric-label { color: var(--muted); font-size: 10px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .metric-value { margin-top: 8px; font-size: clamp(20px, 2.1vw, 32px); font-weight: 950; letter-spacing: -.04em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .metric-foot { margin-top: 5px; color: #a9b7ad; font-size: 10px; }

    .grid-main { display: grid; grid-template-columns: 1.45fr .85fr; gap: 16px; align-items: start; }
    .stack { display: grid; gap: 16px; }
    .panel {
      border: 1px solid rgba(159,255,84,.16);
      border-radius: var(--radius);
      background: var(--panel);
      box-shadow: 0 15px 36px rgba(0,0,0,.25);
      overflow: hidden;
    }
    .panel-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      padding: 15px 16px;
      border-bottom: 1px solid rgba(255,255,255,.075);
      background: rgba(255,255,255,.018);
    }
    .panel-title { font-weight: 950; letter-spacing: -.02em; text-transform: uppercase; font-size: 14px; }
    .panel-title-lockup { display: flex; align-items: center; gap: 10px; min-width: 0; }
    .panel-brand-logo { width: 38px; height: 38px; flex: 0 0 auto; border-radius: 11px; border: 1px solid rgba(159,255,84,.28); object-fit: cover; background: #050806; }
    .panel-kicker { margin-top: 2px; color: var(--muted); font-size: 10px; }
    .panel-body { padding: 16px; }

    .market-top { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 9px; margin-bottom: 14px; }
    .market-stat { padding: 11px; border-radius: 12px; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.07); }
    .market-stat span { display: block; color: var(--muted); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
    .market-stat strong { display: block; margin-top: 5px; font-size: 15px; overflow: hidden; text-overflow: ellipsis; }
    .positive { color: var(--lime-2) !important; }
    .negative { color: #ff8585 !important; }

    .chart-wrap { position: relative; height: 260px; border: 1px solid rgba(255,255,255,.07); border-radius: 14px; overflow: hidden; background: #07100b; }
    #priceChart { width: 100%; height: 100%; display: block; }
    .chart-empty { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; color: var(--muted); padding: 24px; font-size: 12px; }
    .chart-caption { display: flex; justify-content: space-between; gap: 10px; align-items: center; margin-top: 10px; color: var(--muted); font-size: 10px; }
    .chart-frame { width: 100%; height: 420px; border: 0; border-radius: 14px; background: #07100b; }
    .featured-clip {
      margin-top: 14px;
      display: grid;
      grid-template-columns: 190px minmax(0, 1fr);
      gap: 14px;
      align-items: center;
      padding: 10px;
      border: 1px solid rgba(159,255,84,.18);
      border-radius: 15px;
      background: linear-gradient(135deg, rgba(159,255,84,.07), rgba(255,79,200,.045));
      transition: .18s ease;
    }
    .featured-clip:hover { transform: translateY(-1px); border-color: rgba(159,255,84,.42); }
    .featured-clip img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 11px; border: 1px solid rgba(255,255,255,.08); }
    .featured-clip-copy { min-width: 0; }
    .featured-clip-kicker { color: var(--lime); font-size: 9px; font-weight: 950; letter-spacing: .13em; text-transform: uppercase; }
    .featured-clip-title { margin-top: 5px; font-size: 14px; font-weight: 950; }
    .featured-clip-meta { margin-top: 5px; color: var(--muted); font-size: 10px; line-height: 1.45; overflow-wrap: anywhere; }

    .wallet-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .wallet-card {
      position: relative;
      overflow: hidden;
      padding: 15px;
      border-radius: 15px;
      border: 1px solid rgba(255,255,255,.085);
      background: linear-gradient(145deg, rgba(255,255,255,.036), rgba(0,0,0,.13));
    }
    .wallet-card::after { content: ""; position: absolute; right: -24px; top: -24px; width: 74px; height: 74px; border-radius: 50%; background: var(--wallet-color, var(--lime)); opacity: .08; filter: blur(2px); }
    .wallet-head { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; }
    .wallet-name { font-size: 13px; font-weight: 950; text-transform: uppercase; }
    .wallet-purpose { margin-top: 3px; color: var(--muted); font-size: 10px; line-height: 1.35; min-height: 27px; }
    .wallet-badge { border: 1px solid rgba(159,255,84,.28); color: var(--lime); background: rgba(159,255,84,.06); padding: 4px 7px; border-radius: 999px; font-size: 8px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
    .wallet-balance { margin-top: 15px; font-size: 26px; line-height: 1; font-weight: 950; letter-spacing: -.04em; }
    .wallet-token { margin-top: 6px; color: #cdebd3; font-size: 11px; }
    .wallet-address { margin-top: 12px; padding: 8px 9px; border-radius: 9px; background: rgba(0,0,0,.28); color: #9fb1a4; font: 10px ui-monospace, SFMono-Regular, Menlo, monospace; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .wallet-actions { margin-top: 11px; display: grid; grid-template-columns: 1fr auto auto; gap: 7px; }

    .multisig-card { padding: 16px; }
    .multisig-score { display: flex; align-items: center; gap: 14px; }
    .ring {
      width: 88px;
      height: 88px;
      flex: 0 0 auto;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: conic-gradient(var(--lime) calc(var(--score, 0) * 1%), rgba(255,255,255,.08) 0);
      position: relative;
    }
    .ring::before { content: ""; position: absolute; inset: 8px; border-radius: 50%; background: #0c1510; border: 1px solid rgba(255,255,255,.08); }
    .ring strong { position: relative; font-size: 21px; }
    .ms-details { min-width: 0; flex: 1; }
    .ms-title { font-size: 18px; font-weight: 950; }
    .ms-sub { margin-top: 5px; color: var(--muted); font-size: 11px; line-height: 1.45; }
    .ms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 14px; }
    .ms-stat { padding: 10px; border-radius: 11px; border: 1px solid rgba(255,255,255,.075); background: rgba(255,255,255,.03); text-align: center; }
    .ms-stat b { display: block; font-size: 18px; }
    .ms-stat span { color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .06em; }
    .policy-box { margin-top: 12px; padding: 11px; border-radius: 11px; border: 1px solid rgba(255,228,92,.25); background: rgba(255,228,92,.055); color: #f4eebc; font-size: 10px; line-height: 1.5; }

    .flow { display: grid; grid-template-columns: 1fr auto 1fr; gap: 10px; align-items: center; }
    .flow-box { padding: 13px; border: 1px solid rgba(255,255,255,.08); border-radius: 12px; background: rgba(255,255,255,.03); }
    .flow-box b { display: block; font-size: 13px; }
    .flow-box span { color: var(--muted); font-size: 10px; }
    .flow-arrow { color: var(--lime); font-weight: 950; }
    .flow-targets { display: grid; grid-template-columns: repeat(2, 1fr); gap: 7px; }
    .flow-target { padding: 8px; border: 1px dashed rgba(159,255,84,.23); border-radius: 9px; font-size: 10px; color: #cde6d1; }

    .table-wrap { overflow: auto; max-height: 510px; }
    table { width: 100%; border-collapse: collapse; min-width: 840px; }
    th { position: sticky; top: 0; z-index: 2; padding: 10px 12px; color: var(--muted); background: #0c1510; font-size: 9px; text-transform: uppercase; letter-spacing: .09em; text-align: left; border-bottom: 1px solid rgba(255,255,255,.08); }
    td { padding: 11px 12px; font-size: 10px; border-bottom: 1px solid rgba(255,255,255,.055); vertical-align: middle; }
    tr:hover td { background: rgba(159,255,84,.025); }
    .tx-type { display: inline-flex; align-items: center; gap: 6px; font-weight: 900; text-transform: uppercase; font-size: 9px; }
    .tx-type::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
    .tx-in { color: var(--lime-2); }
    .tx-out { color: #ff8989; }
    .tx-internal { color: var(--cyan); }
    .note-good, .note-bad { display: inline-flex; align-items: center; gap: 5px; padding: 4px 6px; border-radius: 7px; font-size: 8px; font-weight: 900; text-transform: uppercase; }
    .note-good { background: rgba(105,255,133,.08); color: var(--lime-2); border: 1px solid rgba(105,255,133,.2); }
    .note-bad { background: rgba(255,94,94,.09); color: #ff9b9b; border: 1px solid rgba(255,94,94,.25); }
    .mono { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }

    .supporter-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
    .supporter { padding: 14px; border-radius: 14px; border: 1px solid rgba(255,255,255,.075); background: rgba(255,255,255,.026); min-width: 0; }
    .supporter-logo { width: 50px; height: 50px; border-radius: 13px; overflow: hidden; display: grid; place-items: center; font-weight: 950; color: #071006; background: linear-gradient(135deg, var(--lime), var(--yellow)); border: 1px solid rgba(255,255,255,.10); }
    .supporter-logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .supporter-name { margin-top: 11px; font-weight: 950; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .supporter-meta { margin-top: 3px; color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .06em; }
    .supporter-msg { margin-top: 9px; color: #bfd0c2; font-size: 10px; line-height: 1.45; min-height: 44px; }

    .footer { padding: 22px 4px 0; display: flex; justify-content: space-between; gap: 18px; color: var(--muted); font-size: 10px; line-height: 1.5; }
    .footer b { color: #cce3d0; }
    .footer-brand { display: flex; align-items: center; gap: 10px; }
    .footer-brand img { width: 42px; height: 42px; object-fit: cover; border-radius: 12px; border: 1px solid rgba(159,255,84,.22); }

    .modal-backdrop {
      position: fixed;
      inset: 0;
      z-index: 100;
      display: grid;
      place-items: center;
      padding: 18px;
      background: rgba(0,0,0,.78);
      backdrop-filter: blur(10px);
    }
    .modal {
      width: min(720px, 100%);
      max-height: min(90vh, 880px);
      overflow: auto;
      border-radius: 22px;
      border: 1px solid rgba(159,255,84,.25);
      background: #0a120d;
      box-shadow: 0 30px 90px rgba(0,0,0,.64);
    }
    .modal-head { position: sticky; top: 0; z-index: 5; display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 16px 18px; border-bottom: 1px solid rgba(255,255,255,.08); background: rgba(10,18,13,.97); }
    .modal-head h2 { margin: 0; font-size: 17px; text-transform: uppercase; }
    .modal-body { padding: 18px; }
    .form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .field { display: grid; gap: 6px; }
    .field.full { grid-column: 1 / -1; }
    .field label { color: #b5c9b8; font-size: 10px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
    .field input, .field textarea, .field select {
      width: 100%;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 11px;
      padding: 10px 11px;
      color: var(--white);
      background: rgba(255,255,255,.04);
      outline: none;
    }
    .field textarea { min-height: 90px; resize: vertical; }
    .field input:focus, .field textarea:focus, .field select:focus { border-color: rgba(159,255,84,.5); box-shadow: 0 0 0 3px rgba(159,255,84,.07); }
    .help { color: var(--muted); font-size: 9px; line-height: 1.45; }
    .modal-actions { display: flex; gap: 9px; justify-content: flex-end; flex-wrap: wrap; margin-top: 16px; }
    .config-wallets, .config-supporters, .config-banners { margin-top: 16px; display: grid; gap: 10px; }
    .config-wallet, .config-supporter, .config-banner { padding: 12px; border: 1px solid rgba(255,255,255,.08); border-radius: 13px; background: rgba(255,255,255,.025); }
    .config-wallet-grid, .config-supporter-grid, .config-banner-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px; }
    .config-section-title { margin-top: 22px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.08); display:flex; align-items:center; justify-content:space-between; gap:12px; font-size: 12px; font-weight: 950; text-transform: uppercase; letter-spacing: .05em; color: var(--lime); }
    .config-item-head { display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:10px; }
    .config-item-head b { font-size:12px; }
    .admin-strip { margin-bottom:14px; padding:12px 14px; border:1px solid rgba(159,255,84,.25); border-radius:13px; background:rgba(159,255,84,.06); display:flex; justify-content:space-between; gap:12px; align-items:center; flex-wrap:wrap; }
    .admin-address { font: 11px ui-monospace, SFMono-Regular, Menlo, monospace; color:var(--lime); overflow-wrap:anywhere; }
    .audit-list { margin-top:10px; display:grid; gap:8px; max-height:230px; overflow:auto; }
    .audit-item { border:1px solid rgba(255,255,255,.08); border-radius:10px; padding:9px 10px; background:rgba(0,0,0,.18); }
    .audit-item b { font-size:11px; }
    .audit-item small { display:block; color:var(--muted); margin-top:4px; }

    .donation-summary { display: flex; gap: 14px; align-items: center; padding: 13px; border: 1px solid rgba(159,255,84,.16); border-radius: 14px; background: rgba(159,255,84,.05); }
    .donation-icon { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; font-weight: 950; color: #071006; background: var(--lime); }
    .qr-wrap { display: grid; grid-template-columns: 240px 1fr; gap: 16px; margin-top: 16px; align-items: center; }
    #qrCode { width: 240px; height: 240px; padding: 10px; border-radius: 14px; background: white; display: grid; place-items: center; }
    #qrCode img, #qrCode canvas { max-width: 100%; height: auto !important; }
    .donation-link { word-break: break-all; padding: 10px; border-radius: 10px; background: rgba(0,0,0,.28); color: #9fb1a4; font: 9px ui-monospace, SFMono-Regular, Menlo, monospace; }

    .toast {
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 200;
      max-width: 360px;
      padding: 12px 14px;
      border-radius: 12px;
      border: 1px solid rgba(159,255,84,.25);
      background: #0d1811;
      color: #e8ffeb;
      box-shadow: var(--shadow);
      font-size: 11px;
      transform: translateY(20px);
      opacity: 0;
      pointer-events: none;
      transition: .22s ease;
    }
    .toast.show { transform: translateY(0); opacity: 1; }

    .loading-shimmer { background: linear-gradient(90deg, rgba(255,255,255,.03), rgba(255,255,255,.09), rgba(255,255,255,.03)); background-size: 200% 100%; animation: shimmer 1.3s infinite; color: transparent !important; border-radius: 6px; }
    @keyframes shimmer { to { background-position: -200% 0; } }

    @media (max-width: 1180px) {
      .metrics { grid-template-columns: repeat(3, 1fr); }
      .supporter-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 930px) {
      .hero-row { align-items: flex-start; flex-direction: column; }
      .hero-actions { justify-content: flex-start; }
      .grid-main { grid-template-columns: 1fr; }
      .market-top { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 680px) {
      .shell { width: min(100% - 18px, 1480px); padding-top: 10px; }
      .hero { padding: 0; border-radius: 20px; }
      .hero-banner { aspect-ratio: 3 / 1; object-fit: contain; }
      .hero-row { padding: 14px 15px 0; }
      .status-strip { padding: 0 15px 16px; }
      .mark { width: 58px; height: 58px; border-radius: 16px; }
      .mark.tag-mark { width: 42px; height: 42px; margin-left: -10px; margin-top: 24px; border-radius: 13px; }
      .brand { align-items: flex-start; width: 100%; gap: 12px; }
      .hero-actions { width: 100%; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }
      .hero-actions .btn { width: 100%; min-width: 0; }
      .hero-actions .btn.primary { grid-column: 1 / -1; }
      .hero-actions .btn.icon { width: 100%; }
      .config-supporter-grid, .config-wallet-grid, .config-banner-grid { grid-template-columns: 1fr; }
      .featured-clip { grid-template-columns: 1fr; }
      .metrics { grid-template-columns: repeat(2, 1fr); gap: 8px; }
      .metric { padding: 12px; }
      .wallet-grid, .supporter-grid { grid-template-columns: 1fr; }
      .market-top { grid-template-columns: repeat(2, 1fr); }
      .form-grid { grid-template-columns: 1fr; }
      .field.full { grid-column: auto; }
      .config-wallet { grid-template-columns: 1fr; }
      .qr-wrap { grid-template-columns: 1fr; justify-items: center; }
      .flow { grid-template-columns: 1fr; }
      .flow-arrow { transform: rotate(90deg); text-align: center; }
      .footer { flex-direction: column; }
      .top-banner { height: 36px; }
      .ticker-item { height: 36px; padding: 0 18px; }
    }


/* Funding thermometer promotional cards */
.thermo-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }
.thermo-card { border:1px solid color-mix(in srgb, var(--goal-color) 42%, transparent); background:linear-gradient(135deg, color-mix(in srgb, var(--goal-color) 12%, transparent), rgba(10,18,13,.88)); border-radius:16px; padding:14px; box-shadow:0 12px 30px rgba(0,0,0,.18); }
.thermo-head { display:flex; justify-content:space-between; gap:12px; align-items:flex-start; margin-bottom:10px; }
.thermo-head b { display:block; font-size:14px; letter-spacing:.02em; }
.thermo-head span { display:block; margin-top:3px; color:var(--muted); font-size:11px; font-weight:800; text-transform:uppercase; letter-spacing:.08em; }
.thermo-head strong { color:var(--goal-color); font-size:22px; line-height:1; text-shadow:0 0 18px color-mix(in srgb, var(--goal-color) 50%, transparent); }
.thermo-bar { height:14px; border-radius:999px; overflow:hidden; border:1px solid rgba(255,255,255,.12); background:rgba(0,0,0,.32); margin-bottom:8px; }
.thermo-bar span { display:block; height:100%; width:calc(var(--goal-pct) * 1%); min-width:4px; max-width:100%; background:linear-gradient(90deg, var(--goal-color), color-mix(in srgb, var(--goal-color) 55%, white)); box-shadow:0 0 18px color-mix(in srgb, var(--goal-color) 55%, transparent); }
.thermo-numbers { display:flex; justify-content:space-between; gap:10px; color:#eaffde; font-size:12px; font-weight:900; }
.thermo-card p { color:var(--muted); font-size:12px; line-height:1.45; min-height:36px; margin:10px 0 12px; }
@media (max-width:760px){ .thermo-grid{grid-template-columns:1fr;} .thermo-card p{min-height:0;} }
