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

body {
  background: #111;
  color: #ddd;
  font-family: Georgia, serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 20px;
}

h1 {
  font-size: 2rem;
  letter-spacing: 0.12em;
  margin-bottom: 40px;
  color: #fff;
}

#quote-box {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 32px 36px;
  max-width: 680px;
  width: 100%;
  margin-bottom: 28px;
  min-height: 110px;
  display: flex;
  align-items: center;
}

#quote-text {
  font-size: 1.15rem;
  line-height: 1.65;
  font-style: italic;
  color: #ccc;
}

#buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 680px;
  width: 100%;
  margin-bottom: 32px;
}

.author-btn {
  background: #1e1e1e;
  border: 1px solid #333;
  color: #bbb;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 0.95rem;
  transition: background 0.12s, border-color 0.12s, color 0.12s;
}

.author-btn:hover:not(:disabled) {
  background: #2a2a2a;
  border-color: #555;
  color: #eee;
}

.author-btn:disabled {
  cursor: default;
}

.author-btn.correct {
  background: #162616;
  border-color: #3a7a3a;
  color: #7dca7d;
}

.author-btn.wrong {
  background: #2a1414;
  border-color: #7a3a3a;
  color: #ca7d7d;
}

#score-area {
  text-align: center;
}

#streak-label {
  font-size: 1rem;
  color: #666;
  letter-spacing: 0.05em;
}

#streak-count {
  font-size: 2rem;
  color: #ddd;
  display: block;
  margin-top: 4px;
}

#feedback {
  margin-top: 14px;
  font-size: 0.9rem;
  color: #555;
  min-height: 1.2em;
}

#feedback.correct { color: #7dca7d; }
#feedback.wrong   { color: #ca7d7d; }
