:root {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0f172a;
  color: #0f172a;
  line-height: 1.5;
  font-size: 16px;
}

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

body {
  margin: 0;
  background: #0f172a;
  color: #fff;
}

.hero {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem clamp(1rem, 5vw, 5rem);
  background: radial-gradient(circle at top left, #14b8a6, #0f172a);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.subhead {
  color: rgba(255, 255, 255, 0.8);
  max-width: 40rem;
}

.meeting-meta {
  min-width: 220px;
  background: rgba(15, 23, 42, 0.6);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
}

.copy-id-btn {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  padding: 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.copy-id-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.copy-id-btn small {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.copy-id-btn.copied small {
  color: #4ade80;
}

main {
  padding: 2rem clamp(1rem, 5vw, 5rem) 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #1e293b;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.5);
}

.card header h2 {
  margin-top: 0;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.muted {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

input,
button,
textarea {
  font: inherit;
}

input,
textarea {
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

button {
  border: none;
  border-radius: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: #14b8a6;
  color: #04121f;
  font-weight: 600;
  cursor: pointer;
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

button.danger {
  background: #f87171;
  color: #300b0b;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.question-card {
  background: rgba(15, 23, 42, 0.6);
  border-radius: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.question-card + .question-card {
  margin-top: 1rem;
}

.question-meta {
  color: rgba(255, 255, 255, 0.6);
  margin: 0.2rem 0 0;
  font-size: 0.9rem;
}

.bets {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.bet {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  padding: 0.6rem 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bet.winner {
  border: 1px solid #4ade80;
  background: rgba(74, 222, 128, 0.1);
}

.bet-summary {
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.4);
  border-radius: 0.75rem;
  padding: 0.9rem 1rem;
}

.badge {
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.15);
}

dialog {
  border: none;
  border-radius: 1rem;
  padding: 2rem;
  background: #1e293b;
  color: #fff;
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.5);
}

@media (max-width: 640px) {
  .hero {
    flex-direction: column;
  }
}


