.hound-taunt-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: houndTauntFadeIn 0.3s ease;
}

@keyframes houndTauntFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes houndTauntSlideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes houndTauntPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 204, 102, 0.3); }
  50% { box-shadow: 0 0 35px rgba(0, 204, 102, 0.6); }
}

.hound-taunt-modal {
  background: linear-gradient(145deg, #141a2e 0%, #0d1220 100%);
  border: 2px solid #00cc66;
  border-radius: 16px;
  padding: 24px;
  max-width: 360px;
  width: 90%;
  position: relative;
  animation: houndTauntSlideUp 0.4s ease, houndTauntPulse 3s ease-in-out infinite;
  text-align: center;
}

.hound-taunt-modal.hound-won {
  border-color: #ff4444;
  animation: houndTauntSlideUp 0.4s ease, houndTauntPulseRed 3s ease-in-out infinite;
}

@keyframes houndTauntPulseRed {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 68, 68, 0.3); }
  50% { box-shadow: 0 0 35px rgba(255, 68, 68, 0.5); }
}

.hound-taunt-modal.user-won {
  border-color: #00cc66;
}

.hound-taunt-modal.challenge-placed {
  border-color: #ffaa00;
  animation: houndTauntSlideUp 0.4s ease, houndTauntPulseGold 3s ease-in-out infinite;
}

@keyframes houndTauntPulseGold {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 170, 0, 0.3); }
  50% { box-shadow: 0 0 35px rgba(255, 170, 0, 0.5); }
}

.hound-taunt-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  color: #666;
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.2s;
}

.hound-taunt-close:hover {
  color: #fff;
}

.hound-taunt-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: block;
  border: 3px solid #00cc66;
  object-fit: cover;
}

.hound-taunt-modal.hound-won .hound-taunt-avatar {
  border-color: #ff4444;
}

.hound-taunt-modal.challenge-placed .hound-taunt-avatar {
  border-color: #ffaa00;
}

.hound-taunt-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  color: #00cc66;
}

.hound-taunt-modal.hound-won .hound-taunt-label {
  color: #ff4444;
}

.hound-taunt-modal.challenge-placed .hound-taunt-label {
  color: #ffaa00;
}

.hound-taunt-message {
  font-size: 15px;
  color: #e0e0e0;
  line-height: 1.5;
  font-style: italic;
  margin: 0;
  padding: 0 8px;
}

.hound-taunt-coins {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #888;
}

.hound-taunt-coins.positive {
  color: #00cc66;
}

.hound-taunt-coins.negative {
  color: #ff4444;
}

.hound-taunt-coins.neutral {
  color: #ffaa00;
}

@media (max-width: 480px) {
  .hound-taunt-modal {
    max-width: 300px;
    padding: 20px 16px;
  }
  .hound-taunt-avatar {
    width: 64px;
    height: 64px;
  }
  .hound-taunt-message {
    font-size: 14px;
  }
}
