body {
  margin: 0;
  padding: 20px;
  font-family: 'Fira Mono', monospace;
  display: flex;
  justify-content: center;
  height: 100vh;
  background-color: #282828;
  background-image: linear-gradient(45deg, #282828 25%, #3c3836 25%, #3c3836 50%, #282828 50%, #282828 75%, #3c3836 75%, #3c3836);
  background-size: 20px 20px;
}

#wrapper {
  display: flex;
  gap: 20px;
  width: 100%;
  height: 100%;
}

#leaderboard-area {
  width: 250px;
  background-color: #282828;
  padding: 15px;
  border: 2px solid #ebdbb2;
  border-radius: 8px;
  margin-right: 20px;
  overflow-y: auto;
}

#game-area {
  flex: 1;
  max-width: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#question-area {
  background-color: #3c3836;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px #000;
  text-align: center;
  width: 100%;
  max-width: 600px;
}

#question-text {
  font-size: 24px;
  color: #ebdbb2;
  margin-bottom: 10px;
}

#question-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
  border-radius: 8px;
}

#options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.option {
  background-color: #504945;
  color: #ebdbb2;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.option:hover {
  background-color: #665c54;
}

#timer {
  margin-top: 10px;
  font-size: 18px;
  color: #ebdbb2;
}

.leaderboard-entry {
  display: flex;
  align-items: center;
  margin: 10px 0;
  padding: 10px;
  background-color: #3c3836;
  border-radius: 5px;
  position: relative;
}

.player-icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.player-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.player-name {
  font-size: 14px;
  color: #ebdbb2;
}

.player-score {
  font-size: 12px;
  color: #a89984;
}

.correct-guess::after {
  content: '✔️';
  position: absolute;
  right: 10px;
  color: #b8bb26;
}

.wrong-guess::after {
  content: '❌';
  position: absolute;
  right: 10px;
  color: #fb4934;
}
