/* =========================================================
   Pump Drama — landing page styles
   ========================================================= */

:root {
  --bg: #08080b;
  --bg-alt: #0f0f14;
  --surface: #16161d;
  --surface-2: #1c1c25;
  --border: #2a2a35;

  --text: #f2f0ea;
  --text-dim: #a9a6b3;
  --text-faint: #6f6c7a;

  --red: #ff4757;
  --red-deep: #9e0f1c;
  --gold: #f6d365;
  --gold-deep: #c9962b;
  --green: #3ee08a;
  --blue: #8fd3ff;

  --radius: 14px;
  --radius-sm: 8px;
  --max-width: 1120px;

  --font-display: "Cinzel", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- background glow ---------- */
.stage-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 40% at 20% 0%, rgba(255,71,87,0.16), transparent 60%),
    radial-gradient(60% 40% at 80% 10%, rgba(90,90,110,0.18), transparent 60%),
    radial-gradient(80% 60% at 50% 100%, rgba(62,224,138,0.06), transparent 60%),
    var(--bg);
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8,8,11,0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark { width: 36px; height: 36px; }

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 1.05rem;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.92rem;
  color: var(--text-dim);
}

.main-nav a:hover { color: var(--text); }

.nav-cta {
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  color: #1a1206;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600;
}
.nav-cta:hover { filter: brightness(1.08); color: #1a1206; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--text);
  display: block;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 72px 0 40px;
  text-align: center;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.82rem;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.status-pill .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.hero-mark {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  filter: drop-shadow(0 10px 30px rgba(255,71,87,0.25));
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  letter-spacing: 0.05em;
  margin: 0 0 10px;
  font-weight: 900;
}
.hero-title .accent { color: var(--red); }

.hero-tagline {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--text-dim);
  margin: 0 0 22px;
  font-weight: 500;
}

.hero-lede {
  max-width: 640px;
  color: var(--text-dim);
  font-size: 1.02rem;
  margin: 0 0 36px;
}
.hero-lede strong { color: var(--gold); }

.ipo-banner {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  background: linear-gradient(135deg, rgba(255,71,87,0.16), rgba(246,211,101,0.10));
  border: 1px solid rgba(246,211,101,0.4);
  padding: 12px 26px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.ipo-banner-label {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--text-dim);
}
.ipo-banner-days {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.countdown {
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.countdown-unit {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  min-width: 84px;
}

.countdown-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.countdown-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  text-transform: uppercase;
  margin-top: 4px;
}

.countdown-target {
  font-size: 0.85rem;
  color: var(--text-faint);
  margin: 0 0 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: #fff;
}
.btn-primary:hover { filter: brightness(1.08); color: #fff; }

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.mask-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin-top: 56px;
}

/* ---------- sections ---------- */
.section {
  padding: 88px 0;
}
.section-alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 10px;
  font-weight: 600;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  margin: 0 0 18px;
  max-width: 760px;
}

.section-lede {
  color: var(--text-dim);
  max-width: 680px;
  font-size: 1.02rem;
  margin: 0 0 44px;
}

/* ---------- feature grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.feature-card:hover {
  border-color: rgba(246,211,101,0.5);
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.94rem;
}

/* ---------- roadmap ---------- */
.roadmap {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 720px;
  border-left: 2px solid var(--border);
}

.roadmap-item {
  position: relative;
  padding: 4px 0 36px 32px;
}
.roadmap-item:last-child { padding-bottom: 0; }

.roadmap-marker {
  position: absolute;
  left: -19px;
  top: 2px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dim);
}

.roadmap-item.is-active .roadmap-marker {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 0 4px rgba(246,211,101,0.12);
}

.roadmap-body h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.roadmap-body p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.95rem;
  max-width: 560px;
}

.tag {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 700;
}
.tag-now {
  background: rgba(62,224,138,0.15);
  color: var(--green);
  border: 1px solid rgba(62,224,138,0.4);
}

/* ---------- IPO grid ---------- */
.ipo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 36px;
}

.ipo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ipo-card-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.ipo-card-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}

.disclaimer {
  font-size: 0.85rem;
  color: var(--text-faint);
  max-width: 720px;
  border-left: 2px solid var(--border);
  padding-left: 16px;
}

/* ---------- presale ---------- */
.presale-inner {
  display: flex;
  flex-direction: column;
}

.presale-form {
  flex-direction: column;
  align-items: flex-start;
  max-width: 420px;
}
.presale-form input[type="email"],
.presale-form input[type="text"] {
  flex: none !important;
  width: 100%;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 0.98rem;
  font-family: var(--font-body);
}
.presale-form input[type="text"]:focus {
  outline: none;
  border-color: var(--gold);
}
.presale-form button {
  align-self: flex-start;
}

.warning-box {
  margin-top: 32px;
  max-width: 720px;
  background: rgba(246, 211, 101, 0.07);
  border: 1px solid rgba(246, 211, 101, 0.35);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: 0.9rem;
  color: var(--text-dim);
}
.warning-box strong {
  color: var(--gold);
}

/* ---------- join / waitlist ---------- */
.section-join {
  text-align: center;
}
.join-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.join-inner .section-title,
.join-inner .section-lede,
.join-inner .eyebrow {
  text-align: center;
}

.waitlist-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 460px;
}

.waitlist-form input[type="email"] {
  flex: 1 1 240px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 0.98rem;
  font-family: var(--font-body);
}
.waitlist-form input[type="email"]:focus {
  outline: none;
  border-color: var(--gold);
}

.form-note {
  margin: 16px 0 0;
  font-size: 0.9rem;
  color: var(--text-dim);
  min-height: 1.4em;
}
.form-note.is-success { color: var(--green); }
.form-note.is-error { color: var(--red); }

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 28px;
  background: var(--bg-alt);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}
.footer-mark { width: 26px; height: 26px; }

.footer-links {
  display: flex;
  gap: 22px;
  color: var(--text-dim);
  font-size: 0.9rem;
}
.footer-links a:hover { color: var(--text); }

.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: var(--text-dim);
  font-weight: 700;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-fine {
  font-size: 0.8rem;
  color: var(--text-faint);
  margin: 0;
}

/* ---------- responsive ---------- */
@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 20px;
    transform: translateY(-130%);
    transition: transform 0.2s ease;
  }
  .main-nav.is-open { transform: translateY(0); }
  .main-nav a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--border); }
  .main-nav .nav-cta { margin-top: 12px; text-align: center; }
  .nav-toggle { display: flex; }

  .countdown-unit { min-width: 70px; padding: 12px 14px; }
  .countdown-value { font-size: 1.5rem; }
}

/* =========================================================
   Community platform additions (auth, chat, terms)
   ========================================================= */

.inline-form { display: inline; }

.nav-user {
  color: var(--text-dim);
  font-size: 0.88rem;
  margin-right: 4px;
}

.nav-link-auth {
  color: var(--text-dim);
  font-size: 0.92rem;
}
.nav-link-auth:hover { color: var(--text); }

.nav-cta-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-dim);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  font-family: var(--font-body);
}
.nav-cta-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- auth pages (login/register) ---------- */
.auth-section {
  padding: 72px 0 96px;
  display: flex;
  justify-content: center;
}
.auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.auth-card h1 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin: 0 0 8px;
}
.auth-card .auth-sub {
  color: var(--text-dim);
  font-size: 0.92rem;
  margin: 0 0 28px;
}
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.field input[type="email"],
.field input[type="password"],
.field input[type="text"],
.field textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  font-size: 0.96rem;
  font-family: var(--font-body);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.field-hint {
  font-size: 0.78rem;
  color: var(--text-faint);
  margin-top: 5px;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0 24px;
  font-size: 0.86rem;
  color: var(--text-dim);
}
.checkbox-field input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.checkbox-field a { color: var(--gold); }

.auth-card .btn { width: 100%; }

.auth-switch {
  margin-top: 20px;
  font-size: 0.88rem;
  color: var(--text-dim);
  text-align: center;
}
.auth-switch a { color: var(--gold); }

.form-error {
  background: rgba(255, 71, 87, 0.1);
  border: 1px solid rgba(255, 71, 87, 0.4);
  color: #ffb3ba;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.88rem;
  margin-bottom: 20px;
}
.form-success {
  background: rgba(62, 224, 138, 0.1);
  border: 1px solid rgba(62, 224, 138, 0.4);
  color: var(--green);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.88rem;
  margin-bottom: 20px;
}

.blocked-banner {
  background: rgba(255, 71, 87, 0.1);
  border: 1px solid rgba(255, 71, 87, 0.4);
  color: #ffb3ba;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

/* ---------- terms page ---------- */
.terms-section { padding: 64px 0 96px; }
.terms-body {
  max-width: 720px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 36px;
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.8;
  white-space: normal;
}

/* ---------- community / channel list ---------- */
.channels-section { padding: 72px 0 96px; }
.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 36px;
}
.channel-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.channel-card:hover { border-color: rgba(246,211,101,0.5); transform: translateY(-2px); }
.channel-card .channel-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.channel-card p {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin: 0 0 16px;
}

/* ---------- chat room ---------- */
.chat-section {
  padding: 40px 0 80px;
}
.chat-shell {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.chat-rooms-nav {
  width: 200px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: sticky;
  top: 96px;
}
.chat-rooms-nav a {
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--text-dim);
  font-size: 0.92rem;
  border: 1px solid transparent;
}
.chat-rooms-nav a:hover { background: var(--surface); }
.chat-rooms-nav a.is-active {
  background: var(--surface);
  border-color: var(--gold);
  color: var(--gold);
  font-weight: 600;
}

.chat-main {
  flex: 1;
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  height: 70vh;
  min-height: 480px;
}
.chat-header {
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
}
.chat-header h1 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0 0 4px;
}
.chat-header p { margin: 0; color: var(--text-faint); font-size: 0.85rem; }

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.chat-msg {
  max-width: 100%;
}
.chat-msg-head {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 3px;
}
.chat-msg-author {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--gold);
}
.chat-msg-time {
  font-size: 0.72rem;
  color: var(--text-faint);
}
.chat-msg-body {
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.55;
  word-wrap: break-word;
  white-space: pre-wrap;
}
.chat-msg-report {
  background: none;
  border: none;
  color: var(--text-faint);
  font-size: 0.72rem;
  cursor: pointer;
  padding: 2px 0;
  text-decoration: underline;
}
.chat-msg-report:hover { color: var(--red); }
.chat-empty {
  color: var(--text-faint);
  font-size: 0.9rem;
  text-align: center;
  margin-top: 40px;
}

.chat-composer {
  border-top: 1px solid var(--border);
  padding: 16px 22px;
  display: flex;
  gap: 12px;
}
.chat-composer textarea {
  flex: 1;
  resize: none;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.92rem;
  min-height: 46px;
  max-height: 120px;
}
.chat-composer textarea:focus { outline: none; border-color: var(--gold); }
.chat-composer button {
  align-self: flex-end;
}
.chat-blocked-note {
  padding: 16px 22px;
  border-top: 1px solid var(--border);
  color: var(--text-faint);
  font-size: 0.85rem;
  text-align: center;
}

/* report modal (lightweight, no JS framework) */
.report-dialog {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 20px;
}
.report-dialog.is-open { display: flex; }
.report-dialog-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  max-width: 420px;
  width: 100%;
}
.report-dialog-box h3 { margin: 0 0 10px; font-size: 1.1rem; }
.report-dialog-box p { color: var(--text-dim); font-size: 0.88rem; margin: 0 0 16px; }
.report-dialog-box textarea {
  width: 100%;
  min-height: 80px;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  font-family: var(--font-body);
  margin-bottom: 16px;
  resize: vertical;
}
.report-dialog-actions { display: flex; gap: 10px; justify-content: flex-end; }

@media (max-width: 860px) {
  .chat-shell { flex-direction: column; }
  .chat-rooms-nav {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    position: static;
  }
  .chat-main { height: 60vh; }
}

/* ---------- arcade ---------- */
.arcade-section {
  padding: 56px 0 96px;
  display: flex;
  justify-content: center;
}
.arcade-card {
  width: 100%;
  max-width: 640px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.arcade-card-narrow { max-width: 480px; }
.arcade-lede { color: var(--text-dim); font-size: 0.96rem; margin: 0 0 24px; }

.arcade-pay-box {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 20px;
}
.arcade-pay-row { margin-bottom: 16px; }
.arcade-pay-row:last-of-type { margin-bottom: 0; }
.arcade-pay-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.arcade-pay-value-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.arcade-pay-amount {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
}
.arcade-pay-address {
  font-family: monospace;
  font-size: 0.86rem;
  color: var(--text);
  word-break: break-all;
}
.btn-copy {
  padding: 6px 14px;
  font-size: 0.78rem;
  border-radius: 999px;
  flex-shrink: 0;
}
.arcade-pay-hint {
  font-size: 0.8rem;
  color: var(--text-faint);
  margin: 14px 0 0;
  line-height: 1.5;
}
.arcade-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(246, 211, 101, 0.08);
  border: 1px solid rgba(246, 211, 101, 0.25);
  font-size: 0.88rem;
  color: var(--text-dim);
}
.arcade-status-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: arcadePulse 1.4s ease-in-out infinite;
}
.arcade-status.is-checking .arcade-status-dot { background: var(--green); }
@keyframes arcadePulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}
.arcade-fine {
  font-size: 0.78rem;
  color: var(--text-faint);
  margin: 18px 0 0;
  line-height: 1.5;
}

.arcade-hud {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.arcade-hud > div { display: flex; flex-direction: column; }
.arcade-hud-label {
  font-size: 0.72rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.arcade-hud-value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
}
.arcade-hud .btn-sm { margin-left: auto; }
.btn-sm { padding: 8px 18px; font-size: 0.82rem; }

.arcade-canvas-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #030305;
}
.arcade-canvas-wrap canvas { display: block; width: 100%; height: auto; }
.arcade-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 3, 5, 0.72);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-align: center;
  padding: 20px;
  cursor: pointer;
}
.arcade-overlay[hidden] { display: none; }

.arcade-touch-pad {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 18px auto 0;
  max-width: 200px;
}
.arcade-touch-row { display: flex; gap: 8px; }
.arcade-touch-pad button {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--gold);
  font-size: 1.3rem;
  cursor: pointer;
}
.arcade-controls-hint {
  text-align: center;
  color: var(--text-faint);
  font-size: 0.82rem;
  margin: 16px 0 0;
}

@media (max-width: 640px) {
  .arcade-touch-pad { display: flex; }
}
