:root {
  --bg: #0b0014;
  --ink: #ffffff;
  --muted: #f2d7ff;
  --soft: rgba(255, 255, 255, .11);
  --line: rgba(255, 255, 255, .16);
  --pink: #ff2ca3;
  --pink-2: #ff5abf;
  --purple: #7028ff;
  --violet: #1e0631;
  --blue: #2f7bff;
  --orange: #ffb347;
  --green: #39e67d;
  --shadow: 0 24px 70px rgba(0,0,0,.48);
  --radius: 28px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font);
  background:
    radial-gradient(circle at 10% 10%, rgba(255,44,163,.28), transparent 25rem),
    radial-gradient(circle at 90% 20%, rgba(47,123,255,.24), transparent 24rem),
    linear-gradient(160deg, #090012 0%, #230030 45%, #08000e 100%);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }
.section-shell { width: min(100% - 24px, 1120px); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

.ambient { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.orb { position: absolute; width: 24rem; height: 24rem; border-radius: 50%; filter: blur(60px); opacity: .5; animation: float 9s ease-in-out infinite; }
.orb-pink { top: -8rem; left: -8rem; background: var(--pink); }
.orb-blue { right: -9rem; top: 18rem; background: var(--blue); animation-delay: -3s; }
.scanline { position: absolute; inset: 0; background: repeating-linear-gradient(180deg, rgba(255,255,255,.026) 0 1px, transparent 1px 5px); opacity: .38; mix-blend-mode: screen; }

@keyframes float { 50% { transform: translate3d(18px,-26px,0) scale(1.05); } }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.7); opacity: .55; } }
@keyframes shimmer { to { transform: translateX(115%); } }
@keyframes pop { from { opacity: 0; transform: translateY(22px) scale(.96); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes toastIn { 0%,100% { transform: translate(-50%, 18px); opacity: 0; } 14%,86% { transform: translate(-50%, 0); opacity: 1; } }
@keyframes rise { from { transform: translateY(8px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.topbar {
  position: fixed;
  top: max(10px, env(safe-area-inset-top));
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: min(100% - 20px, 560px);
  min-height: 58px;
  padding: 8px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(15, 0, 27, .58);
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 46px rgba(0,0,0,.28);
}
.brand { display: inline-flex; align-items: center; gap: 8px; font-weight: 950; letter-spacing: -.02em; }
.brand img { width: 44px; filter: drop-shadow(0 8px 16px rgba(255,44,163,.45)); }
.brand span { font-size: 13px; text-transform: uppercase; }
.top-actions { display: flex; align-items: center; gap: 8px; }
.mini-link, .sound-btn {
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.1);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mini-link { gap: 7px; padding: 0 12px; font-size: 13px; }
.sound-btn { width: 40px; cursor: pointer; }
.sound-btn.is-on { background: linear-gradient(135deg, rgba(255,44,163,.85), rgba(112,40,255,.85)); box-shadow: 0 0 22px rgba(255,44,163,.28); }
.live-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; background: #ff2f63; box-shadow: 0 0 16px #ff2f63; animation: pulse 1.2s ease-in-out infinite; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #1a0729;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.01);
  filter: saturate(1.08) contrast(1.02);
}
.hero-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,0,16,.16) 0%, rgba(7,0,16,.04) 32%, rgba(7,0,16,.88) 86%, #0b0014 100%),
    radial-gradient(circle at bottom, rgba(255,44,163,.36), transparent 46%);
}
.hero-chips {
  position: absolute;
  top: calc(env(safe-area-inset-top) + 86px);
  left: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.hero-chips span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
  background: rgba(0,0,0,.36);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
}
.hero-sheet {
  position: relative;
  z-index: 2;
  width: min(100% - 24px, 560px);
  margin: 0 auto max(22px, env(safe-area-inset-bottom));
  padding: 22px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(160deg, rgba(12,0,24,.74), rgba(43,5,55,.52));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.eyebrow { margin: 0 0 8px; display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 950; text-transform: uppercase; letter-spacing: .12em; color: #ffd7f1; }
h1, h2 { margin: 0; line-height: .94; letter-spacing: -.055em; }
h1 { font-size: clamp(38px, 13vw, 70px); text-shadow: 0 10px 40px rgba(255,44,163,.3); }
h2 { font-size: clamp(32px, 9vw, 54px); }
.subline { margin: 10px 0 0; color: var(--muted); line-height: 1.45; font-size: 15px; }
.hero-actions { display: grid; grid-template-columns: 1.35fr .9fr; gap: 10px; margin-top: 18px; }
.btn {
  position: relative;
  isolation: isolate;
  min-height: 54px;
  border: 0;
  border-radius: 18px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 18px;
  font-weight: 950;
  letter-spacing: -.01em;
  cursor: pointer;
  overflow: hidden;
  transition: transform .18s ease, filter .18s ease;
}
.btn::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent); transform: translateX(-115%); z-index: -1; }
.btn:hover { transform: translateY(-2px); filter: brightness(1.08); }
.btn:hover::after { animation: shimmer .85s ease; }
.btn-primary { background: linear-gradient(135deg, var(--pink), var(--purple) 55%, var(--blue)); box-shadow: 0 15px 34px rgba(255,44,163,.28); }
.btn-soft { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); }
.btn-wide { width: 100%; }

.quick-stats {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
}
.quick-stats div {
  min-height: 78px;
  padding: 14px 10px;
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
  display: grid;
  place-items: center;
  text-align: center;
}
.quick-stats strong { font-size: clamp(20px, 6vw, 30px); letter-spacing: -.04em; }
.quick-stats span { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }

.claim-card, .console-card, .chat-card, .disclaimer {
  margin-top: 18px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255,255,255,.11), rgba(255,255,255,.045));
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.claim-card { display: grid; grid-template-columns: .92fr 1.08fr; min-height: 630px; }
.claim-art { position: relative; min-height: 360px; overflow: hidden; }
.claim-art img { width: 100%; height: 100%; object-fit: cover; object-position: center 16%; }
.claim-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 36%, rgba(11,0,20,.86) 100%); }
.art-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(0,0,0,.44);
  border: 1px solid rgba(255,255,255,.17);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.claim-content { padding: 24px; display: flex; flex-direction: column; justify-content: center; }
.compact { margin-bottom: 18px; }
.claim-form fieldset { margin: 0; padding: 0; border: 0; }
.console-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.console-option {
  position: relative;
  min-height: 132px;
  border-radius: 24px;
  padding: 16px;
  background: rgba(255,255,255,.085);
  border: 1px solid rgba(255,255,255,.14);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.console-option input { position: absolute; opacity: 0; pointer-events: none; }
.console-option:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.28); }
.console-option:has(input:checked) {
  border-color: rgba(255,90,191,.95);
  background: linear-gradient(145deg, rgba(255,44,163,.28), rgba(47,123,255,.12));
  box-shadow: inset 0 0 0 1px rgba(255,90,191,.35), 0 18px 34px rgba(255,44,163,.18);
}
.platform-mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.24);
}
.platform-mark svg { width: 33px; height: 33px; fill: #fff; }
.ps-mark { background: linear-gradient(135deg, #326bff, #9d66ff); }
.xbox-mark { background: linear-gradient(135deg, #1fd879, #07743e); }
.console-option strong { font-size: 16px; }
.email-field { display: block; margin-top: 15px; }
.email-field span { display: block; margin-bottom: 8px; font-weight: 950; font-size: 13px; color: #ffe7f6; }
.email-field input {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.32);
  color: #fff;
  outline: none;
}
.email-field input:focus { border-color: var(--pink-2); box-shadow: 0 0 0 4px rgba(255,44,163,.14); }
.claim-form .btn { margin-top: 15px; }
.flow-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 7px; margin-top: 14px; }
.flow-strip span { padding: 10px 6px; border-radius: 14px; background: rgba(255,255,255,.075); color: var(--muted); text-align: center; font-size: 11px; font-weight: 900; }

.console-card { padding: 18px; background: rgba(0,0,0,.38); min-height: 390px; scroll-margin-top: 78px; }
.terminal-top { display: flex; align-items: center; gap: 7px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.1); }
.terminal-top span { width: 11px; height: 11px; border-radius: 50%; background: var(--pink); }
.terminal-top span:nth-child(2) { background: var(--orange); }
.terminal-top span:nth-child(3) { background: var(--green); }
.terminal-top strong { margin-left: auto; color: #dac7e6; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; font-size: 12px; }
.terminal-lines { padding-top: 12px; height: 300px; max-height: 300px; overflow-y: auto; overflow-x: hidden; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; font-size: 12px; line-height: 1.55; color: #eaffff; }
.terminal-lines p { margin: 0 0 8px; padding: 9px 10px; border-radius: 12px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.07); animation: rise .2s ease both; }
.terminal-lines span { color: var(--orange); }

.chat-card { padding: 18px; margin-bottom: 18px; }
.chat-title { display: flex; align-items: end; justify-content: space-between; gap: 14px; margin-bottom: 14px; }
.rate { flex: 0 0 auto; padding: 10px 12px; border-radius: 999px; background: rgba(255,255,255,.09); color: var(--muted); font-size: 12px; }
.chat-header { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px; border-radius: 18px; background: rgba(0,0,0,.28); border: 1px solid rgba(255,255,255,.09); }
.chat-header span { font-weight: 950; letter-spacing: .08em; font-size: 11px; }
.chat-header em { color: var(--muted); font-size: 11px; }
.chat-feed { display: flex; flex-direction: column-reverse; gap: 10px; height: 470px; overflow-y: auto; overflow-x: hidden; padding-top: 12px; }
.chat-msg { padding: 12px 13px; border-radius: 18px; background: rgba(255,255,255,.075); border: 1px solid rgba(255,255,255,.09); animation: pop .22s ease both; }
.chat-msg strong { font-size: 13px; color: #fff; }
.chat-msg span { margin-left: 8px; font-size: 11px; color: #d3bddd; }
.chat-msg p { margin: 6px 0 0; line-height: 1.36; font-size: 13px; color: #fff1fb; }

.disclaimer { padding: 18px; margin-bottom: 20px; }
.disclaimer strong { font-size: 13px; text-transform: uppercase; letter-spacing: .09em; }
.disclaimer p { margin: 8px 0 0; color: var(--muted); line-height: 1.55; font-size: 12px; }
.sticky-cta {
  position: fixed;
  z-index: 48;
  left: 50%;
  bottom: max(14px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  width: min(100% - 28px, 520px);
  height: 56px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 950;
  background: linear-gradient(135deg, var(--pink), var(--purple) 55%, var(--blue));
  box-shadow: 0 18px 42px rgba(255,44,163,.36);
}

.modal { position: fixed; inset: 0; display: none; place-items: center; padding: 16px; z-index: 100; }
.modal[aria-hidden="false"] { display: grid; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.72); backdrop-filter: blur(16px); }
.modal-card {
  position: relative;
  width: min(100%, 520px);
  border-radius: 32px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(180deg, rgba(42,12,68,.96), rgba(19,2,29,.98));
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: pop .26s ease both;
}
.modal-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 25% 15%, rgba(255,44,163,.32), transparent 42%), radial-gradient(circle at 90% 90%, rgba(47,123,255,.26), transparent 38%); pointer-events: none; }
.modal-card > * { position: relative; z-index: 1; }
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.34);
  color: #fff;
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
}
.modal-visual { width: 130px; margin-bottom: 8px; filter: drop-shadow(0 12px 25px rgba(0,0,0,.48)); }
.modal-sub { color: var(--muted); line-height: 1.4; margin: 10px 0 0; }
.key-card { margin: 15px 0; padding: 16px; border-radius: 22px; background: rgba(0,0,0,.42); border: 1px solid rgba(255,255,255,.14); }
.partial-key { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; font-size: clamp(29px, 9vw, 48px); font-weight: 1000; letter-spacing: .04em; text-align: center; text-shadow: 0 0 20px rgba(109,248,255,.35); overflow-wrap: anywhere; }
.key-blocks { display: grid; grid-template-columns: repeat(12,1fr); gap: 5px; margin-top: 12px; }
.key-blocks span { height: 8px; border-radius: 999px; background: rgba(255,255,255,.14); }
.key-blocks span.is-on { background: linear-gradient(90deg, var(--orange), var(--pink)); box-shadow: 0 0 16px rgba(255,44,163,.45); }
.short-note { margin: 0 0 13px; color: #fff2c9; font-size: 13px; line-height: 1.4; }
.modal-card .btn + .btn { margin-top: 9px; }
.secure-line { text-align: center; margin: 12px 0 0; color: #dcc5e8; font-size: 12px; }
.toast {
  position: fixed;
  left: 50%;
  bottom: max(86px, calc(env(safe-area-inset-bottom) + 72px));
  transform: translateX(-50%);
  z-index: 140;
  display: none;
  width: max-content;
  max-width: min(100% - 28px, 480px);
  padding: 13px 16px;
  border-radius: 999px;
  background: rgba(13,0,23,.9);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadow);
  font-weight: 800;
  font-size: 13px;
}
.toast.show { display: block; animation: toastIn 3.2s ease both; }

@media (min-width: 760px) {
  .hero { min-height: 860px; align-items: center; }
  .hero-bg { object-position: center center; }
  .hero-sheet { margin-top: 280px; }
  .sticky-cta { display: none !important; }
}

@media (max-width: 759px) {
  .sticky-cta { display: flex; }
  .claim-card { grid-template-columns: 1fr; min-height: auto; }
  .claim-art { height: 300px; min-height: 300px; }
  .claim-content { padding: 18px; }
  .chat-feed { height: 430px; }
}

@media (max-width: 420px) {
  .section-shell { width: min(100% - 20px, 1120px); }
  .topbar { min-height: 54px; }
  .brand img { width: 40px; }
  .brand span { max-width: 92px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .hero-sheet { padding: 18px; border-radius: 28px; }
  .hero-actions { grid-template-columns: 1fr; }
  .quick-stats { gap: 8px; }
  .quick-stats div { min-height: 68px; }
  .console-grid { gap: 10px; }
  .console-option { min-height: 120px; padding: 13px 8px; }
  .platform-mark { width: 48px; height: 48px; border-radius: 16px; }
  .platform-mark svg { width: 29px; height: 29px; }
  .flow-strip { grid-template-columns: repeat(2,1fr); }
  .modal-card { padding: 18px; border-radius: 28px; }
}


/* Final requested refinements */
.sticky-cta { display: none !important; }
.hero-chips { display: none !important; }

.active-users-pill {
  gap: 10px;
  padding: 0 14px;
  min-width: 142px;
}
.active-users-pill strong {
  font-size: 16px;
  line-height: 1;
}
.active-users-pill em {
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .03em;
  color: var(--muted);
}

.remaining-card {
  margin-top: 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,44,163,.18), rgba(112,40,255,.11) 46%, rgba(47,123,255,.16));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.remaining-card-inner { padding: 18px; }
.remaining-copy strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(36px, 12vw, 56px);
  line-height: .9;
  letter-spacing: -.055em;
  text-shadow: 0 12px 34px rgba(255,44,163,.35);
}
.remaining-copy span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.remaining-meter {
  margin-top: 14px;
  height: 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.34);
  border: 1px solid rgba(255,255,255,.13);
  overflow: hidden;
}
.remaining-bar {
  height: 100%;
  width: 42%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--pink), var(--purple));
  box-shadow: 0 0 18px rgba(255,44,163,.36);
  transition: width .4s ease;
}

.live-claims-card {
  margin-top: 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255,44,163,.15), transparent 36%),
    radial-gradient(circle at 100% 100%, rgba(47,123,255,.14), transparent 36%),
    linear-gradient(160deg, rgba(255,255,255,.09), rgba(255,255,255,.045));
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 52px rgba(0,0,0,.34);
  overflow: hidden;
}
.live-claims-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 16px 10px;
}
.live-claims-head .eyebrow { margin: 0; font-size: 10px; }
.live-claims-head > span {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.30);
  border: 1px solid rgba(255,255,255,.11);
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.live-claim-feed {
  display: grid;
  gap: 8px;
  padding: 0 14px 14px;
}
.live-claim-row {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 9px 10px;
  border-radius: 18px;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.09);
  animation: pop .22s ease both;
}
.live-claim-flag {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  font-size: 22px;
  line-height: 1;
}
.live-claim-main { min-width: 0; }
.live-claim-email {
  display: block;
  color: #fff;
  font-weight: 950;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.live-claim-text {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.live-claim-platform {
  min-width: 54px;
  padding: 8px 9px;
  border-radius: 999px;
  text-align: center;
  color: #fff;
  font-size: 11px;
  font-weight: 950;
  border: 1px solid rgba(255,255,255,.13);
  background: linear-gradient(135deg, rgba(255,44,163,.38), rgba(47,123,255,.28));
}
.live-claim-platform.xbox {
  background: linear-gradient(135deg, rgba(31,216,121,.42), rgba(47,123,255,.18));
}

.instruction-note {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,44,163,.13), rgba(47,123,255,.11));
  border: 1px solid rgba(255,255,255,.13);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.instruction-note strong { color: #fff; }

.modal-card-gradient {
  background:
    radial-gradient(circle at 18% 10%, rgba(255,44,163,.30), transparent 42%),
    radial-gradient(circle at 90% 90%, rgba(47,123,255,.24), transparent 38%),
    linear-gradient(180deg, rgba(45,10,65,.98), rgba(14,0,24,.98));
}
.countdown-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 11px;
  margin: 14px 0 15px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(0,0,0,.30);
  border: 1px solid rgba(255,255,255,.13);
}
.countdown-box span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.countdown-box strong { font-size: 24px; letter-spacing: .04em; }

.chat-card {
  background:
    radial-gradient(circle at 18% 8%, rgba(255,44,163,.18), transparent 38%),
    radial-gradient(circle at 90% 85%, rgba(47,123,255,.16), transparent 36%),
    linear-gradient(180deg, rgba(52,17,82,.98), rgba(18,1,26,.98)) !important;
  border-color: rgba(255,255,255,.20);
  box-shadow: 0 28px 74px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.08);
}
.chat-title-simple { align-items: center; margin-bottom: 14px; }
.demo-chat-title {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: clamp(26px, 8vw, 42px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.035em;
  text-shadow: 0 12px 34px rgba(255,44,163,.28);
}
.chat-card .chat-header,
.chat-card .rate,
.chat-card h2 { display: none !important; }
.chat-feed { padding-top: 4px; }
.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 14px;
}
.chat-form input,
.username-form input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.32);
  color: #fff;
  outline: none;
}
.chat-form input:focus,
.username-form input:focus {
  border-color: var(--pink-2);
  box-shadow: 0 0 0 4px rgba(255,44,163,.14);
}
.chat-msg.user {
  border-color: rgba(255,90,191,.28);
  background: rgba(255,44,163,.08);
}
.username-card {
  width: min(100%, 420px);
  background:
    radial-gradient(circle at 18% 10%, rgba(255,44,163,.24), transparent 44%),
    linear-gradient(180deg, rgba(24,1,34,.98), rgba(12,0,20,.98));
}
.username-form { display: grid; gap: 10px; margin-top: 14px; }

@media (max-width: 759px) {
  .console-card { min-height: 360px; }
  .terminal-lines { height: 280px; max-height: 280px; }
}
@media (max-width: 420px) {
  .active-users-pill { min-width: 134px; padding: 0 12px; }
  .active-users-pill strong { font-size: 15px; }
  .active-users-pill em { font-size: 10px; }
  .chat-form { grid-template-columns: 1fr; }
  .live-claim-row {
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 8px;
    padding: 9px;
  }
  .live-claim-flag {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    font-size: 20px;
  }
  .live-claim-email { font-size: 12px; }
  .live-claim-text { font-size: 10px; }
  .live-claim-platform {
    min-width: 48px;
    padding: 7px 8px;
    font-size: 10px;
  }
}
