:root {
  --bg: #050913;
  --paper: #f4f7ff;
  --ink: #08111f;
  --violet: #7fd2ff;
  --orange: #ff5f1f;
  --yellow: #dbe8ff;
  --lime: #9fe7ff;
  --cyan: #8dbfff;
  --shadow: 10px 10px 0 #1d315e;
  --border: 4px solid #7fd2ff;
  --body-font: "Trebuchet MS", "Avenir Next Condensed", "Arial Narrow",
    sans-serif;
  --display-font: Impact, Haettenschweiler, "Arial Black", sans-serif;
  --cursor-football: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M8 23c7-1 12-5 17-14 0 0-2 9-10 16l-7-2Z' fill='%23ff5f1f'/%3E%3Cpath d='M10 25c6-2 10-5 14-9' stroke='%23dbe8ff' stroke-width='2.4' stroke-linecap='round'/%3E%3Ccircle cx='22.5' cy='9.5' r='3' fill='%23ffffff'/%3E%3C/svg%3E") 4 4;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 18%, rgba(127, 210, 255, 0.16), transparent 24rem),
    radial-gradient(circle at 82% 8%, rgba(255, 95, 31, 0.16), transparent 20rem),
    linear-gradient(180deg, #060b14 0%, #091220 52%, #050913 100%);
  color: #f4f7ff;
  font-family: var(--body-font);
  cursor: var(--cursor-football), auto;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: var(--cursor-football), pointer;
}

button,
input,
summary,
[role="button"] {
  cursor: var(--cursor-football), pointer;
}

.page-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 1.1rem;
  border-bottom: 4px solid rgba(127, 210, 255, 0.55);
  background:
    linear-gradient(90deg, rgba(6, 11, 20, 0.96) 0%, rgba(9, 18, 32, 0.96) 100%);
  backdrop-filter: blur(10px);
}

.brand-badge,
.wallet-chip,
.topnav a,
.status-pill,
.eyebrow,
.mini-label,
.step-no {
  text-transform: uppercase;
}

.brand-badge {
  display: grid;
  gap: 0.02rem;
  padding: 0;
  background: transparent;
  line-height: 0.9;
  color: #f4f7ff;
}

.brand-mark-main,
.brand-mark-sub {
  display: block;
  font-family: var(--display-font);
  text-transform: uppercase;
}

.brand-mark-main {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  letter-spacing: 0.12em;
}

.brand-mark-sub {
  font-size: clamp(0.82rem, 1.2vw, 1rem);
  letter-spacing: 0.62em;
  color: var(--violet);
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.topnav a,
.wallet-chip {
  padding: 0.75rem 1rem;
  border: 3px solid transparent;
  color: #f4f7ff;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.topnav a.is-active {
  background: var(--orange);
  border-color: #ffc0a7;
  color: var(--ink);
}

.wallet-chip {
  border-color: rgba(127, 210, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.social-x {
  display: inline-flex;
  align-items: center;
}

.social-x svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.admin-launch {
  cursor: pointer;
}

.top-mint-chip {
  display: grid;
  gap: 0.1rem;
  min-width: 20rem;
  padding: 0.5rem 0.8rem;
  border: 3px solid rgba(127, 210, 255, 0.22);
  background: rgba(127, 210, 255, 0.08);
  color: #f4f7ff;
}

.top-mint-chip span {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-mint-chip strong {
  font-family: "Courier New", monospace;
  font-size: 0.84rem;
  line-height: 1.3;
}

.mint-copy-target {
  display: block;
  width: 100%;
  cursor: copy;
  user-select: all;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.mint-copy-target:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 0.22rem;
}

.status-row {
  margin-bottom: 1rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.55rem;
  background: var(--orange);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.status-pill::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.12);
}

.site-main {
  width: min(1440px, calc(100% - 1.25rem));
  margin: 2rem auto 0;
}

.hero-grid,
.duo-grid,
.verify-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.hero-grid {
  grid-template-columns: 0.9fr 1.8fr;
}

.duo-grid {
  grid-template-columns: 1fr 1.35fr;
}

.verify-grid {
  grid-template-columns: minmax(0, 1.75fr) minmax(250px, 0.62fr);
  align-items: start;
}

.verify-grid > .verify-panel:only-child {
  grid-column: 1 / -1;
}

[hidden] {
  display: none !important;
}

.panel {
  position: relative;
  overflow: hidden;
  padding: 1.6rem;
  border: var(--border);
  box-shadow: var(--shadow);
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 42%),
    linear-gradient(0deg, rgba(8, 17, 31, 0.03), rgba(8, 17, 31, 0.03));
}

.status-panel,
.flow-panel,
.white-panel {
  background:
    radial-gradient(circle at top left, rgba(127, 210, 255, 0.22), transparent 18rem),
    linear-gradient(180deg, #eef4ff 0%, #dde8fb 100%);
  color: var(--ink);
}

.hero-panel,
.statement-mark {
  color: #fff;
}

.hero-panel {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr;
  gap: 1.25rem;
  align-items: end;
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.16), transparent 12rem),
    linear-gradient(135deg, rgba(255, 95, 31, 0.2) 0%, transparent 34%),
    linear-gradient(140deg, #07101d 0%, #0b1628 52%, #050913 100%);
}

.yellow-panel,
.faq-panel {
  background:
    linear-gradient(180deg, #f8fbff 0%, #dfe8ff 100%);
  color: var(--ink);
}

.verify-panel {
  background:
    radial-gradient(circle at top left, rgba(127, 210, 255, 0.24), transparent 18rem),
    linear-gradient(180deg, #eef4ff 0%, #dde8fb 100%);
  color: var(--ink);
}

.admin-panel,
.mint-panel {
  background: transparent;
  color: var(--ink);
}

.black-panel,
.statement-panel,
.logs-panel {
  background:
    radial-gradient(circle at top right, rgba(127, 210, 255, 0.12), transparent 18rem),
    linear-gradient(180deg, #0a1324 0%, #07101d 100%);
  color: #fff;
}

.statement-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.22rem 0.48rem;
  background: var(--orange);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.status-panel .eyebrow,
.white-panel .eyebrow {
  background: var(--violet);
}

.black-panel .eyebrow,
.statement-panel .eyebrow {
  background: var(--cyan);
}

.brand-lockup,
.hero-copy h2,
.yellow-panel h3,
.black-panel h3,
.flow-panel h3,
.statement-copy h3,
.white-panel h3,
.faq-panel h3 {
  margin: 0;
  font-family: var(--display-font);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  font-size: clamp(3rem, 8vw, 5.2rem);
  margin-bottom: 8rem;
}

.status-panel .brand-lockup {
  color: #0a1730;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.hero-copy h2 {
  font-size: clamp(3.6rem, 8vw, 7rem);
  margin-bottom: 1rem;
}

.yellow-panel h3,
.black-panel h3,
.flow-panel h3,
.statement-copy h3,
.white-panel h3,
.faq-panel h3 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: 1rem;
}

.support-copy,
.hero-copy p,
.yellow-panel p,
.black-panel p,
.flow-grid p,
.statement-copy p,
.white-panel p,
.faq-list p,
.result-card p {
  max-width: 60ch;
  font-size: 1.1rem;
  line-height: 1.35;
  font-weight: 700;
}

.status-panel .support-copy,
.verify-panel p,
.verify-panel strong,
.verify-panel .field-block,
.verify-panel .verify-note,
.flow-panel,
.white-panel,
.yellow-panel,
.faq-panel {
  color: var(--ink);
}

.hero-copy span {
  color: #ffd4bf;
}

.countdown-block {
  display: inline-flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.8rem 0.9rem;
  border: 3px solid rgba(127, 210, 255, 0.4);
  background: rgba(127, 210, 255, 0.18);
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #0a1730;
}

.countdown-block strong {
  font-size: 1.8rem;
  font-family: var(--display-font);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.primary-cta,
.secondary-cta,
.verify-button {
  padding: 1rem 1.25rem;
  border: 4px solid var(--violet);
  box-shadow: 6px 6px 0 rgba(18, 18, 18, 0.2);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.primary-cta {
  background: var(--orange);
}

.secondary-cta {
  background: rgba(255, 255, 255, 0.08);
  color: #f4f7ff;
}

.admin-panel .secondary-cta,
.mint-panel .secondary-cta {
  background: var(--paper);
  color: var(--ink);
}

.verify-form {
  display: grid;
  gap: 1rem;
}

.auth-form,
.mint-form {
  display: grid;
  gap: 1rem;
}

.field-block {
  display: grid;
  gap: 0.5rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.field-block input {
  width: 100%;
  padding: 1rem;
  border: 3px solid var(--ink);
  background: #fff;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
}

.field-block input[readonly] {
  background: #e7eefc;
}

.warning-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  padding: 1rem 1.1rem;
  border: 4px solid var(--ink);
  background: linear-gradient(135deg, #ff5f1f 0%, #ff7d3a 100%);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.warning-banner span {
  color: #fff0bf;
}

.verify-rules,
.round-explainer {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.verify-rules {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.round-explainer {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.verify-rules article,
.round-explainer article {
  display: grid;
  gap: 0.45rem;
  padding: 0.95rem 1rem;
  border: 3px solid rgba(18, 18, 18, 0.14);
  background: rgba(127, 210, 255, 0.14);
}

.verify-rules strong,
.round-explainer strong {
  font-family: var(--display-font);
  font-size: 1.15rem;
  line-height: 0.98;
  text-transform: uppercase;
}

.verify-rules p,
.round-explainer p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.35;
  font-weight: 800;
}

.verify-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.verify-button {
  background: var(--violet);
  cursor: pointer;
}

.verify-button:disabled {
  cursor: progress;
  opacity: 0.8;
}

.verify-note {
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.auth-button {
  cursor: pointer;
}

.admin-status-card {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding: 1rem;
  border: 3px solid var(--ink);
  background: rgba(127, 210, 255, 0.08);
  color: var(--ink);
}

.admin-status-card strong,
.mint-meta strong {
  font-family: var(--display-font);
  font-size: 1.7rem;
  line-height: 0.98;
  text-transform: uppercase;
  color: var(--ink);
}

.mint-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1rem;
  border: 3px solid var(--ink);
  background: linear-gradient(180deg, #edf4ff 0%, var(--yellow) 100%);
}

.mint-meta strong {
  max-width: 100%;
  font-family: "Courier New", monospace;
  font-size: 1rem;
  line-height: 1.35;
  color: var(--ink);
}

.admin-modal-shell {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    visibility 180ms ease;
}

.admin-modal-shell.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.admin-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, 0.62);
  backdrop-filter: blur(10px);
}

.admin-modal {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  background:
    radial-gradient(circle at top left, rgba(127, 210, 255, 0.15), transparent 18rem),
    var(--paper);
  color: var(--ink);
}

.admin-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.admin-modal-head h3 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 0.94;
  text-transform: uppercase;
  color: var(--ink);
}

.admin-close {
  min-width: 3rem;
  min-height: 3rem;
  border: 3px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.admin-modal-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.25rem;
}

.admin-modal .eyebrow,
.admin-modal .mini-label,
.admin-modal .field-block,
.admin-modal .verify-note,
.admin-modal p,
.admin-modal span,
.admin-modal li,
.admin-modal label {
  color: var(--ink);
}

.admin-modal .field-block input::placeholder {
  color: rgba(8, 17, 31, 0.46);
}

.session-admin-panel {
  grid-column: 1 / -1;
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 3px solid var(--ink);
  background: rgba(127, 210, 255, 0.08);
  color: var(--ink);
}

.admin-session-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.admin-session-empty {
  padding: 1rem;
  border: 3px dashed rgba(18, 18, 18, 0.18);
  color: rgba(18, 18, 18, 0.72);
  font-weight: 800;
}

.admin-timer-status {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  padding: 1rem;
  border: 3px solid rgba(18, 18, 18, 0.14);
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
}

.admin-timer-status strong {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--display-font);
  font-size: 1.2rem;
  line-height: 0.96;
  text-transform: uppercase;
  color: var(--ink);
}

.admin-timer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.admin-session-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.admin-session-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.9rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border: 3px solid rgba(18, 18, 18, 0.14);
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
}

.admin-session-copy {
  display: grid;
  gap: 0.35rem;
}

.admin-session-copy strong {
  font-family: "Courier New", monospace;
  font-size: 0.95rem;
  color: var(--ink);
}

.admin-session-copy span {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--ink);
}

.admin-session-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
}

.admin-session-button {
  padding: 0.7rem 0.95rem;
  border: 3px solid var(--ink);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.admin-session-button.is-reset {
  background: var(--yellow);
}

.admin-session-button.is-reset-all {
  background: var(--lime);
}

.admin-session-button.is-delete {
  background: var(--orange);
  color: #fff;
}

.admin-session-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.logs-panel .eyebrow {
  background: var(--yellow);
}

.leaderboard-panel {
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr);
  align-content: start;
  gap: 1rem;
  position: sticky;
  top: 6.25rem;
  max-height: calc(100vh - 7.5rem);
  padding: 1.2rem;
  overflow: hidden;
}

.leaderboard-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  padding: 1rem;
  border: 3px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
}

.leaderboard-meta strong {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--display-font);
  font-size: 1.9rem;
  line-height: 0.92;
  text-transform: uppercase;
}

.leaderboard-empty {
  padding: 1rem;
  border: 3px dashed rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.leaderboard-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0 0.25rem 0 0;
  list-style: none;
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--yellow) rgba(255, 255, 255, 0.12);
}

.leaderboard-list::-webkit-scrollbar {
  width: 0.8rem;
}

.leaderboard-list::-webkit-scrollbar-track {
  border: 2px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.leaderboard-list::-webkit-scrollbar-thumb {
  border: 2px solid rgba(17, 23, 19, 0.2);
  background: linear-gradient(180deg, var(--yellow) 0%, #f4c937 100%);
}

.leaderboard-list::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #fff07a 0%, #f0b81a 100%);
}

.leaderboard-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.7rem;
  align-items: center;
  padding: 0.8rem 0.85rem;
  border: 3px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.leaderboard-rank {
  font-family: var(--display-font);
  font-size: 1.1rem;
  color: var(--yellow);
}

.leaderboard-wallet strong,
.leaderboard-score strong {
  display: block;
  font-family: var(--display-font);
  line-height: 0.94;
  text-transform: uppercase;
}

.leaderboard-wallet strong {
  font-size: 0.98rem;
}

.leaderboard-wallet span,
.leaderboard-score span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.leaderboard-score {
  text-align: right;
}

.leaderboard-score strong {
  font-size: 0.96rem;
  color: var(--lime);
}

.leaderboard-live-value {
  font-size: 1.2rem !important;
  color: var(--yellow) !important;
}

.leaderboard-total-value {
  margin-top: 0.45rem;
  font-size: 0.84rem !important;
  color: var(--lime) !important;
}

.dev-logs-wrap {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.4rem;
}

.section-head-compact {
  margin-bottom: 0;
}

.result-card {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
  padding: 1rem;
  border: 3px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
}

.result-card strong {
  font-family: var(--display-font);
  font-size: 2rem;
  line-height: 0.96;
  text-transform: uppercase;
}

.session-box {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.session-card {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border: 3px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
}

.session-card strong,
.session-stats strong {
  font-family: var(--display-font);
  line-height: 0.96;
  text-transform: uppercase;
}

.session-card strong {
  font-size: 1.7rem;
}

.session-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.session-click-button {
  position: relative;
  display: grid;
  place-items: start center;
  width: 12rem;
  height: 12.5rem;
  padding: 0.7rem 0.55rem 0.7rem;
  overflow: hidden;
  border-radius: 2rem;
  border: 3px solid rgba(127, 210, 255, 0.42);
  background:
    radial-gradient(circle at 50% 88%, rgba(255, 95, 31, 0.28) 0%, rgba(255, 95, 31, 0) 32%),
    linear-gradient(180deg, rgba(18, 33, 59, 0.96) 0%, rgba(8, 17, 31, 0.98) 100%);
  color: #f4f7ff;
  cursor: pointer;
  text-align: center;
  box-shadow:
    inset 0 -1rem 1.8rem rgba(255, 95, 31, 0.18),
    0 0 0 0.2rem rgba(255, 255, 255, 0.04);
}

.session-click-button::before {
  content: "";
  position: absolute;
  inset: 0.9rem 1.45rem 2.55rem;
  background-image: url("./rocket-tap.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter:
    drop-shadow(0 0 0.9rem rgba(255, 95, 31, 0.34))
    drop-shadow(0 0 1.6rem rgba(127, 210, 255, 0.24));
  animation: rocket-hover 1.7s ease-in-out infinite;
  pointer-events: none;
}

.session-click-button::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2.45rem;
  width: 4.6rem;
  height: 4rem;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 243, 214, 0.95) 0%, rgba(255, 205, 117, 0.9) 22%, rgba(255, 95, 31, 0.88) 56%, rgba(255, 95, 31, 0) 74%);
  clip-path: polygon(50% 0%, 100% 60%, 72% 100%, 28% 100%, 0% 60%);
  animation: thruster-burn 0.9s ease-in-out infinite;
  pointer-events: none;
}

.session-click-button span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 6.8rem;
  padding: 0.45rem 0.8rem;
  border: 3px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(8, 17, 31, 0.82);
  text-transform: uppercase;
  color: #f4f7ff;
  box-shadow: 0 0.35rem 0 rgba(255, 95, 31, 0.18);
}

.session-click-button span {
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.session-click-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.session-click-button:not(:disabled):active {
  transform: translate(3px, 3px);
}

@keyframes thruster-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.95;
  }

  50% {
    transform: scale(1.04);
    opacity: 0.55;
  }
}

@keyframes rocket-hover {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-0.32rem);
  }
}

@keyframes thruster-burn {
  0%,
  100% {
    opacity: 0.78;
    transform: translateX(-50%) scaleY(0.9);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scaleY(1.12);
  }
}

.session-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  padding: 1rem;
  border: 3px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.26);
}

.session-stats strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 1rem;
  font-family: "Courier New", monospace;
  overflow: hidden;
  text-overflow: ellipsis;
}

.result-pill {
  display: inline-flex;
  width: fit-content;
  padding: 0.35rem 0.55rem;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-pill.is-idle {
  background: rgba(255, 255, 255, 0.12);
}

.result-pill.is-success {
  background: var(--lime);
  color: var(--ink);
}

.result-pill.is-warn {
  background: #ffb347;
  color: var(--ink);
}

.result-pill.is-error {
  background: #ff6b6b;
  color: #fff;
}

.result-pill.is-pending {
  background: var(--yellow);
  color: var(--ink);
}

.log-console {
  display: grid;
  gap: 0.65rem;
  max-height: 22rem;
  overflow: auto;
  padding: 1rem;
  border: 3px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.32);
  font-family: "Courier New", monospace;
}

.log-row {
  display: grid;
  grid-template-columns: 5.25rem 1fr;
  gap: 0.85rem;
  align-items: start;
  font-size: 0.92rem;
  line-height: 1.35;
}

.log-time {
  color: var(--yellow);
  font-weight: 900;
}

.log-message {
  color: #f1f1f1;
}

.live-card {
  align-self: stretch;
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border: 4px solid rgba(127, 210, 255, 0.32);
  background: rgba(7, 16, 29, 0.72);
  backdrop-filter: blur(8px);
}

.mini-label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.live-card strong {
  font-size: 1.2rem;
  line-height: 1.2;
}

.code-rail {
  margin-top: 1.35rem;
  padding: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #ffd4bf;
  font-family: "Courier New", monospace;
  font-size: 0.95rem;
}

.section-head {
  margin-bottom: 1.5rem;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.flow-grid article {
  padding-right: 0.5rem;
}

.step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: #dddddf;
  font-family: var(--display-font);
  font-size: 1.15rem;
}

.flow-grid h4 {
  margin: 0 0 0.75rem;
  font-family: var(--display-font);
  font-size: 1.8rem;
  line-height: 0.96;
  text-transform: uppercase;
}

.statement-copy {
  max-width: 46rem;
}

.statement-mark {
  justify-self: end;
  font-family: var(--display-font);
  font-size: clamp(7rem, 20vw, 14rem);
  line-height: 0.8;
  color: #ffd4bf;
  text-shadow: 8px 8px 0 rgba(255, 95, 31, 0.28);
}

.rule-list {
  margin: 1.25rem 0 0;
  padding-left: 1.15rem;
  font-weight: 800;
  line-height: 1.5;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-list details {
  border-top: 3px solid var(--ink);
  padding-top: 1rem;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--display-font);
  font-size: 1.5rem;
  line-height: 1;
  text-transform: uppercase;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
}

.faq-list details[open] summary::after {
  content: "−";
}

.ticker {
  overflow: hidden;
  margin-top: 1.5rem;
  border-top: 4px solid rgba(127, 210, 255, 0.5);
  border-bottom: 4px solid rgba(127, 210, 255, 0.5);
  background: linear-gradient(90deg, #091220 0%, #12233f 50%, #091220 100%);
  color: #fff;
}

.ticker-track {
  display: inline-flex;
  gap: 2rem;
  min-width: max-content;
  padding: 1rem 0;
  font-family: var(--display-font);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  animation: ticker-slide 22s linear infinite;
}

.ticker-track span::before {
  content: "✦";
  margin-right: 0.75rem;
  color: #ffd4bf;
}

@keyframes ticker-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.panel,
.topbar,
.ticker {
  animation: rise-in 500ms ease-out both;
}

.hero-panel {
  animation-delay: 80ms;
}

.duo-grid .panel:nth-child(2),
.statement-panel,
.faq-panel {
  animation-delay: 120ms;
}

@media (max-width: 1080px) {
  .hero-grid,
  .duo-grid,
  .verify-grid,
  .admin-modal-grid,
  .statement-panel,
  .hero-panel,
  .flow-grid {
    grid-template-columns: 1fr;
  }

  .brand-lockup {
    margin-bottom: 3rem;
  }

  .statement-mark {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 0.75rem;
  }

  .brand-badge {
    min-width: 0;
  }

  .brand-mark-main {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .brand-mark-sub {
    font-size: 0.72rem;
    letter-spacing: 0.4em;
  }

  .topnav {
    grid-column: 1 / -1;
    flex-wrap: nowrap;
    gap: 0.45rem;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.15rem;
    scrollbar-width: none;
  }

  .topnav::-webkit-scrollbar {
    display: none;
  }

  .topnav a,
  .wallet-chip {
    padding: 0.45rem 0.7rem;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .top-mint-chip {
    grid-column: 1 / -1;
    min-width: 0;
    width: 100%;
    padding: 0.45rem 0.65rem;
  }

  .top-mint-chip strong {
    font-size: 0.8rem;
  }

  .admin-launch,
  .social-x {
    align-self: center;
  }

  .site-main {
    width: min(100% - 1rem, 1440px);
    margin-top: 1rem;
  }

  .panel {
    padding: 1.15rem;
    box-shadow: 6px 6px 0 var(--violet);
  }

  .hero-copy h2 {
    font-size: clamp(3rem, 19vw, 4.6rem);
  }

  .yellow-panel h3,
  .black-panel h3,
  .flow-panel h3,
  .statement-copy h3,
  .white-panel h3,
  .faq-panel h3 {
    font-size: clamp(1.8rem, 11vw, 2.6rem);
  }

  .faq-list summary {
    font-size: 1.25rem;
  }

  .ticker-track {
    font-size: 1rem;
  }

  .mint-meta {
    grid-template-columns: 1fr;
  }

  .admin-modal {
    padding: 1.15rem;
    box-shadow: 6px 6px 0 var(--violet);
  }

  .session-stats {
    grid-template-columns: 1fr;
  }

  .verify-rules,
  .round-explainer {
    grid-template-columns: 1fr;
  }

  .leaderboard-meta,
  .leaderboard-item,
  .admin-timer-status {
    grid-template-columns: 1fr;
  }

  .leaderboard-panel {
    position: static;
    top: auto;
    max-height: none;
  }

  .leaderboard-list {
    max-height: 20rem;
    overflow: auto;
  }

  .leaderboard-score {
    text-align: left;
  }
}
