/* DAWPOT — clean lotto UI */

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

:root {
  --bg: #090b09;
  --surface: #121512;
  --surface-2: #181c18;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f5f5f5;
  --muted: #888;
  --green: #00c805;
  --green-dim: rgba(0, 200, 5, 0.12);
  --gold: #e8b923;
  --gold-dim: rgba(232, 185, 35, 0.12);
  --max: 1040px;
  --ring: 327;
  --radius: 14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, sans-serif;
  background:
    radial-gradient(ellipse 60% 32% at 50% -12%, rgba(0, 200, 5, 0.16), transparent 75%),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
.hidden { display: none !important; }

.text-green { color: var(--green); }
.text-gold { color: var(--gold); }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.brand-logo {
  width: 132px;
  height: 42px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(125, 255, 20, 0.35));
}

.nav {
  display: none;
  gap: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
}

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

.header-actions { display: flex; gap: 0.5rem; align-items: center; }

@media (min-width: 768px) {
  .nav { display: flex; }
  .header-actions .btn-outline { display: inline-flex; }
}

@media (max-width: 767px) {
  .header-actions .btn-outline { display: none; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 9px;
  transition: transform 0.15s, background 0.15s, border-color 0.15s, opacity 0.15s;
}

.btn-primary {
  background: var(--green);
  color: #000;
  box-shadow: 0 8px 24px rgba(0, 200, 5, 0.18);
}

.btn:hover { transform: translateY(-1px); }
.btn-primary:hover { filter: brightness(1.08); }

.btn-outline {
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-outline:hover { border-color: rgba(255, 255, 255, 0.2); background: var(--surface); }

.btn-lg {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
}

/* Main */
main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem 1.25rem 4rem;
}

/* Status */
.announcement {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 0.875rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(0, 200, 5, 0.18);
  border-radius: 10px;
  background: rgba(0, 200, 5, 0.06);
  color: #b8c8b8;
  font-size: 0.75rem;
}

.announcement p { flex: 1; }
.announcement strong { color: #fff; font-weight: 600; }
.announcement a { color: var(--green); font-weight: 600; white-space: nowrap; }
.announcement-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(0,200,5,.13); }

/* Hero */
.hero {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 820px) {
  .hero {
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    align-items: start;
  }
}

.hero-main {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(24, 35, 24, 0.96), var(--surface) 55%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.hero-art {
  position: absolute;
  z-index: 0;
  right: -9rem;
  top: 50%;
  width: min(65%, 480px);
  transform: translateY(-46%) rotate(5deg);
  opacity: 0.25;
  filter: drop-shadow(0 0 35px rgba(0, 200, 5, 0.2));
  pointer-events: none;
}

.hero-main > :not(.hero-art) { position: relative; z-index: 1; }

.hero-main::after {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  right: -150px;
  bottom: -180px;
  border: 1px solid rgba(0, 200, 5, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 36px rgba(0, 200, 5, 0.025), 0 0 0 72px rgba(0, 200, 5, 0.018);
  pointer-events: none;
}

.hero-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--green);
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 2s ease infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.meta { font-size: 0.8125rem; color: var(--muted); }

.hero h1 {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin-bottom: 0.85rem;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.hero h1 em { color: var(--green); font-style: normal; }

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 540px;
  margin-bottom: 1.25rem;
  color: #a2ada2;
  font-size: 0.95rem;
  line-height: 1.65;
}

.hero-rules {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.hero-rules span {
  display: inline-flex;
  gap: 0.38rem;
  align-items: center;
  padding: 0.38rem 0.55rem;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.72rem;
  color: #c7cec7;
}

.hero-rules b { color: var(--green); font-family: "DM Mono", monospace; font-size: 0.65rem; }

.label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.jackpot {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  margin-bottom: 0.25rem;
}

.jackpot-currency {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gold);
}

.jackpot-value {
  font-size: clamp(3.25rem, 8vw, 5.3rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  font-variant-numeric: tabular-nums;
  transition: transform 0.25s ease;
}

.jackpot-value.tick { transform: scale(1.02); }

.jackpot-sub {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

/* Balls */
.balls-wrap { position: relative; z-index: 1; padding-top: 1.5rem; border-top: 1px solid var(--border); }

.balls-heading { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.balls-heading span { color: var(--green); font-family: "DM Mono", monospace; font-size: 0.65rem; }

.balls-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.875rem;
}

.balls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.ball {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #fff;
  background: radial-gradient(circle at 35% 30%, #4de868, var(--green) 55%, #008a04);
  box-shadow: inset 0 -2px 4px rgba(0, 0, 0, 0.25), 0 5px 14px rgba(0, 200, 5, 0.18);
  animation: ballIn 0.35s ease backwards;
}

.ball:nth-child(1) { animation-delay: 0ms; }
.ball:nth-child(2) { animation-delay: 40ms; }
.ball:nth-child(3) { animation-delay: 80ms; }
.ball:nth-child(4) { animation-delay: 120ms; }
.ball:nth-child(5) { animation-delay: 160ms; }

@keyframes ballIn {
  from { transform: scale(0.6); opacity: 0; }
}

.ball--bonus {
  background: radial-gradient(circle at 35% 30%, #fff0a0, var(--gold) 55%, #a07800);
  color: #1a1400;
  width: 56px;
  height: 56px;
}

.balls.shuffling .ball { animation: ballShuffle 0.4s ease; }

@keyframes ballShuffle {
  50% { transform: translateY(-6px) scale(0.95); opacity: 0.7; }
}

/* Hero side */
.hero-side {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.timer-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.45rem;
  text-align: center;
}

.timer-card.urgent { border-color: rgba(232, 185, 35, 0.35); }

.timer-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.timer-ring-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 0.5rem;
}

.timer-ring {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ring-bg { fill: none; stroke: rgba(255, 255, 255, 0.06); stroke-width: 4; }

.ring-fill {
  fill: none;
  stroke: var(--green);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: var(--ring);
  stroke-dashoffset: var(--ring);
  transition: stroke-dashoffset 0.9s linear;
}

.timer-card.urgent .ring-fill { stroke: var(--gold); }
.timer-card.urgent .timer-value { color: var(--gold); }

.timer-value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.timer-status {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 0.5rem;
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  display: block;
  font-size: 0.6875rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 0.15rem;
}

.stat-highlight { background: var(--gold-dim); border-color: rgba(232, 185, 35, 0.2); }
.stat-highlight .stat-value { color: var(--gold); }

.hero-actions { display: flex; flex-direction: column; gap: 0.5rem; }
.entry-note { padding: 0 0.25rem; color: var(--muted); font-size: 0.7rem; line-height: 1.45; text-align: center; }

/* Metrics */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.metric {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 0.875rem;
  text-align: center;
}

.metric span {
  display: block;
  font-size: 0.6875rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

.metric strong {
  font-size: 1.0625rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 540px) {
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr; }
}

/* Grid */
.grid-2 {
  display: grid;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 720px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
}

.card h2 { font-size: 1.08rem; font-weight: 700; letter-spacing: -0.025em; margin-bottom: 0.5rem; }

.eyebrow {
  margin-bottom: 0.45rem;
  color: var(--green);
  font-family: "DM Mono", monospace;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.card > p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.progress {
  height: 6px;
  background: var(--surface-2);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #008a04, var(--green));
  border-radius: 999px;
  transition: width 0.8s ease;
}

.progress-caption {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.tags span {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  background: var(--green-dim);
  color: var(--green);
}

/* Feed */
.feed {
  list-style: none;
  max-height: 240px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.feed li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.75rem;
  background: var(--surface-2);
  border-radius: 8px;
  font-size: 0.8125rem;
}

.feed-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 700;
  flex-shrink: 0;
}

.feed-icon.buy { background: var(--green-dim); color: var(--green); }
.feed-icon.sell { background: rgba(255, 100, 50, 0.12); color: #ff7a50; }

.feed-body { flex: 1; text-align: left; }
.feed-time { font-size: 0.6875rem; color: var(--muted); }
.feed-empty { justify-content: center; color: var(--muted); background: transparent; }

/* Sections */
.section { margin-bottom: 2.5rem; }

.section h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  margin-bottom: 1rem;
}

.section-heading { max-width: 520px; margin-bottom: 1.1rem; }
.section-heading h2 { margin-bottom: 0; }

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
}

@media (min-width: 640px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
}

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  text-align: left;
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--green);
  font-family: "DM Mono", monospace;
  font-size: 0.68rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step h3 { font-size: 0.92rem; font-weight: 700; margin-bottom: 0.3rem; }
.step p { font-size: 0.78rem; color: var(--muted); line-height: 1.55; }
.step code, details code { color: var(--green); font-family: "DM Mono", monospace; font-size: 0.74rem; }

.proof-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  align-items: center;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(232, 185, 35, 0.25);
  border-radius: var(--radius);
  background: linear-gradient(110deg, rgba(232,185,35,.08), rgba(0,200,5,.04));
}

.proof-card > div, .proof-link { position: relative; z-index: 1; }
.proof-logo {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: 12%;
  width: 310px;
  transform: translateY(-50%) rotate(-12deg);
  opacity: 0.1;
  pointer-events: none;
}

.proof-card h2 { margin-bottom: 0.5rem; font-size: 1.25rem; letter-spacing: -0.035em; }
.proof-card p:not(.eyebrow) { max-width: 570px; color: #a7afa7; font-size: .86rem; line-height: 1.6; }
.proof-link { display: grid; gap: .35rem; padding: 1rem; background: rgba(0,0,0,.25); border: 1px solid rgba(255,255,255,.09); border-radius: 9px; }
.proof-link span { color: var(--muted); font-size: .7rem; }
.proof-link code { color: #fff; font-family: "DM Mono", monospace; font-size: .82rem; }
.proof-link b { color: var(--green); font-size: .75rem; margin-top: .25rem; }

@media (min-width: 720px) {
  .proof-card { grid-template-columns: 1.4fr .9fr; padding: 1.75rem; }
}

.table-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }

th {
  text-align: left;
  padding: 0.75rem 1rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  background: var(--surface-2);
}

td { padding: 0.75rem 1rem; border-top: 1px solid var(--border); }
.empty td { text-align: center; color: var(--muted); padding: 2rem; }
.winner-wallet { color: var(--green); font-family: "DM Mono", monospace; font-size: 0.78rem; }
.winner-prize { color: var(--gold); font-weight: 700; white-space: nowrap; }

.section details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 0.5rem;
}

.section summary {
  padding: 0.875rem 1rem;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  list-style: none;
}

.section summary::after { content: "+"; float: right; color: var(--green); font-family: "DM Mono", monospace; }
.section details[open] summary::after { content: "–"; }

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

.section details p {
  padding: 0 1rem 0.875rem;
  font-size: 0.875rem;
  color: var(--muted);
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem 1.25rem;
  border-top: 1px solid var(--border);
  max-width: var(--max);
  margin: 0 auto;
}

.footer-logo {
  width: 210px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 0 18px rgba(0, 200, 5, 0.3));
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.footer-links a:hover { color: var(--text); }
.footer p { font-size: 0.75rem; color: #555; }

@media (max-width: 540px) {
  .announcement { align-items: flex-start; flex-wrap: wrap; }
  .announcement a { width: 100%; margin-left: 13px; }
  .hero-main { padding: 1.35rem; }
  .hero-rules { gap: .35rem; }
  .hero-rules span { font-size: .66rem; }
  .balls-heading span { display: none; }
  .brand-logo { width: 112px; height: 36px; }
  .hero-art { right: -7rem; width: 84%; opacity: .13; }
  .proof-logo { right: -5rem; width: 250px; opacity: .09; }
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.modal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  max-width: 360px;
  width: 100%;
}

.modal-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.modal-sub {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 1.25rem;
}

.modal-card .balls { justify-content: center; }

/* Winner receipt */
.winner-modal {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(1, 4, 1, 0.82);
  backdrop-filter: blur(10px);
}

.winner-modal-card {
  position: relative;
  width: min(100%, 390px);
  overflow: hidden;
  padding: 2.25rem 1.5rem 1.5rem;
  border: 1px solid rgba(232, 185, 35, 0.38);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% -15%, rgba(232, 185, 35, 0.28), transparent 42%),
    linear-gradient(145deg, #1c2118, #101310 70%);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.65);
  text-align: center;
}

.winner-modal-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  pointer-events: none;
}

.winner-modal-close {
  position: absolute;
  z-index: 1;
  top: 0.75rem;
  right: 0.9rem;
  color: var(--muted);
  font-size: 1.5rem;
  line-height: 1;
}

.winner-kicker {
  position: relative;
  z-index: 1;
  color: var(--green);
  font-family: "DM Mono", monospace;
  font-size: 0.67rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.winner-burst {
  position: relative;
  z-index: 1;
  display: grid;
  width: 72px;
  height: 72px;
  margin: 1rem auto;
  place-items: center;
  border: 1px solid rgba(232, 185, 35, 0.5);
  border-radius: 50%;
  color: #1d1600;
  background: radial-gradient(circle at 35% 28%, #fff7bc, var(--gold) 65%, #a47904);
  box-shadow: 0 0 32px rgba(232, 185, 35, 0.4);
  font-size: 1.9rem;
}

.winner-modal h2 { position: relative; z-index: 1; font-size: 1.8rem; letter-spacing: -0.055em; }
.winner-wallet-label, .winner-prize-label { position: relative; z-index: 1; color: var(--muted); font-size: 0.7rem; margin-top: 1.15rem; text-transform: uppercase; letter-spacing: 0.07em; }
.winner-modal-wallet { position: relative; z-index: 1; margin-top: 0.2rem; color: var(--green); font: 500 1rem "DM Mono", monospace; }
.winner-modal-prize { position: relative; z-index: 1; margin-top: 0.1rem; color: var(--gold); font-size: 1.65rem; font-weight: 800; letter-spacing: -0.05em; }
.winner-modal-link { position: relative; z-index: 1; width: 100%; margin-top: 1.5rem; }
.winner-receipt { position: relative; z-index: 1; margin-top: 0.75rem; color: #747d74; font-size: 0.68rem; }

/* Toast */
.toast {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 0.625rem 1.125rem;
  border-radius: 8px;
  font-size: 0.875rem;
  z-index: 300;
}
