@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Share+Tech+Mono&display=swap');

body {
  background: #06090f;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: 'Share Tech Mono', monospace;
}

.hero-section {
  text-align: center;
  position: relative;
  z-index: 10;
  padding: 2rem;
  max-width: 960px;
  width: 100%;
}

.hero-title {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(1.4rem, 4vw, 3rem);
  color: #5b8def;
  text-shadow: 0 0 24px rgba(91, 141, 239, 0.35);
  margin-bottom: 1.5rem;
  letter-spacing: 4px;
}

.hero-tagline {
  font-size: clamp(0.85rem, 1.8vw, 1.1rem);
  color: #8892a4;
  margin-bottom: 2rem;
  line-height: 1.9;
}

.launch-btn {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.75rem;
  padding: 1rem 2.5rem;
  background: transparent;
  color: #5b8def;
  border: 1px solid #5b8def;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  display: inline-block;
  letter-spacing: 2px;
}

.launch-btn:hover {
  background: rgba(91, 141, 239, 0.1);
  color: #5b8def;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  text-align: left;
  display: inline-block;
}

.features-list li {
  font-size: 0.9rem;
  color: #8892a4;
  padding: 0.3rem 0;
}

.features-list li::before {
  content: '> ';
  color: #5b8def;
}

.leaderboard-section {
  margin: 2.5rem auto 0;
  width: 100%;
  max-width: 600px;
  text-align: center;
}

.lb-title {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.65rem;
  color: #fbbf24;
  letter-spacing: 3px;
  margin-bottom: 0.75rem;
  text-align: center;
}

.lb-prize {
  font-size: 0.8rem;
  color: #f7931a;
  margin-bottom: 1rem;
  text-align: center;
}

.lb-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.lb-table th {
  color: #93c5fd;
  font-size: 0.7rem;
  padding: 0.3rem 0.5rem;
  text-align: right;
  border-bottom: 1px solid #1e2640;
}

.lb-table td {
  padding: 0.4rem 0.5rem;
  border-bottom: 1px solid #111827;
  color: #8892a4;
}

.lb-table tr:first-child td { color: #fbbf24; }
.lb-table tr:nth-child(2) td { color: #94a3b8; }
.lb-table tr:nth-child(3) td { color: #b45309; }

.lb-rank  { color: #4a5568; width: 2rem; }
.lb-name  { color: #93c5fd; text-align: right; }
.lb-score { color: #93c5fd; text-align: right; }
.lb-jewels { color: #93c5fd; text-align: right; }

.lb-empty {
  color: #2a3558;
  font-size: 0.8rem;
  padding: 1rem 0;
  text-align: center;
}

.matrix-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 1;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 0, 0, 0.07) 3px,
    rgba(0, 0, 0, 0.07) 4px
  );
}

.version-tag {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  color: #2a3050;
}
