:root {
  --bg: #050a14;
  --bg-2: #071225;
  --panel: rgba(8, 18, 36, 0.84);
  --panel-2: rgba(10, 30, 58, 0.84);
  --card: rgba(255,255,255,0.055);
  --card-2: rgba(255,255,255,0.088);
  --line: rgba(255,255,255,0.11);
  --line-strong: rgba(255,255,255,0.2);
  --text: #f4f8ff;
  --muted: #aebbd0;
  --soft: #7f8fa8;
  --gold: #ffd66f;
  --rush-blue: #0877ff;
  --rush-blue-2: #00c8ff;
  --deep-blue: #071e42;
  --mint: #00c8ff;
  --red: #ff6b8b;
  --orange: #ffb86b;
  --green: #68f0a8;
  --shadow: 0 22px 70px rgba(0,0,0,.42);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --topbar: 72px;
  --sidebar: 252px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 10% -10%, rgba(8, 119, 255, 0.28), transparent 34rem),
    radial-gradient(circle at 86% 8%, rgba(0, 200, 255, 0.13), transparent 28rem),
    radial-gradient(circle at 50% 100%, rgba(255, 226, 160, 0.08), transparent 38rem),
    linear-gradient(135deg, #050914 0%, #071225 48%, #030711 100%);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0,200,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,214,111,.018) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
button:disabled { cursor: not-allowed; opacity: .62; }

.noscript {
  margin: 20px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel);
}
.container { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--topbar);
  backdrop-filter: blur(20px);
  background: rgba(9, 8, 14, .78);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  width: min(1220px, calc(100% - 28px));
  margin: 0 auto;
  min-height: var(--topbar);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: -.02em; }
.brand-mark {
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 15px;
  background: #071225;
  border: 1px solid rgba(0,200,255,.38);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 143, 255,.28), 0 0 0 1px rgba(255,214,111,.16);
}
.brand small { display: block; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand strong { background: linear-gradient(135deg, #fff2bd, var(--gold) 45%, var(--rush-blue-2)); -webkit-background-clip: text; color: transparent; }
.hero-logo-lockup { display:flex; align-items:center; gap:14px; margin-bottom:18px; }
.hero-logo-lockup img { width:72px; height:72px; border-radius:22px; box-shadow:0 18px 46px rgba(0, 143, 255,.25), 0 0 0 1px rgba(255,214,111,.2); }
.hero-logo-lockup span { display:block; color:var(--muted); font-weight:800; font-size:13px; letter-spacing:.08em; text-transform:uppercase; }
.hero-logo-lockup strong { display:block; font-size:24px; letter-spacing:-.04em; }

.top-nav { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.top-nav a, .top-nav button {
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  padding: 9px 12px;
  border-radius: 999px;
}
.top-nav a:hover, .top-nav button:hover, .top-nav .active { color: var(--text); background: rgba(255,255,255,.07); border-color: var(--line); }
.top-nav .cta { color: #111018; font-weight: 900; background: linear-gradient(135deg, var(--gold), var(--rush-blue-2)); border-color: transparent; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; border-radius: 999px; padding: 12px 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight: 850;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}
.btn:hover { transform: translateY(-1px); border-color: var(--line-strong); background: rgba(255,255,255,.095); }
.btn-primary { border: 0; color: #100f16; background: linear-gradient(135deg, var(--gold), var(--rush-blue-2)); box-shadow: 0 14px 36px rgba(8,119,255,.25); }
.btn-secondary { background: rgba(255,255,255,.075); }
.btn-danger { border-color: rgba(255,107,139,.4); color: #ffd5df; background: rgba(255,107,139,.11); }
.btn-small { min-height: 34px; padding: 7px 11px; font-size: 13px; }

.hero { padding: 58px 0 28px; display: grid; grid-template-columns: 1.08fr .92fr; gap: 28px; align-items: stretch; }
.compact-hero { min-height: calc(100vh - 260px); align-items: center; }
.eyebrow { margin: 0 0 10px; text-transform: uppercase; letter-spacing: .16em; color: var(--gold); font-size: 12px; font-weight: 900; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(44px, 8vw, 88px); line-height: .9; letter-spacing: -.065em; margin-bottom: 18px; }
h2 { font-size: clamp(24px, 3vw, 38px); letter-spacing: -.04em; margin-bottom: 10px; }
h3 { letter-spacing: -.02em; margin-bottom: 8px; }
p { color: var(--muted); line-height: 1.65; }
.gradient-text { background: linear-gradient(135deg, #fff7d8, var(--gold) 32%, var(--rush-blue-2) 82%); -webkit-background-clip: text; color: transparent; }
.hero-copy p:not(.eyebrow) { font-size: 18px; max-width: 680px; }
.hero-actions, .row-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.hero-card, .panel, .feature-card, .stat-card, .auth-card, .notice-card, .mini-card, .legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.04));
  box-shadow: var(--shadow);
}
.hero-card { padding: 24px; position: relative; overflow: hidden; }
.hero-card::before, .panel::before {
  content:""; position:absolute; inset:-1px; pointer-events:none; border-radius:inherit;
  background: radial-gradient(circle at 18% 0, rgba(255,226,160,.20), transparent 40%), radial-gradient(circle at 100% 20%, rgba(8,119,255,.18), transparent 42%);
  opacity:.86;
}
.hero-card > *, .panel > * { position: relative; z-index: 1; }
.vault-stat { padding: 18px; border-radius: var(--radius-lg); background: rgba(0,0,0,.22); border: 1px solid var(--line); }
.stat-label { display:block; color: var(--muted); font-size: 13px; font-weight: 750; }
.stat-value { display:block; font-size: clamp(34px, 5vw, 56px); font-weight: 950; letter-spacing: -.055em; margin: 6px 0; }
.stat-note { display:block; color: var(--muted); line-height: 1.5; }
.mini-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 14px; }
.mini-card { padding: 16px; border-radius: var(--radius-lg); background: rgba(255,255,255,.055); box-shadow: none; }
.mini-card strong { display:block; font-size: 30px; letter-spacing: -.04em; }
.mini-card span { color: var(--muted); font-size: 13px; }
.section { padding: 32px 0; }
.tight-section { padding-top: 20px; }
.section-head { display:flex; align-items:end; justify-content:space-between; gap: 20px; margin-bottom: 16px; }
.section-head p { max-width: 520px; margin-bottom: 0; }
.card-grid { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.feature-card { padding: 19px; border-radius: var(--radius-lg); box-shadow: none; }
.feature-card .icon { width: 40px; height: 40px; border-radius: 15px; display:grid; place-items:center; background: rgba(255,226,160,.12); border:1px solid rgba(255,226,160,.18); margin-bottom: 14px; }
.feature-card p { margin-bottom: 0; }
.notice-card { padding: 16px; border-radius: var(--radius-lg); box-shadow: none; display: grid; gap: 4px; }
.notice-card strong { display:block; }
.notice-card span { color: var(--muted); line-height: 1.5; }
.notice-card.warning { background: rgba(255,184,107,.09); border-color: rgba(255,184,107,.28); }
.notice-card.good { background: rgba(104,240,168,.08); border-color: rgba(104,240,168,.22); }
.notice-card.danger { background: rgba(255,107,139,.08); border-color: rgba(255,107,139,.24); }
.footer { padding: 30px 0 42px; color: var(--soft); }
.footer-inner { border-top: 1px solid var(--line); padding-top: 18px; display:flex; justify-content:space-between; gap: 12px; flex-wrap:wrap; }
.footer a { margin-left: 14px; color: var(--muted); }

.auth-wrap { min-height: calc(100vh - var(--topbar)); display:grid; place-items:center; padding: 28px; }
.auth-card { width: min(470px, 100%); padding: 28px; }
.form-grid { display:grid; gap: 14px; }
.form-field { display:grid; gap: 8px; }
.form-field label { color: var(--muted); font-size: 13px; font-weight: 800; }
.form-field input, .form-field select, .form-field textarea {
  width:100%; border:1px solid var(--line); background:rgba(0,0,0,.24); border-radius: 15px; padding: 12px 14px; outline:none;
}
.form-field textarea { min-height: 110px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: rgba(8,119,255,.68); box-shadow: 0 0 0 3px rgba(8,119,255,.13); }

.app-layout { width: min(1320px, calc(100% - 28px)); margin: 22px auto 92px; display:grid; grid-template-columns: var(--sidebar) minmax(0,1fr); gap: 18px; align-items:start; }
.sidebar { position: sticky; top: calc(var(--topbar) + 18px); border:1px solid var(--line); border-radius: var(--radius-xl); background: rgba(14,13,21,.74); box-shadow: var(--shadow); padding: 14px; }
.sidebar-nav { display:grid; gap: 7px; }
.sidebar-nav a { padding: 12px 12px; border-radius: 16px; color: var(--muted); border:1px solid transparent; }
.sidebar-nav a.active, .sidebar-nav a:hover { color: var(--text); background: rgba(255,255,255,.075); border-color: var(--line); }
.sidebar-footer { margin-top: 14px; padding: 12px; border-radius: 16px; color: var(--soft); font-size: 12px; line-height: 1.5; background: rgba(255,255,255,.04); border:1px solid var(--line); }
.main-pane { min-width: 0; }
.page-title { margin-bottom: 16px; }
.page-title h1 { font-size: clamp(34px, 5vw, 62px); margin-bottom: 10px; }
.page-title p { max-width: 760px; }
.stat-grid { display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; margin-bottom: 14px; }
.stat-card { padding: 17px; border-radius: var(--radius-lg); box-shadow: none; min-height: 128px; display:flex; flex-direction:column; justify-content:space-between; }
.stat-card label { color: var(--muted); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.stat-card strong { font-size: clamp(24px, 3vw, 38px); letter-spacing: -.05em; }
.stat-card span { color: var(--soft); font-size: 13px; }
.stat-card.gold-border { border-color: rgba(255,226,160,.35); background: linear-gradient(180deg, rgba(255,226,160,.11), rgba(255,255,255,.045)); }
.two-col { display:grid; grid-template-columns: 1.1fr .9fr; gap: 14px; margin-bottom: 14px; }
.three-col { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; margin-bottom: 14px; }
.panel { padding: 18px; border-radius: var(--radius-xl); position:relative; overflow:hidden; box-shadow: none; }
.panel h2, .panel h3 { margin-bottom: 8px; }
.panel p:last-child { margin-bottom:0; }
.action-panel { min-height: 310px; }

.progress-wrap { display:grid; gap: 8px; margin: 12px 0; }
.progress-top { display:flex; justify-content:space-between; gap: 10px; font-size: 13px; color: var(--muted); }
.progress { height: 10px; border-radius: 999px; overflow:hidden; background: rgba(255,255,255,.075); border: 1px solid rgba(255,255,255,.075); }
.progress span { display:block; width: var(--value); height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--gold), var(--rush-blue), var(--rush-blue-2)); box-shadow: 0 0 20px rgba(8,119,255,.45); }
.checklist { display:grid; gap: 10px; margin: 14px 0; }
.check-item { display:flex; align-items:center; justify-content:space-between; gap:12px; padding: 12px; border:1px solid var(--line); border-radius: 16px; background: rgba(0,0,0,.18); }
.check-item b { display:flex; align-items:center; gap: 9px; }
.check-dot { width: 22px; height: 22px; border-radius:999px; border:1px solid var(--line-strong); display:grid; place-items:center; color: var(--soft); font-size: 12px; }
.check-item.done .check-dot { background: rgba(104,240,168,.18); color: var(--green); border-color: rgba(104,240,168,.38); }
.badge { display:inline-flex; align-items:center; gap:6px; padding: 5px 9px; border-radius: 999px; border:1px solid var(--line); background: rgba(255,255,255,.06); color: var(--muted); font-size: 12px; font-weight: 850; }
.badge.gold { color: var(--gold); border-color: rgba(255,226,160,.32); background: rgba(255,226,160,.08); }
.badge.good { color: var(--green); border-color: rgba(104,240,168,.28); background: rgba(104,240,168,.08); }
.badge.warn { color: var(--orange); border-color: rgba(255,184,107,.28); background: rgba(255,184,107,.08); }
.badge.danger { color: var(--red); border-color: rgba(255,107,139,.28); background: rgba(255,107,139,.08); }

.tabbar { display:flex; gap: 8px; flex-wrap:wrap; margin-bottom: 14px; }
.tabbar a, .tabbar button { border:1px solid var(--line); background: rgba(255,255,255,.055); color: var(--muted); border-radius: 999px; padding: 10px 13px; font-weight: 850; }
.tabbar a.active, .tabbar button.active { color: #100f16; background: linear-gradient(135deg, var(--gold), var(--rush-blue-2)); border-color: transparent; }
.provider-slot, .partner-slot { display:flex; align-items:center; justify-content:space-between; gap:12px; padding: 14px; border:1px solid var(--line); border-radius: 18px; background:rgba(0,0,0,.18); margin-top: 10px; }
.provider-slot div, .partner-slot div { min-width:0; }
.provider-slot h4, .partner-slot h4 { margin: 0 0 3px; }
.provider-slot p, .partner-slot p { margin:0; font-size: 13px; }
.table-wrap { overflow:auto; border:1px solid var(--line); border-radius: 18px; background: rgba(0,0,0,.14); }
table { width:100%; border-collapse: collapse; min-width: 720px; }
th, td { text-align:left; padding: 13px 12px; border-bottom:1px solid var(--line); color: var(--muted); }
th { color: var(--text); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
tr:last-child td { border-bottom:0; }
.empty-state { padding: 22px; border:1px dashed var(--line-strong); border-radius: 20px; background: rgba(255,255,255,.035); display:grid; gap: 7px; }
.empty-state strong { font-size: 18px; }
.empty-state span { color: var(--muted); line-height:1.55; }

.chest-visual { min-height: 210px; display:grid; place-items:center; position:relative; }
.chest-orb { width: 154px; height: 154px; border-radius: 44px; display:grid; place-items:center; font-size: 74px; color: #111018; background: linear-gradient(135deg, var(--gold), var(--rush-blue) 58%, var(--rush-blue-2)); box-shadow: 0 22px 72px rgba(8,119,255,.34), inset 0 0 28px rgba(255,255,255,.26); transform: rotate(45deg); }
.chest-orb span { transform: rotate(-45deg); }
.milestone-list { display:grid; gap: 10px; }
.milestone { display:flex; gap: 12px; align-items:flex-start; padding: 13px; border:1px solid var(--line); border-radius: 18px; background: rgba(0,0,0,.16); }
.milestone-num { flex:0 0 auto; width: 30px; height: 30px; border-radius: 999px; display:grid; place-items:center; background: rgba(255,226,160,.1); border:1px solid rgba(255,226,160,.22); color: var(--gold); font-weight: 900; }
.milestone h4 { margin: 0 0 4px; }
.milestone p { margin: 0; font-size: 13px; }

.mobile-bottom-nav { display:none; position:fixed; left: 12px; right: 12px; bottom: 12px; z-index:60; padding: 8px; border:1px solid var(--line); border-radius: 26px; background: rgba(10,9,15,.88); backdrop-filter: blur(18px); box-shadow: var(--shadow); grid-template-columns: repeat(6, minmax(0,1fr)); gap: 4px; }
.mobile-bottom-nav a { min-height: 50px; border-radius: 19px; display:grid; place-items:center; gap: 0; color: var(--muted); font-size: 11px; font-weight: 850; }
.mobile-bottom-nav a span { display:block; font-size: 17px; }
.mobile-bottom-nav a.active { color: var(--text); background: rgba(255,255,255,.075); }


.mission-hero { min-height: 360px; }
.mission-badge { width: min(260px, 74vw); aspect-ratio: 1; margin: 20px auto; border-radius: 32px; position: relative; display:grid; place-items:center; background: linear-gradient(135deg, rgba(255,226,160,.22), rgba(8,119,255,.22), rgba(104,240,168,.16)); box-shadow: 0 24px 70px rgba(8,119,255,.25), inset 0 0 0 12px rgba(15,13,21,.72), inset 0 0 30px rgba(255,255,255,.22); }
.mission-badge::before { content:""; position:absolute; inset: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.35); background: rgba(9,8,14,.56); }
.mission-badge span { position: relative; z-index: 2; font-size: 64px; color: var(--gold); text-shadow: 0 0 30px rgba(255,226,160,.5); }
.mission-badge i { position:absolute; top:-6px; width: 0; height: 0; border-left: 18px solid transparent; border-right: 18px solid transparent; border-top: 34px solid var(--gold); filter: drop-shadow(0 6px 14px rgba(0,0,0,.38)); }
.mission-card .row-actions { margin-top: 12px; justify-content:flex-start; }
.mission-grid .feature-card { min-height: 190px; }

.legal-wrap { padding: 28px 0 50px; }
.legal-card { padding: 24px; max-width: 900px; margin: 0 auto; }
.legal-card h1 { font-size: clamp(34px, 5vw, 58px); }
.legal-card h2 { font-size: 24px; margin-top: 24px; }
.legal-card li { color: var(--muted); line-height: 1.65; margin: 8px 0; }
.code-pill { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; padding: 3px 7px; border-radius: 8px; background: rgba(255,255,255,.075); border:1px solid var(--line); color: var(--gold); }
.toast-wrap { position:fixed; right: 16px; bottom: 16px; display:grid; gap:10px; z-index:99; width:min(420px, calc(100% - 32px)); }
.toast { padding: 13px 14px; border-radius: 16px; border:1px solid var(--line); background: rgba(20,18,30,.94); box-shadow: var(--shadow); color: var(--text); }

@media (max-width: 980px) {
  .hero, .two-col, .three-col { grid-template-columns: 1fr; }
  .card-grid, .stat-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .app-layout { grid-template-columns: 1fr; width: min(100% - 22px, 760px); margin-bottom: 104px; }
  .sidebar { display:none; }
  .mobile-bottom-nav { display:grid; }
  .top-nav a:not(.cta), .top-nav button { display:none; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 22px, 100%); }
  .topbar-inner { width: min(100% - 18px, 100%); }
  .hero { padding-top: 32px; }
  h1 { font-size: clamp(42px, 16vw, 66px); }
  .card-grid, .stat-grid, .mini-grid { grid-template-columns: 1fr; }
  .section-head { display:block; }
  .panel, .auth-card, .hero-card, .legal-card { border-radius: 22px; padding: 16px; }
  .provider-slot, .partner-slot { align-items:flex-start; flex-direction:column; }
  .footer-inner { display:grid; }
  .footer a { margin: 0 14px 0 0; }
}

/* v1.1 flow and mission polish */
.route-panel { position: relative; overflow: hidden; }
.route-panel::after { content:""; position:absolute; inset:auto -80px -120px auto; width:220px; height:220px; border-radius:50%; background: radial-gradient(circle, rgba(217,199,163,.16), transparent 64%); pointer-events:none; }
.route-grid { display:grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap:12px; margin-top:16px; }
.route-step { display:flex; flex-direction:column; gap:7px; padding:15px; min-height:148px; border:1px solid var(--line); border-radius:22px; background:linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,214,111,.018)); text-decoration:none; color:var(--text); box-shadow:0 18px 50px rgba(0,0,0,.18); transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.route-step:hover { transform: translateY(-2px); border-color:rgba(217,199,163,.55); background:linear-gradient(180deg, rgba(217,199,163,.12), rgba(255,214,111,.018)); }
.route-num { width:30px; height:30px; display:grid; place-items:center; border-radius:999px; background:rgba(217,199,163,.14); color:var(--gold); border:1px solid rgba(217,199,163,.35); font-weight:900; }
.route-step strong { font-size:16px; }
.route-step em { font-style:normal; color:var(--gold); font-size:13px; font-weight:800; }
.route-step small { color:var(--muted); line-height:1.45; }
.prize-grid { display:grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap:12px; margin-top:14px; }
.prize-tile { border:1px solid var(--line); border-radius:20px; padding:16px; background:rgba(0,0,0,.18); display:flex; flex-direction:column; gap:6px; }
.prize-tile strong { font-size:14px; color:var(--muted); }
.prize-tile span { font-size:28px; color:var(--gold); font-weight:900; }
.prize-tile small { color:var(--muted); line-height:1.35; }
.mission-hero { background: radial-gradient(circle at top right, rgba(217,199,163,.16), transparent 34%), linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,214,111,.018)); }
@media (max-width: 860px) { .route-grid, .prize-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .route-grid, .prize-grid { grid-template-columns: 1fr; } .route-step { min-height:auto; } }

/* v1.2 product contract polish */
.sponsor-slot {
  display:grid;
  gap: 7px;
  padding: 16px 18px;
  border:1px solid rgba(217,199,163,.22);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(217,199,163,.09), rgba(8,119,255,.06));
  box-shadow: 0 18px 55px rgba(0,0,0,.18);
}
.sponsor-slot span {
  width:max-content;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  border:1px solid var(--line);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 10px;
  font-weight: 900;
}
.sponsor-slot strong { color: var(--text); font-size: 18px; }
.sponsor-slot p { margin:0; color: var(--muted); line-height:1.45; }

.form-note{margin:0;color:var(--muted);font-size:.88rem;}

.owner-details { border:1px solid var(--line); border-radius: 16px; padding: 10px 12px; background: rgba(255,255,255,.035); }
.owner-details summary { cursor:pointer; color: var(--muted); font-weight: 850; }
.owner-details[open] { background: rgba(0, 200, 255, .045); border-color: rgba(0, 200, 255, .22); }
.owner-details .form-field { margin-top: 10px; }
.compact-stats { grid-template-columns: repeat(2, minmax(0,1fr)); margin-bottom: 0; }
.drop-card { min-height: 250px; }
.single-col-grid { grid-template-columns: 1fr; }


.app-icon-glow { width: min(360px, 100%); aspect-ratio: 1 / 1; border-radius: 34px; margin: 0 auto 18px; background: center / cover no-repeat url('../img/prizerush-icon-512.png'); box-shadow: 0 30px 90px rgba(0, 143, 255, .26), 0 0 0 1px rgba(255,214,111,.18); }
.rush-panel { position: relative; overflow:hidden; }
.rush-panel::after { content:""; position:absolute; inset:auto -20% -45% -20%; height:140px; background:radial-gradient(circle at 50% 0, rgba(0,200,255,.18), transparent 65%); pointer-events:none; }

/* v1.10.3 Rush Ticket economy polish + Worker URL readiness */
.rush-strip {
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:10px;
  margin:14px 0;
}
.rush-strip > div {
  border:1px solid rgba(217,199,163,.22);
  border-radius:18px;
  padding:12px;
  background:linear-gradient(135deg, rgba(217,199,163,.085), rgba(0,143,255,.065));
  box-shadow:0 18px 45px rgba(0,0,0,.16);
}
.rush-strip strong {
  display:block;
  color:var(--gold);
  font-weight:950;
  letter-spacing:-.01em;
}
.rush-strip span {
  display:block;
  margin-top:4px;
  color:var(--muted);
  font-size:12px;
  line-height:1.35;
}
@media (max-width: 640px) {
  .rush-strip { grid-template-columns: 1fr; }
}
