/* draw.fun v2 staging shell */
:root {
  --bg:        #000;
  --surface:   #1b1b1b;
  --surface2:  #222;
  --border:    #2e2e2e;
  --border2:   #3a3a3a;
  --text:      #fff;
  --text-dim:  #a0a0a0;
  --text-muted:#555;
  --orange:    #ffa629;
  --gold:      #ffc300;
  --green:     #12d47b;
  --blue:      #1a8cff;
  --purple:    #9b59b6;
  --red:       #e74c3c;
  --detail-w:  380px;
}

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

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 13px;
  line-height: 1.5;
}

body { display: flex; flex-direction: column; }

/* Header */
header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
  background: rgba(0,0,0,.92);
}

h1 {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.4px;
  color: #fff;
}

.v-badge {
  font-size: 10px;
  font-weight: 800;
  background: var(--orange);
  color: #000;
  border-radius: 4px;
  padding: 1px 5px;
  vertical-align: middle;
  letter-spacing: 0;
}

.staging-label {
  font-size: 11px;
  color: var(--text-muted);
}

/* Main nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
  background: var(--bg);
  position: relative;
  z-index: 40;
}

.nav-btn {
  position: relative;
  z-index: 5;
  background: none;
  border: 1px solid transparent;
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: color 0.12s, border-color 0.12s, background 0.12s;
  font-family: inherit;
}

.nav-btn:hover {
  color: var(--text);
  border-color: var(--border2);
}

.nav-btn.active {
  color: #000;
  background: var(--orange);
  border-color: var(--orange);
  font-weight: 700;
}

.nav-draw-btn {
  position: relative;
  z-index: 5;
  margin-left: auto;
  background: var(--orange);
  color: #000;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 18px;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid var(--gold);
  transition: background 0.12s, border-color 0.12s;
  white-space: nowrap;
}

.nav-draw-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
}

/* Section root */
.section-root {
  flex: 1;
  overflow-y: visible;
  min-height: 0;
  position: relative;
  z-index: 80;
}

.section-loading {
  padding: 60px 20px;
  text-align: center;
  color: var(--text-muted);
}

/* Shared section intro */
.section-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--border);
}

.section-intro-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.section-heading {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.3px;
}

.section-subhead {
  font-size: 11px;
  color: var(--text-muted);
}

.count-label {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Shared controls */
.control-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.search-input {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border2);
  border-radius: 6px;
  color: var(--text);
  font-size: 12px;
  font-family: inherit;
  padding: 6px 10px;
  width: 210px;
  transition: border-color 0.12s, background 0.12s;
  outline: none;
}

.search-input::placeholder {
  color: var(--text-muted);
}

.search-input:focus {
  border-color: rgba(255,166,41,.5);
  background: rgba(255,255,255,.07);
}

.sort-select {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border2);
  border-radius: 6px;
  color: var(--text);
  font-size: 12px;
  font-family: inherit;
  padding: 6px 10px;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23555'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 26px;
}

.sort-select option {
  background: #1b1b1b;
  color: #fff;
}

.sort-select:focus {
  border-color: rgba(255,166,41,.5);
}

/* Filter chips */
.filter-chips {
  display: flex;
  gap: 4px;
}

.filter-chip {
  background: none;
  border: 1px solid var(--border2);
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.12s;
  white-space: nowrap;
}

.filter-chip:hover {
  color: var(--text);
  border-color: #555;
}

.filter-chip.active {
  background: var(--orange);
  color: #000;
  border-color: var(--orange);
  font-weight: 700;
}

/* Gallery */
.gallery {
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  align-content: start;
}

.gallery-sm {
  padding: 0 !important;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 8px;
}

.gallery-featured {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.gallery-msg {
  grid-column: 1 / -1;
  color: var(--text-muted);
  padding: 40px 0;
  text-align: center;
  font-style: italic;
}

.gallery-msg.error {
  color: var(--red);
  font-style: normal;
}

.gallery-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.gallery-footer-note {
  font-size: 11px;
  color: var(--text-muted);
}

.link-btn {
  background: none;
  border: none;
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

.link-btn:hover {
  text-decoration: underline;
}

/* Cards */
.card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.15s, transform 0.12s, box-shadow 0.15s;
}

.card:hover {
  border-color: rgba(255,166,41,.42);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.45);
}

.card.selected {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange), 0 8px 24px rgba(0,0,0,.45);
}

.card-img-wrap {
  aspect-ratio: 1 / 1;
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
  display: block;
}

.card-img-placeholder {
  width: 100%;
  height: 100%;
  background: #080808;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-ocn {
  font-size: 12px;
  font-weight: 800;
  color: #2a2a2a;
  font-family: monospace;
  letter-spacing: 0.5px;
  user-select: none;
}

.card-body {
  padding: 10px 11px 11px;
}

.card-tag {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.1px;
}

.card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 5px;
  min-height: 18px;
}

.card-price {
  font-size: 13px;
  font-weight: 900;
  color: var(--gold);
  margin-top: 5px;
  letter-spacing: -0.2px;
}

.card-seller {
  font-size: 10px;
  color: var(--text-muted);
  font-family: monospace;
  margin-top: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-time {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 3px;
}

/* Badges */
.badge-status {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 999px;
  display: inline-block;
}

.badge-status.listed,
.badge-status.active {
  background: rgba(255,166,41,.15);
  color: var(--orange);
  border: 1px solid rgba(255,166,41,.25);
}

.badge-status.settling,
.badge-status.selling {
  background: rgba(255,195,0,.12);
  color: var(--gold);
  border: 1px solid rgba(255,195,0,.22);
}

.badge-status.sold,
.badge-status.trade {
  background: rgba(18,212,123,.12);
  color: var(--green);
  border: 1px solid rgba(18,212,123,.22);
}

.badge-status.cancelled,
.badge-status.canceling {
  background: rgba(255,255,255,.05);
  color: #666;
  border: 1px solid rgba(255,255,255,.08);
}

.badge-status.transferred,
.badge-status.transfer {
  background: rgba(155,89,182,.15);
  color: var(--purple);
  border: 1px solid rgba(155,89,182,.22);
}

.badge-status.owned {
  background: rgba(255,255,255,.05);
  color: #666;
  border: 1px solid rgba(255,255,255,.08);
}

.badge-orig {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(26,140,255,.12);
  color: var(--blue);
  border: 1px solid rgba(26,140,255,.22);
  letter-spacing: 0.3px;
}

/* Detail panel */
.detail {
  width: var(--detail-w);
  flex-shrink: 0;
  background: var(--surface);
  border-left: 1px solid var(--border);
  overflow-y: auto;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  transform: translateX(100%);
  transition: transform 0.22s ease;
  z-index: 300;
}

.detail.open {
  transform: translateX(0);
}

.detail-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: 1px solid var(--border2);
  color: var(--text-dim);
  font-size: 14px;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.1s, border-color 0.1s;
  z-index: 1;
}

.detail-close:hover {
  color: var(--text);
  border-color: #555;
}

.detail-body {
  padding: 16px 16px 48px;
}

.detail-img-wrap {
  aspect-ratio: 1 / 1;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 14px 48px rgba(0,0,0,.60);
}

.detail-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

.detail-img-placeholder {
  width: 100%;
  height: 100%;
  background: #080808;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
}

.detail-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.detail-ocn {
  font-size: 17px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.3px;
}

.detail-price-hero {
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.5px;
  margin: 6px 0 14px;
}

.detail-owner-row {
  display: flex;
  gap: 8px;
  margin: 12px 0;
}

.detail-owner-card {
  flex: 1 1 0;
  padding: 10px 11px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  border-radius: 10px;
  min-width: 0;
}

.detail-owner-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.detail-owner-addr {
  font-family: monospace;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  word-break: break-all;
  line-height: 1.4;
}

.detail-owner-loading {
  color: var(--text-muted);
  font-style: italic;
}

.detail-cta-area {
  margin: 14px 0 4px;
}

.btn-full {
  width: 100%;
  display: block;
  text-align: center;
  font-size: 14px;
  padding: 12px 24px;
}

.btn-full[disabled] {
  opacity: 0.50;
  cursor: not-allowed;
}

.detail-cta-note {
  font-size: 10px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 7px;
  text-align: center;
}

.detail-section {
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 14px;
}

.detail-section-title {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  padding: 4px 0;
}

.detail-lbl {
  font-size: 11px;
  color: var(--text-dim);
  flex-shrink: 0;
  font-weight: 600;
}

.detail-val {
  font-size: 11px;
  color: var(--text);
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 200px;
}

.detail-val.mono {
  font-family: monospace;
  font-size: 10px;
}

.detail-val.price {
  color: var(--gold);
  font-weight: 900;
  font-size: 14px;
}

.act-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  font-size: 11px;
}

.act-row:last-child {
  border-bottom: none;
}

.act-type {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 2px 7px;
  border-radius: 999px;
  white-space: nowrap;
}

.act-type.listing {
  background: rgba(26,140,255,.12);
  color: var(--blue);
  border: 1px solid rgba(26,140,255,.2);
}

.act-type.trade {
  background: rgba(255,166,41,.12);
  color: var(--orange);
  border: 1px solid rgba(255,166,41,.2);
}

.act-type.transfer {
  background: rgba(155,89,182,.12);
  color: var(--purple);
  border: 1px solid rgba(155,89,182,.2);
}

.act-price {
  color: var(--gold);
  font-weight: 800;
  min-width: 80px;
  font-size: 11px;
}

.act-ts {
  color: var(--text-muted);
  margin-left: auto;
  white-space: nowrap;
  font-size: 10px;
}

.detail-empty {
  color: var(--text-muted);
  font-style: italic;
  font-size: 11px;
}

.detail-err {
  color: var(--red);
  font-size: 11px;
  padding: 6px 0;
}

/* Backdrop */
.backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  z-index: 200;
}

.backdrop.show {
  display: block;
}

/* CTA Buttons */
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: #000;
  font-size: 13px;
  font-weight: 800;
  padding: 9px 24px;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid var(--gold);
  transition: background 0.12s, border-color 0.12s;
  font-family: inherit;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.btn-secondary {
  background: none;
  border: 1px solid var(--border2);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.12s, color 0.12s;
  font-family: inherit;
}

.btn-secondary:hover {
  border-color: #555;
  color: #fff;
}

/* Launches */
.launches-section {
  display: flex;
  flex-direction: column;
}

.launches-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(780px, 1.4fr) minmax(320px, 0.7fr);
  border-bottom: 1px solid var(--border);
  min-height: 380px;
}

.launches-hero-left {
  position: relative;
  z-index: 2;
  padding: 48px 32px 48px 36px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #000;
}

/* Feature wall */
.launches-hero-center {
  position: relative;
  z-index: 120;
  overflow: visible;
  clip-path: inset(-360px -360px -180px -360px);
  background: #000;
  border-right: 1px solid var(--border);
  min-height: 420px;
}

.fw-scene {
  position: absolute;
  inset: 0;
  overflow: visible;
  z-index: 130;
}

.fw-cluster {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 820px;
  height: 400px;
  margin-left: -410px;
  margin-top: -200px;
  overflow: visible;
  pointer-events: auto;
}

/* Disciplined rail wall:
   - Visible resting faces are locked to a clean lattice.
   - Each cell has a deliberate rail direction.
   - Resting sides are subtle.
   - Hover sides are real polygon walls from base square to enlarged front face. */
.fw-tile {
  position: absolute;
  overflow: visible;
  z-index: var(--zi, 100);
  pointer-events: none;
}

.fw-tile.is-hovered {
  z-index: 9999;
}

.fw-tower {
  position: absolute;
  inset: 0;
  overflow: visible;
  pointer-events: none;
}

.fw-tower-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.fw-back-square {
  position: absolute;
  left: var(--base-x);
  top: var(--base-y);
  width: var(--base-s);
  height: var(--base-s);
  z-index: 1;
  background: #000;
  border: none;
  opacity: 0;
  box-shadow: none;
  pointer-events: none;
}

.fw-tile.is-hovered .fw-back-square {
  opacity: 0;
}

.fw-wall {
  stroke: rgba(255,255,255,.032);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
  transition: opacity 0.16s ease-out;
  pointer-events: none;
}

.fw-wall-top {
  fill: rgba(18,18,18,.96);
}

.fw-wall-right {
  fill: rgba(4,4,4,.985);
}

.fw-wall-bottom {
  fill: rgba(1,1,1,.995);
}

.fw-wall-left {
  fill: rgba(9,9,9,.98);
}

.fw-wall-rest {
  opacity: 0;
}

.fw-wall-hover {
  opacity: 0;
}

.fw-tile.is-hovered .fw-wall-rest {
  opacity: 0;
}

.fw-tile.is-hovered .fw-wall-hover {
  opacity: 1;
}

.fw-front {
  position: absolute;
  left: var(--rest-x);
  top: var(--rest-y);
  width: var(--rest-s);
  height: var(--rest-s);
  z-index: 4;
  background: #000;
  border: 1px solid rgba(255,255,255,.16);
  overflow: hidden;
  cursor: pointer;
  pointer-events: none;
  transition:
    left 0.34s cubic-bezier(.14,.96,.16,1),
    top 0.34s cubic-bezier(.14,.96,.16,1),
    width 0.34s cubic-bezier(.14,.96,.16,1),
    height 0.34s cubic-bezier(.14,.96,.16,1),
    border-color 0.16s ease-out,
    box-shadow 0.16s ease-out,
    filter 0.16s ease-out;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    0 6px 18px rgba(0,0,0,.50),
    0 12px 30px rgba(0,0,0,.26);
}

.fw-tile.is-hovered .fw-front {
  left: var(--hover-x);
  top: var(--hover-y);
  width: var(--hover-s);
  height: var(--hover-s);
  border-color: rgba(255,166,41,.9);
  filter: brightness(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 0 0 1px rgba(255,166,41,.24),
    0 0 34px rgba(255,166,41,.40),
    0 22px 50px rgba(0,0,0,.68),
    0 42px 88px rgba(0,0,0,.52);
}

.fw-front img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
  display: block;
}

.fw-front::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.05),
    inset 0 -14px 28px rgba(0,0,0,.08);
}

.fw-tile.is-hovered .fw-front::after {
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.08),
    inset 0 -18px 34px rgba(0,0,0,.11);
}

.fw-tile-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: monospace;
  font-size: 9px;
  font-weight: 700;
  color: #252525;
  background: #050505;
}

.launches-hero-right {
  position: relative;
  z-index: 4;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #000;
  overflow: hidden;
}

.hero-eyebrow {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 14px;
}

.launches-headline {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1.2px;
  line-height: 1.04;
  margin-bottom: 16px;
}

.launches-sub {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-dim);
  margin-bottom: 22px;
}

.launches-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Hero right panels */
.hero-support-panel {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 12px 14px;
}

.hero-panel-label {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* Featured item in hero */
.hero-featured {
  display: flex;
  gap: 12px;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.12s;
  padding: 4px;
  margin: -4px;
}

.hero-featured:hover {
  background: rgba(255,255,255,.04);
}

.hero-feat-img-wrap {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,.10);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-feat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

.hero-feat-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
  justify-content: center;
}

.hero-feat-tag {
  font-size: 14px;
  font-weight: 900;
  color: #fff;
}

.hero-feat-badges {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.hero-feat-price {
  font-size: 15px;
  font-weight: 900;
  color: var(--gold);
}

/* Stats row */
.hero-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat-val {
  font-size: 18px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.5px;
}

.hero-stat-lbl {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 600;
}

/* Mini activity */
.hero-mini-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mini-act-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 4px;
  border-radius: 6px;
  transition: background 0.1s;
}

.mini-act-row.act-item-link {
  cursor: pointer;
}

.mini-act-row.act-item-link:hover {
  background: rgba(255,255,255,.04);
}

.mini-act-thumb {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,.10);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-act-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

.mini-act-body {
  flex: 1;
  min-width: 0;
}

.mini-act-line1 {
  display: flex;
  align-items: center;
  gap: 5px;
}

.mini-act-tag {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-act-line2 {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

.mini-act-price {
  font-size: 10px;
  font-weight: 800;
  color: var(--gold);
}

.mini-act-ts {
  font-size: 10px;
  color: var(--text-muted);
}

/* Product ladder */
.product-ladder {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
}

.ladder-step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 18px 20px;
  border-right: 1px solid var(--border);
}

.ladder-step:last-child {
  border-right: none;
}

.ladder-num {
  font-size: 10px;
  font-weight: 800;
  color: var(--orange);
  background: rgba(255,166,41,.12);
  border: 1px solid rgba(255,166,41,.20);
  border-radius: 4px;
  padding: 2px 7px;
  flex-shrink: 0;
  margin-top: 2px;
}

.ladder-title {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.1px;
}

.ladder-desc {
  font-size: 11px;
  line-height: 1.5;
  color: var(--text-dim);
}

/* Launches feed */
.launches-feed {
  padding: 0 24px 32px;
}

.launches-feed-hdr {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 18px 0 12px;
}

.launches-feed-title {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.launches-gallery {
  padding: 0;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}

.feed-see-all {
  background: none;
  border: none;
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

.feed-see-all:hover {
  text-decoration: underline;
}

/* Launch modules */
.launches-modules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
}

.module-col {
  padding: 20px 24px 32px;
}

.module-col + .module-col {
  border-left: 1px solid var(--border);
}

.module-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.module-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
}

.module-link {
  background: none;
  border: none;
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

.module-link:hover {
  text-decoration: underline;
}

.module-stats-row {
  display: flex;
  gap: 20px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.module-stat-item {
  font-size: 11px;
  color: var(--text-dim);
}

.module-stat-val {
  font-weight: 900;
  color: var(--gold);
}

.module-empty {
  font-size: 11px;
  color: var(--text-muted);
  font-style: italic;
  padding: 8px 0;
}

.module-act-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Inscriptions */
.inscriptions-section {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Marketplace */
.marketplace-section {
  display: flex;
  flex-direction: column;
}

.market-stats {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  background: rgba(255,166,41,.025);
}

.market-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 12px;
  gap: 4px;
  border-right: 1px solid var(--border);
}

.market-stat:last-child {
  border-right: none;
}

.market-stat-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
}

.market-stat-val {
  font-size: 16px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.3px;
}

.mkt-lower {
  display: grid;
  grid-template-columns: 1fr 320px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

.mkt-lower-col {
  padding: 20px 24px 32px;
}

.mkt-how-col {
  border-left: 1px solid var(--border);
}

.how-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.how-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.how-num {
  font-size: 10px;
  font-weight: 800;
  color: var(--orange);
  background: rgba(255,166,41,.12);
  border: 1px solid rgba(255,166,41,.20);
  border-radius: 4px;
  padding: 2px 7px;
  flex-shrink: 0;
  margin-top: 2px;
}

.how-text strong {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  display: block;
  margin-bottom: 3px;
}

.how-text p {
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.5;
}

.how-note {
  font-size: 10px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 18px;
}

/* Activity */
.activity-section {
  display: flex;
  flex-direction: column;
}

.kpi-strip {
  display: flex;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.01);
}

.kpi-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 12px;
  gap: 4px;
  border-right: 1px solid var(--border);
}

.kpi-card:last-child {
  border-right: none;
}

.kpi-val {
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.5px;
}

.kpi-lbl {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
}

.act-filter-bar {
  display: flex;
  gap: 4px;
  padding: 10px 20px;
  border-bottom: 1px solid var(--border);
}

.act-list {
  padding: 0 0 40px;
}

.act-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  border-bottom: 1px solid var(--border);
  transition: background 0.1s;
}

.act-item:last-child {
  border-bottom: none;
}

.act-item-link {
  cursor: pointer;
}

.act-item-link:hover {
  background: rgba(255,255,255,.025);
}

.act-thumb {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,.10);
  display: flex;
  align-items: center;
  justify-content: center;
}

.act-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

.act-thumb-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: monospace;
  font-size: 9px;
  color: #2a2a2a;
  font-weight: 700;
}

.act-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.act-main-title {
  display: flex;
  align-items: center;
  gap: 7px;
}

.act-title-ocn {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.act-main-sub {
  font-family: monospace;
  font-size: 10px;
  color: var(--text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.act-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  flex-shrink: 0;
}

/* Mobile */
@media (max-width: 1100px) {
  .launches-hero-grid {
    grid-template-columns: 240px 1fr;
    grid-template-rows: auto auto;
  }

  .launches-hero-left {
    grid-column: 1;
    grid-row: 1;
  }

  .launches-hero-center {
    grid-column: 2;
    grid-row: 1;
    min-height: 400px;
  }

  .launches-hero-right {
    grid-column: 1 / -1;
    grid-row: 2;
    flex-direction: row;
    flex-wrap: wrap;
    border-top: 1px solid var(--border);
  }

  .hero-support-panel {
    flex: 1 1 220px;
  }

  .fw-cluster {
    width: 680px;
    height: 380px;
    margin-left: -340px;
    margin-top: -190px;
  }
}

@media (max-width: 900px) {
  .launches-hero-grid {
    grid-template-columns: 1fr;
  }

  .launches-hero-left {
    grid-column: 1;
    grid-row: 1;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 28px 20px;
  }

  .launches-hero-center {
    grid-column: 1;
    grid-row: 2;
    min-height: 270px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .launches-hero-right {
    grid-column: 1;
    grid-row: 3;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 12px 16px;
    border-top: none;
  }

  .hero-support-panel {
    flex: 1 1 200px;
  }

  .fw-cluster {
    width: 460px;
    height: 260px;
    margin-left: -230px;
    margin-top: -130px;
    transform: rotateX(1deg);
  }

  .product-ladder {
    grid-template-columns: repeat(2, 1fr);
  }

  .launches-modules {
    grid-template-columns: 1fr;
  }

  .module-col + .module-col {
    border-left: none;
    border-top: 1px solid var(--border);
  }

  .mkt-lower {
    grid-template-columns: 1fr;
  }

  .mkt-how-col {
    border-left: none;
    border-top: 1px solid var(--border);
  }

  .launches-headline {
    font-size: 26px;
  }

  .launches-feed {
    padding: 0 16px 24px;
  }

  .market-stats {
    flex-wrap: wrap;
  }

  .market-stat {
    flex: 1 1 40%;
  }

  .kpi-strip {
    flex-wrap: wrap;
  }

  .kpi-card {
    flex: 1 1 40%;
  }
}

@media (max-width: 600px) {
  .detail {
    width: 100%;
    top: 0;
  }

  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
  }

  .detail-owner-row {
    flex-direction: column;
  }

  .control-bar {
    gap: 6px;
  }

  .search-input {
    width: 100%;
  }

  .filter-chips {
    flex-wrap: wrap;
  }
}

/* Scalar extension test tile: show its active rail walls while it breathes. */
.fw-tile.is-scalar-test .fw-wall-rest {
  opacity: .86;
}

.fw-tile.is-scalar-test.is-hovered .fw-wall-rest {
  opacity: 0;
}

.fw-tile.is-scalar-test .fw-back-square {
  opacity: 0;
}


/* drawfun v2 all-tile extension scalar layering
   All resting movement is locked to each tile's existing 0% to 100% hover rail. */

.fw-tile {
  overflow: visible !important;
}

.fw-tile.is-idle-extended:not(.is-hovered) {
  z-index: var(--zi, 100) !important;
}

.fw-tile.is-hovered {
  z-index: 999999 !important;
  isolation: isolate;
}

.fw-tile.is-idle-extended .fw-tower,
.fw-tile.is-idle-extended .fw-tower-svg,
.fw-tile.is-hovered .fw-tower,
.fw-tile.is-hovered .fw-tower-svg {
  overflow: visible !important;
}

.fw-tile.is-idle-extended:not(.is-hovered) .fw-wall-rest {
  opacity: .68 !important;
}

.fw-tile.is-idle-extended:not(.is-hovered) .fw-wall-hover {
  opacity: 0 !important;
}

.fw-tile.is-hovered .fw-wall-rest,
.fw-tile.is-hovered .fw-wall-hover {
  opacity: 1 !important;
}

.fw-tile.is-idle-extended .fw-front,
.fw-tile.is-hovered .fw-front {
  z-index: 30 !important;
}

.fw-tile.is-idle-extended .fw-back-square,
.fw-tile.is-hovered .fw-back-square {
  opacity: 0 !important;
}


/* drawfun v2 centre layer priority
   Middle feature-wall items sit above outer items in the resting scene.
   Hovered items still beat everything. */

.fw-tile.is-idle-extended:not(.is-hovered) {
  z-index: var(--zi, 100) !important;
}

.fw-tile.is-hovered {
  z-index: 999999 !important;
}


/* drawfun v2 wall-shadow cleanup
   Keep geometry and rails unchanged.
   This only fixes internal paint order so wall polygons never tint the image faces. */

.fw-tile {
  overflow: visible !important;
}

.fw-tower {
  position: absolute;
  inset: 0;
  overflow: visible !important;
  z-index: 1 !important;
}

.fw-back-square {
  z-index: 0 !important;
  opacity: 0 !important;
}

.fw-tower-svg {
  position: absolute;
  inset: 0;
  overflow: visible !important;
  z-index: 1 !important;
  pointer-events: none;
}

/* Resting wall body should sit behind the image face and only imply depth. */
.fw-wall-rest {
  opacity: .34 !important;
}

/* Hover wall is hidden until hover. */
.fw-wall-hover {
  opacity: 0 !important;
}

/* Every front image face must sit above the SVG wall layer. */
.fw-front {
  position: absolute;
  z-index: 30 !important;
}

/* Hovered tile still wins globally. */
.fw-tile.is-hovered {
  z-index: 999999 !important;
}

.fw-tile.is-hovered .fw-tower {
  z-index: 1 !important;
}

.fw-tile.is-hovered .fw-tower-svg {
  z-index: 1 !important;
}

.fw-tile.is-hovered .fw-front {
  z-index: 40 !important;
}

/* On hover, the full tower body appears, but remains behind the active face. */
.fw-tile.is-hovered .fw-wall-rest,
.fw-tile.is-hovered .fw-wall-hover {
  opacity: 1 !important;
}

/* Idle extended tiles keep their body visible, but the face remains above it. */
.fw-tile.is-idle-extended:not(.is-hovered) .fw-wall-rest {
  opacity: .34 !important;
}

.fw-tile.is-idle-extended:not(.is-hovered) .fw-wall-hover {
  opacity: 0 !important;
}

.fw-tile.is-idle-extended .fw-front {
  z-index: 30 !important;
}


/* drawfun v2 face-only hover layering: start */

/* Keep geometry and rails unchanged.
   Fix only the paint order:
   - hovered front face = top layer
   - hovered side walls = NOT top layer
   - central neighbouring faces can still cover those side walls */

.fw-tile,
.fw-tower,
.fw-tower-svg {
  overflow: visible !important;
}

/* Do not promote the entire hovered tile/tower stack above everything. */
.fw-tile:hover,
.fw-tile.is-hovered {
  z-index: auto !important;
  isolation: auto !important;
}

.fw-tile:hover .fw-tower,
.fw-tile.is-hovered .fw-tower,
.fw-tile:hover .fw-tower-svg,
.fw-tile.is-hovered .fw-tower-svg {
  z-index: auto !important;
}

/* Normal face and wall layer defaults.
   If your existing code already sets --face-layer / --wall-layer,
   these rules will respect that. */
.fw-front {
  position: absolute;
  z-index: var(--face-layer, 200) !important;
}

.fw-back-square,
.fw-wall-rest,
.fw-wall-hover {
  z-index: var(--wall-layer, 100) !important;
  pointer-events: none;
}

/* Hovered FACE only goes to the very top. */
.fw-tile:hover .fw-front,
.fw-tile.is-hovered .fw-front {
  z-index: 60000 !important;
}

/* Hovered tower walls stay on their normal, lower layer.
   This is the key fix for the green outer tile case. */
.fw-tile:hover .fw-back-square,
.fw-tile:hover .fw-wall-rest,
.fw-tile:hover .fw-wall-hover,
.fw-tile.is-hovered .fw-back-square,
.fw-tile.is-hovered .fw-wall-rest,
.fw-tile.is-hovered .fw-wall-hover {
  z-index: var(--wall-layer, 100) !important;
}

/* Also make sure the SVG wrapper itself never becomes the top layer. */
.fw-tile:hover .fw-tower-svg,
.fw-tile.is-hovered .fw-tower-svg {
  z-index: var(--wall-layer, 100) !important;
  pointer-events: none;
}

/* drawfun v2 face-only hover layering: end */


/* drawfun v2 css-only smoothing: start */

/* Do not touch geometry, rails, z-index, SVG points, or image rendering.
   This only slightly polishes the existing motion. */

.fw-front {
  will-change: left, top, width, height, border-color, box-shadow, filter;
  transition:
    left 0.40s cubic-bezier(.16,.86,.20,1),
    top 0.40s cubic-bezier(.16,.86,.20,1),
    width 0.40s cubic-bezier(.16,.86,.20,1),
    height 0.40s cubic-bezier(.16,.86,.20,1),
    border-color 0.16s ease-out,
    box-shadow 0.16s ease-out,
    filter 0.16s ease-out !important;
}

.fw-wall,
.fw-wall-rest,
.fw-wall-hover {
  transition:
    opacity 0.20s ease-out !important;
}

.fw-tile-face {
  transition:
    transform 0.40s cubic-bezier(.16,.86,.20,1),
    border-color 0.16s ease-out,
    box-shadow 0.16s ease-out !important;
}

/* drawfun v2 css-only smoothing: end */


/* drawfun v2 face-based hover routing: start */

/* Do not let old invisible hit zones steal hover. */
.fw-hit-layer,
.fw-hit-zone {
  display: none !important;
  pointer-events: none !important;
}

/* Side walls are visual only. They should never be the hover target. */
.fw-tower,
.fw-tower-svg,
.fw-wall,
.fw-wall-rest,
.fw-wall-hover,
.fw-back-square {
  pointer-events: none !important;
}

/* The image face is the hover target. */
.fw-front,
.fw-front *,
.fw-tile-face,
.fw-tile-face * {
  pointer-events: auto !important;
}

/* drawfun v2 face-based hover routing: end */

/* DRAW.FUN ROOT SHADOW AIBYPHONE RAIL HOST START */
/*
  Root homepage only.
  The real feature wall remains owned by renderLaunches() in .launches-hero-center.
  The AIbyPhone rail is isolated inside #dfAibyRailMount Shadow DOM.
  Do not style .launches-section, .launches-hero-grid, .launches-hero-center, or .launches-hero-right here.
*/

.launches-section .launches-hero-left.df-aiby-shadow-host {
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 24px !important;
  background: #000 !important;
  box-shadow: none !important;
}

.launches-section .launches-hero-left.df-aiby-shadow-host::before,
.launches-section .launches-hero-left.df-aiby-shadow-host::after {
  display: none !important;
  content: none !important;
}

.launches-section .launches-hero-left.df-aiby-shadow-host > *:not(#dfAibyRailMount) {
  display: none !important;
}

#dfAibyRailMount {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  border-radius: inherit !important;
  overflow: hidden !important;
  background: #000 !important;
}

@media (max-width: 900px) {
  .launches-section .launches-hero-left.df-aiby-shadow-host {
    border-radius: 18px !important;
  }
}
/* DRAW.FUN ROOT SHADOW AIBYPHONE RAIL HOST END */

/* DRAW.FUN MOBILE X-SCROLL LOCK START */
/* Version: mobile-xlock-20260705165831
   Fixes the mobile page panning sideways by:
   - preventing document-level horizontal scroll
   - wrapping the v2 nav instead of letting it widen the body
   - stacking the homepage hero grid on phones
   - clipping the feature wall glow inside the mobile viewport
*/

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  position: relative;
  overscroll-behavior-x: none;
}

#section-root,
.section-root,
.launches-section {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.main-nav {
  max-width: 100vw;
  min-width: 0;
  overflow-x: hidden;
}

@media (max-width: 760px) {
  html,
  body {
    overflow-x: hidden !important;
    overscroll-behavior-x: none;
  }

  body,
  .section-root,
  .launches-section,
  .launches-hero-grid {
    touch-action: pan-y;
  }

  .site-header {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }

  .main-nav {
    width: 100%;
    max-width: 100vw;
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 10px 14px;
    overflow-x: hidden !important;
    overflow-y: visible;
  }

  .main-nav .nav-btn,
  .main-nav .nav-draw-btn {
    flex: 0 0 auto;
    min-width: 0;
  }

  .main-nav .nav-btn {
    padding-left: 12px;
    padding-right: 12px;
  }

  .main-nav .nav-draw-btn {
    margin-left: 0 !important;
  }

  .launches-hero-grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) !important;
    min-height: 0;
    overflow: hidden;
  }

  .launches-hero-left,
  .launches-hero-center,
  .launches-hero-right {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    border-right: 0;
  }

  .launches-hero-left {
    padding: 30px 16px 30px;
    border-bottom: 1px solid var(--border);
  }

  .launches-hero-center {
    min-height: min(76vw, 360px);
    clip-path: none !important;
  }

  .launches-hero-right {
    padding: 14px;
    border-top: 1px solid var(--border);
  }

  .df-aiby-shadow-host {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden !important;
  }

  .product-ladder {
    grid-template-columns: 1fr;
  }

  .launches-feed {
    width: 100%;
    max-width: 100%;
    padding-left: 14px;
    padding-right: 14px;
    overflow-x: hidden;
  }

  .gallery,
  .launches-gallery {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
  }
}

@media (min-width: 761px) and (max-width: 1180px) {
  .launches-hero-grid {
    grid-template-columns: minmax(300px, 0.9fr) minmax(460px, 1.2fr);
    overflow-x: hidden;
  }

  .launches-hero-right {
    grid-column: 1 / -1;
    border-top: 1px solid var(--border);
  }
}
/* DRAW.FUN MOBILE X-SCROLL LOCK END */
