.dodo-guessr-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.dodo-guessr-content {
  text-align: center;
  max-width: 800px;
  width: 100%;
}

.dodo-guessr-title {
  font-size: 64px;
  font-weight: bold;
  color: white;
  margin-bottom: 40px;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

.final-score {
  font-size: 48px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 30px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.dodo-image-container {
  margin: 40px 0;
  display: flex;
  justify-content: center;
}

.dodo-image {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.play-button {
  margin-top: 40px;
  min-height: 56px;
  padding: 16px 60px;
  font-size: 24px;
  font-weight: 700;
  border: none;
  color: white;
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.play-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.play-button:hover::after {
  width: 300px;
  height: 300px;
}

.play-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.play-button:active {
  transform: translateY(-1px) scale(0.98);
}

.back-button {
  margin-top: 40px;
  padding: 15px 40px;
  font-size: 18px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
}

.back-button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Game Screen Styles */
.game-screen {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 40px;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
}

.score-display {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 28px;
  font-weight: bold;
  color: #667eea;
  background: white;
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.game-title {
  font-size: 36px;
  font-weight: bold;
  color: #667eea;
  margin-bottom: 20px;
  text-align: center;
}

.question-progress {
  text-align: center;
  font-size: 18px;
  color: #667eea;
  font-weight: 600;
  margin-bottom: 20px;
  background: rgba(102, 126, 234, 0.1);
  padding: 10px;
  border-radius: 8px;
}

.audio-section {
  margin-bottom: 30px;
  text-align: center;
}

.instruction {
  font-size: 18px;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.audio-player {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  display: block;
  border-radius: 8px;
}

.tags-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 30px 0;
}

.tag-button {
  padding: 20px;
  font-size: 18px;
  font-weight: 600;
  background: white;
  color: #667eea;
  border: 3px solid #667eea;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tag-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  background: rgba(102, 126, 234, 0.1);
}

.tag-button.correct {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  color: white;
  border-color: #11998e;
  box-shadow: 0 6px 16px rgba(17, 153, 142, 0.4);
  cursor: not-allowed;
}

.tag-button.wrong {
  background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
  color: white;
  border-color: #eb3349;
  box-shadow: 0 6px 16px rgba(235, 51, 73, 0.4);
  cursor: not-allowed;
}

.tag-button:active:not(:disabled) {
  transform: translateY(-1px) scale(0.98);
}

.tag-button:disabled {
  cursor: not-allowed;
}

.selection-counter {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #667eea;
  margin: 20px 0;
}

.action-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.submit-button {
  padding: 15px 50px;
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.submit-button:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.submit-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.menu-button {
  padding: 15px 30px;
  font-size: 18px;
  background: rgba(0, 0, 0, 0.1);
  color: #667eea;
  border: 2px solid #667eea;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.menu-button:hover {
  background: rgba(102, 126, 234, 0.1);
  transform: translateY(-2px);
}

