/* Reset-ish so spacing looks consistent */
* {
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #0f172a;
  color: #e2e8f0;
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.app {
  width: min(700px, 92vw);
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: 16px;
  padding: 24px;
}

.hint {
  color: #94a3b8;
  margin-top: 8px;
}

.label {
  display: block;
  margin-top: 18px;
  margin-bottom: 8px;
  color: #cbd5e1;
}

.select {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #334155;
  background: #0b1220;
  color: #e2e8f0;
}

.btn {
  margin-top: 16px;
  width: 100%;
  padding: 12px;
  border: 0;
  border-radius: 12px;
  background: #3b82f6;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

.btn:active {
  transform: scale(0.99);
}

.card {
  margin-top: 18px;
  padding: 16px;
  border-radius: 12px;
  background: #0b1220;
  border: 1px solid #334155;
}

.cardTitle {
  margin: 0 0 8px 0;
  font-size: 14px;
  color: #94a3b8;
}

.jokeText {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
}
