/* style.css - Quiz Game Styles */
body {
  font-family: Arial, sans-serif;
  background: #181a20;
  margin: 0;
  padding: 0;
  color: #e0e0e0;
}
.quiz-container {
  max-width: 600px;
  margin: 40px auto;
  background: #23262f;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
  padding: 32px;
}
h2 {
  margin-top: 0;
  color: #e0e0e0;
  text-align: center;
}
.question {
  text-align: center;
  font-size: 1.2em;
  margin-bottom: 16px;
  color: #e0e0e0;
}
.category {
  text-align: center;
  margin-bottom: 8px;
  position: relative;
}
.category-icon-corner {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 2em;
  margin: 0.2em 0.4em 0 0;
  pointer-events: none;
}
.category-icon {
  vertical-align: middle;
}
.category-icon-header {
  font-size: 1.5em;
  margin-left: 0.5em;
  vertical-align: middle;
}
#countdownBar {
  text-align: center;
  font-size: 1.2em;
}
#correctAnswerBar {
  text-align: center;
  font-weight: bold;
  margin-top: 8px;
}
.answers.cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 24px;
}
.answer-card {
  flex: 1 1 0;
  display: flex;
  align-items: stretch;
}
.answer-btn {
  width: 100%;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 4px dashed #fff;
  border-radius: 24px;
  background: #23262f;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  position: relative;
  font-family: 'Comic Sans MS', 'Comic Sans', cursive, Arial, sans-serif;
}
.answer-card:nth-child(1) .answer-btn {
  background: linear-gradient(135deg, #2196f3 60%, #90caf9 100%);
  border-color: #1976d2;
  box-shadow: 0 4px 24px rgba(33,150,243,0.25);
  color: #fff;
}
.answer-card:nth-child(2) .answer-btn {
  background: linear-gradient(135deg, #43ea7f 60%, #b6e7b0 100%);
  border-color: #388e3c;
  box-shadow: 0 4px 24px rgba(67,234,127,0.18);
  color: #fff;
}
.answer-card:nth-child(3) .answer-btn {
  background: linear-gradient(135deg, #ff6f00 60%, #ffb74d 100%);
  border-color: #ff6f00;
  box-shadow: 0 4px 24px rgba(255,111,0,0.18);
  color: #fff;
}
.answer-btn:hover {
  filter: brightness(1.08) drop-shadow(0 0 8px #fff);
  border-style: solid;
}
.answer-btn.correct {
  background: linear-gradient(135deg, #4caf50 60%, #b6e7b0 100%);
  border-color: #4caf50;
}
.answer-btn.incorrect {
  background: linear-gradient(135deg, #f44336 60%, #f7b6b6 100%);
  border-color: #f44336;
}
.answer-btn.hovering {
  filter: brightness(1.18) drop-shadow(0 0 12px #fff7);
  border-style: solid;
  box-shadow: 0 0 24px 8px #fff3;
}
.answer-btn.emphasize {
  box-shadow: 0 0 32px 12px #fff, 0 0 8px 2px #ffd700;
  filter: brightness(1.25) drop-shadow(0 0 16px #ffd700);
  border-style: solid;
}
.answer-btn.dimmed {
  opacity: 0.35;
  filter: grayscale(0.7) brightness(0.6);
}
.answer-number {
  font-size: 2.8em;
  font-weight: bold;
  color: #fff;
  margin-bottom: 8px;
  text-shadow: 2px 2px 8px #000a;
}
.answer-card:nth-child(3) .answer-number {
  color: #fff;
  text-shadow: 2px 2px 8px #000a;
}
.answer-text {
  font-size: 1.1em;
  color: #fff;
  text-shadow: 1px 1px 4px #000a;
}
.answer-card:nth-child(3) .answer-text {
  color: #fff;
  text-shadow: 1px 1px 4px #ff6f00a;
}
.next-btn {
  margin-top: 24px;
  padding: 10px 24px;
  font-size: 1em;
  background: #1976d2;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}
.next-btn:disabled {
  background: #444;
  color: #aaa;
  cursor: not-allowed;
}
.score {
  text-align: center;
  font-size: 1.1em;
  margin-top: 32px;
  color: #e0e0e0;
}
footer, h1, h2, h3 {
  text-align: center;
}
.footer-hints {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.95em;
  opacity: 0.85;
}
.key-hint {
  background: #23262f;
  border-radius: 6px;
  padding: 3px 8px;
  color: #e0e0e0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.10);
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: box-shadow 0.2s, background 0.2s;
  border: 1.5px solid #444;
  margin: 0 2px;
  font-size: 0.95em;
}
.key-hint:hover {
  background: #1976d2;
  color: #fff;
  box-shadow: 0 2px 8px #2196f3a0;
  border-color: #2196f3;
}
kbd {
  background: #181a20;
  border-radius: 3px;
  border: 1px solid #444;
  padding: 1px 6px;
  font-size: 0.95em;
  color: #fff;
  font-family: inherit;
  box-shadow: 0 1px 2px #0002;
  min-width: 24px;
  text-align: center;
}
