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

body {
  font-family: "Orbitron", "Rajdhani", "Exo 2", sans-serif;
  background-color: #ecf0f1;
  color: #2c3e50;
  line-height: 1.6;
}

.game-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

header {
  text-align: center;
  margin-bottom: 30px;
}
header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
header p {
  font-size: 1.1rem;
  color: #7f8c8d;
}

.stats-bar {
  display: flex;
  justify-content: space-around;
  background: #ffffff;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 2px;
  border: 2px solid #34495e;
}
.stats-bar .stat {
  text-align: center;
}
.stats-bar .stat-label {
  font-weight: bold;
  margin-right: 5px;
}
.stats-bar .stat-value {
  color: #e74c3c;
  font-size: 1.2rem;
  font-weight: bold;
}

.question-section {
  margin-bottom: 0.1px;
  padding-top: 15px;
  padding-bottom: 15px;
}
.question-section h2 {
  margin-bottom: 8px;
  text-align: center;
}

.question-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.question-btn {
  background: #8fbc8f;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.question-btn:hover {
  background: #7aa67a;
}
.question-btn:active {
  transform: scale(0.98);
}
.question-btn.asked, .question-btn:disabled {
  background: #95a5a6;
  color: #ecf0f1;
  cursor: not-allowed;
  opacity: 0.6;
}
.question-btn.asked:hover, .question-btn:disabled:hover {
  background: #95a5a6;
  transform: none;
}

.feedback {
  margin-top: 1px;
  padding: 5px;
  border-radius: 2px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  min-height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feedback.show {
  opacity: 1;
  transform: translateY(0);
}
.feedback.yes {
  background: #d4edda;
  border: 2px solid #28a745;
  color: #155724;
}
.feedback.no {
  background: #f8d7da;
  border: 2px solid #dc3545;
  color: #721c24;
}

.characters-section {
  margin-top: 5px;
}
.characters-section h2 {
  margin-bottom: 20px;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  padding: 20px;
}
@media (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 640px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.character-card {
  background: #ffffff;
  border: 2px solid #34495e;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.character-card:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.character-card.eliminated {
  opacity: 0.3;
  filter: grayscale(100%);
  cursor: not-allowed;
  pointer-events: none;
}
.character-card.eliminated:hover {
  transform: none;
  box-shadow: none;
}

.character-avatar {
  font-size: 3rem;
  margin-bottom: 10px;
}
.character-avatar .avatar-image {
  width: 100%;
  max-width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #34495e;
  background: #f0f0f0;
  display: block;
  margin: 0 auto;
}

.character-name {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #2c3e50;
}

.character-traits {
  list-style: none;
  font-size: 0.9rem;
  padding: 0;
}
.character-traits .trait-item {
  padding: 4px 0;
  font-weight: 600;
  transition: all 0.3s ease;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal.hidden {
  display: none;
}

.modal-content {
  background: #ffffff;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  max-width: 500px;
}
.modal-content h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}
.modal-content p {
  margin-bottom: 15px;
}

.modal-stats {
  margin: 20px 0;
  font-size: 1.1rem;
}
.modal-stats p {
  margin: 10px 0;
}
.modal-stats span {
  color: #e74c3c;
  font-weight: bold;
}

.play-again-btn {
  background: #27ae60;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1.1rem;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
  transition: background 0.3s ease;
}
.play-again-btn:hover {
  background: #229954;
}

@keyframes flash {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(52, 152, 219, 0);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(52, 152, 219, 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(52, 152, 219, 0);
  }
}
.flash-animation {
  animation: flash 1s ease;
}

@keyframes colorCycle {
  0% {
    color: #3498db;
  }
  20% {
    color: #e74c3c;
  }
  40% {
    color: #2ecc71;
  }
  60% {
    color: #f39c12;
  }
  80% {
    color: #9b59b6;
  }
  100% {
    color: #1abc9c;
  }
}
.trait-item.color-cycle {
  animation: colorCycle 3s ease-in-out;
}

/*# sourceMappingURL=styles.css.map */
