/* ── POLYMARKET PREDICTIONS — Cyberpunk Public CSS ── */

:root {
  --bg: #030308;
  --bg2: #080818;
  --bg3: #0c0c24;
  --panel: rgba(8, 12, 28, 0.85);
  --panel2: rgba(12, 18, 40, 0.9);
  --border: rgba(0, 255, 229, 0.12);
  --border2: rgba(255, 45, 120, 0.12);
  --text: #dde6ff;
  --muted: #6a7aaa;
  --cyan: #00ffe5;
  --pink: #ff2d78;
  --purple: #b44dff;
  --green: #00e5a0;
  --red: #ff3a57;
  --yellow: #f5c518;
}

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

html, body {
  margin: 0;
  min-height: 100%;
  font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(0,255,229,0.08), transparent 50%),
    radial-gradient(ellipse at 80% 10%, rgba(255,45,120,0.06), transparent 40%),
    radial-gradient(ellipse at 50% 80%, rgba(180,77,255,0.05), transparent 50%);
}

/* Scanline effect */
.scanlines {
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,255,229,0.012) 2px, rgba(0,255,229,0.012) 4px);
  pointer-events: none;
  z-index: 9999;
}

a { color: var(--cyan); text-decoration: none; }
a:hover { text-shadow: 0 0 8px var(--cyan); }

.public-shell {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 40px;
}

/* ── NAV ── */
.public-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 12px;
}
.brand { display: flex; align-items: center; gap: 6px; }
.brand-main {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--cyan);
  text-shadow: 0 0 12px rgba(0,255,229,0.5), 0 0 40px rgba(0,255,229,0.15);
}
.brand-accent {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--pink);
  text-shadow: 0 0 8px rgba(255,45,120,0.4);
}
.nav-links { display: flex; gap: 16px; align-items: center; font-size: 13px; }
.nav-link-glow { color: var(--cyan); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  border: 1px solid transparent;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 200ms ease;
  text-decoration: none;
  text-align: center;
  letter-spacing: 1px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--cyan), #00ccb8 40%, var(--green));
  color: #030308;
  border: 1px solid var(--cyan);
}
.btn-primary:hover {
  box-shadow: 0 0 20px rgba(0,255,229,0.4), 0 0 60px rgba(0,255,229,0.15);
  transform: translateY(-1px);
}
.btn-glow { box-shadow: 0 0 12px rgba(0,255,229,0.2); }
.btn-large { padding: 14px 28px; font-size: 14px; letter-spacing: 2px; }
.btn-secondary {
  border: 1px solid rgba(0,255,229,0.25);
  background: rgba(0,255,229,0.05);
  color: var(--cyan);
}
.btn-secondary:hover { background: rgba(0,255,229,0.1); }

/* ── HERO ── */
.hero {
  margin-top: 24px;
  text-align: center;
  padding: 0 20px;
}
.hero-badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--cyan);
  border: 1px solid rgba(0,255,229,0.25);
  padding: 4px 14px;
  margin-bottom: 20px;
  text-shadow: 0 0 8px rgba(0,255,229,0.3);
}
h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  margin: 0 0 20px;
  font-weight: 900;
  letter-spacing: -1px;
}
.hero-gradient {
  background: linear-gradient(90deg, var(--cyan), var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 32px;
}
.hero-sub strong { color: var(--cyan); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 700px;
  margin: 0 auto 30px;
}
.hero-stat {
  padding: 14px 8px;
  border: 1px solid var(--border);
  background: var(--panel);
}
.hero-stat-val {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 1px;
}
.hero-stat-label {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 1px;
  margin-top: 4px;
}
.glow-green  { color: var(--green);  text-shadow: 0 0 12px rgba(0,229,160,0.5); }
.glow-cyan   { color: var(--cyan);   text-shadow: 0 0 12px rgba(0,255,229,0.5); }
.glow-yellow { color: var(--yellow); text-shadow: 0 0 12px rgba(245,197,24,0.5); }
.glow-pink   { color: var(--pink);   text-shadow: 0 0 12px rgba(255,45,120,0.5); }
.glow-red    { color: var(--red);    text-shadow: 0 0 12px rgba(255,58,87,0.5); }

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.hero-note {
  font-size: 12px;
  color: var(--green);
  letter-spacing: 1px;
  text-shadow: 0 0 8px rgba(0,229,160,0.3);
}

/* ── LIVE STRIP ── */
.live-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 24px 0;
  padding: 14px 24px;
  border: 1px solid rgba(0,255,229,0.2);
  background: linear-gradient(90deg, rgba(0,255,229,0.04), rgba(180,77,255,0.04), rgba(255,45,120,0.04));
  overflow-x: auto;
  box-shadow: 0 0 20px rgba(0,255,229,0.06);
}
.strip-item { display: flex; gap: 8px; align-items: center; white-space: nowrap; }
.strip-label { font-size: 10px; color: var(--muted); letter-spacing: 2px; }
.strip-val { font-size: 14px; font-weight: 800; letter-spacing: 1px; }
.strip-divider { width: 1px; height: 20px; background: rgba(0,255,229,0.15); }

/* ── SECTIONS ── */
.section {
  margin-top: 40px;
  padding: 30px;
  border: 1px solid var(--border);
  background: var(--panel);
}
.section-title {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 2px;
  text-align: center;
  margin: 0 0 8px;
  color: var(--text);
}
.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 24px;
}

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.feature-card {
  padding: 20px;
  border: 1px solid var(--border);
  background: rgba(4,8,20,0.8);
}
.feature-icon { font-size: 28px; margin-bottom: 10px; }
.feature-card h3 {
  font-size: 14px;
  margin: 0 0 8px;
  color: var(--cyan);
  letter-spacing: 1px;
}
.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

/* ── 2-COL GRID ── */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
.feature-list { display: flex; flex-direction: column; gap: 10px; }
.fl-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  background: rgba(4,8,20,0.6);
  font-size: 12px;
  color: var(--text);
}
.fl-icon { font-size: 16px; flex-shrink: 0; }

/* Preview card */
.preview-card {
  border: 1px solid var(--cyan);
  background: rgba(0,255,229,0.03);
  box-shadow: 0 0 30px rgba(0,255,229,0.08);
  padding: 16px;
}
.preview-header {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--cyan);
  margin-bottom: 12px;
  text-shadow: 0 0 8px rgba(0,255,229,0.4);
}
.preview-row {
  display: grid;
  grid-template-columns: 50px 1fr 50px 70px;
  gap: 8px;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,255,229,0.06);
  font-size: 12px;
}
.pv-label { color: var(--muted); font-size: 10px; letter-spacing: 1px; }
.pv-val { font-weight: 800; }
.pv-conf { color: var(--yellow); font-weight: bold; }
.pv-result { color: var(--green); font-weight: bold; text-shadow: 0 0 6px rgba(0,229,160,0.4); }
.pv-result.dim { color: var(--red); text-shadow: 0 0 6px rgba(255,58,87,0.4); }
.preview-footer { font-size: 10px; color: var(--muted); margin-top: 8px; text-align: center; letter-spacing: 1px; }

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.price-card {
  padding: 24px 20px;
  border: 1px solid var(--border);
  background: rgba(4,8,20,0.8);
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card.price-pro {
  border-color: var(--cyan);
  box-shadow: 0 0 30px rgba(0,255,229,0.1);
}
.price-card.price-elite {
  border-color: var(--pink);
  box-shadow: 0 0 30px rgba(255,45,120,0.1);
}
.price-badge {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 8px;
}
.price-badge-hot { color: var(--cyan); text-shadow: 0 0 6px rgba(0,255,229,0.3); }
.price-card h3 { margin: 0 0 6px; font-size: 18px; letter-spacing: 1px; }
.price-amount {
  font-size: 40px;
  font-weight: 900;
  color: var(--cyan);
  text-shadow: 0 0 15px rgba(0,255,229,0.3);
}
.price-card.price-elite .price-amount { color: var(--pink); text-shadow: 0 0 15px rgba(255,45,120,0.3); }
.price-curr { font-size: 14px; color: var(--muted); font-weight: 400; }
.price-period { font-size: 11px; color: var(--muted); margin-bottom: 16px; }
.price-card ul {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  font-size: 12px;
  color: var(--text);
  line-height: 2;
}
.price-card .btn { margin-top: auto; }

/* ── CTA ── */
.cta-section { text-align: center; border-color: var(--pink); }
.cta-title {
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 12px;
}
.cta-sub { color: var(--muted); font-size: 14px; margin: 0 0 20px; }

/* ── FOOTER ── */
.site-footer {
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}
.footer-brand { margin-bottom: 8px; }
.footer-note { font-size: 11px; color: var(--muted); letter-spacing: 1px; }
.footer-domain { font-size: 13px; color: var(--accent); font-weight: 700; letter-spacing: 1px; margin-bottom: 2px; }
.footer-contact { font-size: 11px; color: var(--text); opacity: 0.7; margin-bottom: 6px; }

/* ── AUTH PAGES ── */
.auth-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px 16px;
}
.auth-card {
  width: min(480px, 100%);
  padding: 30px;
  border: 1px solid var(--border);
  background: var(--panel);
}
.auth-card h1 { margin-top: 0; font-size: 28px; }
.auth-card p { color: var(--muted); font-size: 13px; }
.eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--cyan);
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(0,255,229,0.3);
}

.form-grid { display: grid; gap: 12px; }
label { display: grid; gap: 6px; font-size: 12px; color: #b9c9ec; }
input, select {
  border: 1px solid rgba(0,255,229,0.2);
  background: rgba(4,8,20,0.9);
  color: var(--text);
  padding: 10px 12px;
  font-size: 13px;
  font-family: inherit;
}
input:focus, select:focus { outline: 1px solid var(--cyan); }

.msg { margin-top: 10px; font-size: 13px; color: var(--muted); white-space: pre-wrap; }
.msg.error { color: #ff9fa8; }

/* ── PORTAL ── */
.portal-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 14px;
}
.kpi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.kpi {
  border: 1px solid var(--border);
  background: rgba(4,8,20,0.8);
  padding: 10px;
}
.kpi .label { font-size: 11px; color: var(--muted); }
.kpi .value { margin-top: 6px; font-size: 18px; font-weight: 800; }

table { width: 100%; border-collapse: collapse; }
th, td {
  border-bottom: 1px solid rgba(0,255,229,0.08);
  text-align: left;
  padding: 8px;
  font-size: 12px;
}
th { color: var(--cyan); font-weight: 600; font-size: 10px; letter-spacing: 1px; }

.card {
  border: 1px solid var(--border);
  background: var(--panel);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .features-grid, .pricing-grid, .grid-2col { grid-template-columns: 1fr; }
  .portal-grid { grid-template-columns: 1fr; }
  .kpi-row { grid-template-columns: 1fr; }
  .live-strip { flex-wrap: wrap; }
  .nav-links { gap: 10px; font-size: 11px; }
}

/* ══════════════════════════════════════════════════════
   LANDING PAGE REDESIGN — Dashboard Preview + Hero Logo
   ══════════════════════════════════════════════════════ */

/* ── Hero Logo (now only used in footer/other spots) ── */
.hero-logo {
  display: block;
  width: 120px;
  height: 120px;
  margin: 0 auto 16px;
  filter: drop-shadow(0 0 30px rgba(0,255,229,0.5)) drop-shadow(0 0 60px rgba(0,255,229,0.2));
  animation: hero-logo-pulse 3s ease-in-out infinite;
}
@keyframes hero-logo-pulse {
  0%, 100% { filter: drop-shadow(0 0 30px rgba(0,255,229,0.5)) drop-shadow(0 0 60px rgba(0,255,229,0.2)); }
  50% { filter: drop-shadow(0 0 45px rgba(0,255,229,0.7)) drop-shadow(0 0 80px rgba(0,255,229,0.35)); }
}

/* ── Dashboard Preview Section ── */
.dash-preview-section {
  margin-top: 30px;
  text-align: center;
}
.dash-preview-label {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(0,255,229,0.4);
  margin-bottom: 4px;
}
.dash-preview-sublabel {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.dash-preview-cta {
  margin-top: 24px;
  text-align: center;
}

/* ── Dashboard Shell (fake window) ── */
.dash-shell {
  border: 1px solid rgba(0,255,229,0.2);
  background: rgba(3,3,8,0.95);
  box-shadow:
    0 0 40px rgba(0,255,229,0.08),
    0 0 80px rgba(0,255,229,0.04),
    inset 0 1px 0 rgba(0,255,229,0.06);
  overflow: hidden;
  text-align: left;
}

/* Titlebar */
.dash-titlebar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  background: rgba(8,12,28,0.9);
  border-bottom: 1px solid rgba(0,255,229,0.1);
}
.dash-titlebar-dots {
  display: flex;
  gap: 6px;
}
.dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dash-dot--red { background: #ff3a57; box-shadow: 0 0 6px rgba(255,58,87,0.5); }
.dash-dot--yellow { background: #f5c518; box-shadow: 0 0 6px rgba(245,197,24,0.5); }
.dash-dot--green { background: #00e5a0; box-shadow: 0 0 6px rgba(0,229,160,0.5); }
.dash-titlebar-title {
  flex: 1;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--muted);
  text-align: center;
}
.dash-titlebar-status {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 6px;
}
.dash-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(0,229,160,0.6);
  animation: status-blink 1.5s ease-in-out infinite;
}
@keyframes status-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Metrics bar */
.dash-metrics-bar {
  display: flex;
  gap: 0;
  padding: 0;
  border-bottom: 1px solid rgba(0,255,229,0.08);
  overflow-x: auto;
}
.dash-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 12px;
  min-width: 0;
  flex: 1;
  border-right: 1px solid rgba(0,255,229,0.06);
}
.dash-metric:last-child { border-right: none; }
.dash-metric-label {
  font-size: 8px;
  letter-spacing: 2px;
  color: var(--muted);
  white-space: nowrap;
}
.dash-metric-value {
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  color: var(--text);
}

/* Main grid */
.dash-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
}
.dash-charts {
  border-right: 1px solid rgba(0,255,229,0.08);
}

/* Panels */
.dash-panel {
  border-bottom: 1px solid rgba(0,255,229,0.08);
}
.dash-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(0,255,229,0.06);
  background: rgba(8,12,28,0.5);
}
.dash-panel-title {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--cyan);
  text-shadow: 0 0 6px rgba(0,255,229,0.3);
}
.dash-panel-tag {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
}

/* ── Candlestick chart ── */
.dash-candle-area {
  display: flex;
  padding: 10px 0 10px 0;
  height: 180px;
}
.dash-candle-y-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 4px 8px;
  font-size: 8px;
  color: var(--muted);
  min-width: 60px;
  text-align: right;
}
.dash-candles {
  display: flex;
  align-items: stretch;
  gap: 3px;
  flex: 1;
  padding: 4px 10px;
  position: relative;
  background:
    repeating-linear-gradient(0deg,
      transparent, transparent 24%,
      rgba(0,255,229,0.03) 24%, rgba(0,255,229,0.03) 24.5%,
      transparent 24.5%
    );
}
.dash-candle {
  flex: 1;
  position: relative;
  min-width: 6px;
}
.dash-candle::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  top: var(--wick-top);
  bottom: calc(100% - var(--wick-bot));
}
.dash-candle::after {
  content: '';
  position: absolute;
  left: 15%;
  right: 15%;
  top: var(--body-top);
  bottom: calc(100% - var(--body-bot));
  border-radius: 1px;
}
.dash-candle--green::before { background: var(--green); }
.dash-candle--green::after {
  background: var(--green);
  box-shadow: 0 0 6px rgba(0,229,160,0.4);
}
.dash-candle--red::before { background: var(--red); }
.dash-candle--red::after {
  background: var(--red);
  box-shadow: 0 0 6px rgba(255,58,87,0.4);
}
.dash-candle--current::after {
  animation: candle-pulse 1s ease-in-out infinite;
}
@keyframes candle-pulse {
  0%, 100% { box-shadow: 0 0 6px rgba(0,229,160,0.4); }
  50% { box-shadow: 0 0 14px rgba(0,229,160,0.8), 0 0 30px rgba(0,229,160,0.3); }
}

/* ── Snake chart ── */
.dash-snake-area {
  padding: 10px 12px;
  height: 110px;
}
.dash-snake-svg {
  width: 100%;
  height: 100%;
}

/* ── Signals column ── */
.dash-signals {
  display: flex;
  flex-direction: column;
}

/* Prediction cards */
.dash-pred-card {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(0,255,229,0.08);
}
.dash-pred-card--up {
  background: linear-gradient(135deg, rgba(0,229,160,0.06), transparent);
}
.dash-pred-card--down {
  background: linear-gradient(135deg, rgba(255,58,87,0.06), transparent);
}
.dash-pred-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.dash-pred-window {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--muted);
  font-weight: 700;
}
.dash-pred-countdown {
  font-size: 13px;
  font-weight: 800;
  color: var(--yellow);
  text-shadow: 0 0 8px rgba(245,197,24,0.4);
  font-variant-numeric: tabular-nums;
}
.dash-pred-direction {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.dash-pred-conf {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.dash-conf-bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}
.dash-conf-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 300ms ease;
}
.dash-conf-fill--green {
  background: linear-gradient(90deg, var(--green), #00ffaa);
  box-shadow: 0 0 8px rgba(0,229,160,0.5);
}
.dash-conf-fill--red {
  background: linear-gradient(90deg, var(--red), #ff6b7a);
  box-shadow: 0 0 8px rgba(255,58,87,0.5);
}
.dash-conf-pct {
  font-size: 16px;
  font-weight: 900;
  min-width: 40px;
  text-align: right;
}
.dash-pred-meta {
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 1px;
}

/* Scalp panel */
.dash-scalp-panel {
  border-bottom: 1px solid rgba(0,255,229,0.08);
}
.dash-scalp-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
}
.dash-scalp-body {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
}
.dash-scalp-indicator {
  flex-shrink: 0;
}
.dash-scalp-ring {
  position: relative;
  width: 64px;
  height: 64px;
}
.dash-scalp-svg {
  width: 100%;
  height: 100%;
}
.dash-scalp-pct {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
}
.dash-scalp-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dash-scalp-row {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}
.dash-scalp-label {
  color: var(--muted);
}

/* Signals list */
.dash-signals-list {
  flex: 1;
}
.dash-signal-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-bottom: 1px solid rgba(0,255,229,0.04);
  font-size: 10px;
}
.dash-signal-time {
  color: var(--muted);
  font-size: 9px;
  min-width: 32px;
  font-variant-numeric: tabular-nums;
}
.dash-signal-text {
  flex: 1;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── News ticker ── */
.dash-news-ticker {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(0,255,229,0.1);
  background: rgba(8,12,28,0.8);
  overflow: hidden;
}
.dash-news-label {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--yellow);
  padding: 6px 12px;
  white-space: nowrap;
  border-right: 1px solid rgba(0,255,229,0.08);
  background: rgba(245,197,24,0.05);
}
.dash-news-scroll {
  display: flex;
  white-space: nowrap;
  animation: news-scroll 30s linear infinite;
  font-size: 10px;
  color: var(--muted);
  padding: 6px 0;
}
.dash-news-item {
  padding: 0 4px;
}
@keyframes news-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Dashboard responsive ── */
@media (max-width: 900px) {
  .dash-grid {
    grid-template-columns: 1fr;
  }
  .dash-charts {
    border-right: none;
    border-bottom: 1px solid rgba(0,255,229,0.08);
  }
  .dash-metrics-bar {
    flex-wrap: wrap;
  }
  .dash-metric {
    min-width: 70px;
  }
  .hero-logo {
    width: 100px;
    height: 100px;
  }
  .dash-candle-area {
    height: 140px;
  }
}

/* ══════════════════════════════════════════════════════
   HERO SPLIT + ART GALLERY + FOOTER LOGO
   ══════════════════════════════════════════════════════ */

/* ── Hero Split Layout ── */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: center;
  text-align: left;
}
.hero-split .hero-copy {
  text-align: left;
}
.hero-split .hero-logo {
  margin: 0 0 24px;
}
.hero-split .hero-stats {
  margin: 0 0 30px;
}
.hero-split .hero-actions {
  justify-content: flex-start;
}

.hero-art {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-art-img {
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
  border: 2px solid rgba(0,255,229,0.2);
  box-shadow:
    0 0 40px rgba(0,255,229,0.15),
    0 0 80px rgba(180,77,255,0.08),
    0 20px 60px rgba(0,0,0,0.5);
  animation: art-float 6s ease-in-out infinite;
}
@keyframes art-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

/* ── Crypto Art Gallery ── */
.art-gallery {
  margin: 50px 0 40px;
  padding: 30px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(0,255,229,0.03) 0%, transparent 50%),
    linear-gradient(225deg, rgba(255,45,120,0.03) 0%, transparent 50%);
}
.art-gallery-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}
.art-gallery-inner.art-gallery-2col {
  grid-template-columns: 1fr 1fr;
  max-width: 700px;
}
.art-card {
  text-align: center;
  border: 1px solid rgba(0,255,229,0.1);
  background: var(--panel);
  border-radius: 12px;
  padding: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.art-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,255,229,0.15);
}
.art-card-img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(0,255,229,0.08);
  margin-bottom: 10px;
}
.art-card-label {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
}
.art-card-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  background:
    radial-gradient(circle at center, rgba(0,255,229,0.06) 0%, transparent 70%),
    var(--panel);
}
.art-logo-badge {
  width: 160px;
  height: 160px;
  filter: drop-shadow(0 0 35px rgba(0,255,229,0.6));
  animation: hero-logo-pulse 3s ease-in-out infinite;
}
.art-card-tagline {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 4px;
  line-height: 1.3;
  text-align: center;
}

/* ── Footer Logo ── */
.footer-logo {
  display: block;
  width: 80px;
  height: 80px;
  margin: 0 auto 12px;
  filter: drop-shadow(0 0 20px rgba(0,255,229,0.4));
}

/* ── Responsive for new elements ── */
@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-split .hero-copy {
    text-align: center;
  }
  .hero-split .hero-logo {
    margin: 0 auto 24px;
  }
  .hero-split .hero-stats {
    margin: 0 auto 30px;
  }
  .hero-split .hero-actions {
    justify-content: center;
  }
  .hero-art {
    order: -1;
  }
  .hero-art-img {
    max-width: 300px;
  }
  .art-gallery-inner,
  .art-gallery-inner.art-gallery-2col {
    grid-template-columns: 1fr;
    max-width: 350px;
  }
  .art-card-center {
    order: -1;
  }
  .art-logo-badge {
    width: 120px;
    height: 120px;
  }
}
