/* Dopanaire Game - Enhanced Styling */

/* Background with animated gradient */
body.dopanaire-game {
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1419 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  position: relative;
  overflow-x: hidden;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Animated background particles */
body.dopanaire-game::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, rgba(217, 164, 65, 0.3), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(217, 164, 65, 0.2), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(217, 164, 65, 0.1), transparent);
  background-size: 200% 200%;
  animation: particleMove 20s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes particleMove {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

/* Game header with glassmorphism */
.game-header {
  background: rgba(20, 25, 40, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(217, 164, 65, 0.3);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

/* Persona badge with glow */
.persona-badge {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, rgba(217, 164, 65, 0.3), rgba(217, 164, 65, 0.1));
  border: 2px solid var(--mw-accent-gold);
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  animation: personaGlow 2s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(217, 164, 65, 0.4);
}

@keyframes personaGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(217, 164, 65, 0.4); }
  50% { box-shadow: 0 0 30px rgba(217, 164, 65, 0.6); }
}

/* Game title */
#gameTitle {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #d9a441, #f5c842, #d9a441);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Stats row */
.stats-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background: rgba(217, 164, 65, 0.1);
  border-radius: 12px;
  min-width: 100px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (hover: hover) {
  .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(217, 164, 65, 0.3);
  }
}

.stat-item:active {
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(217, 164, 65, 0.25);
}

.stat-value {
  font-size: 2rem;
  font-weight: bold;
  color: var(--mw-accent-gold);
  text-shadow: 0 0 10px rgba(217, 164, 65, 0.5);
  animation: numberPulse 0.5s ease;
}

@keyframes numberPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.stat-label {
  font-size: 0.85rem;
  color: var(--mw-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
}

/* Question card with slide-in animation */
.question-card {
  background: rgba(20, 25, 40, 0.9);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(217, 164, 65, 0.3);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  animation: slideInRight 0.5s ease-out;
  position: relative;
  z-index: 1;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.question-card h5 {
  color: var(--mw-accent-gold);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

/* Option buttons with enhanced effects */
.option-btn {
  display: block;
  width: 100%;
  padding: 1.25rem;
  margin-bottom: 1rem;
  background: rgba(14, 59, 45, 0.6);
  border: 2px solid rgba(217, 164, 65, 0.3);
  border-radius: 12px;
  color: var(--mw-text-light);
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
}

.option-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(217, 164, 65, 0.2), transparent);
  transition: left 0.5s ease;
}

@media (hover: hover) {
  .option-btn:hover::before {
    left: 100%;
  }

  .option-btn:hover {
    border-color: var(--mw-accent-gold);
    background: rgba(217, 164, 65, 0.15);
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(217, 164, 65, 0.3);
  }
}

.option-btn:active {
  border-color: var(--mw-accent-gold);
  background: rgba(217, 164, 65, 0.12);
  transform: translateX(4px);
}

.option-btn.selected {
  border-color: var(--mw-accent-gold);
  background: rgba(217, 164, 65, 0.25);
  box-shadow: 0 0 20px rgba(217, 164, 65, 0.5);
  transform: scale(1.02);
}

.option-btn.correct {
  border-color: #4caf50;
  background: rgba(76, 175, 80, 0.3);
  animation: correctPulse 0.5s ease;
}

@keyframes correctPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.option-btn.incorrect {
  border-color: #f44336;
  background: rgba(244, 67, 54, 0.3);
  animation: shake 0.5s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-10px); }
  75% { transform: translateX(10px); }
}

/* Feedback card */
.feedback-card {
  background: rgba(217, 164, 65, 0.15);
  border: 1px solid rgba(217, 164, 65, 0.4);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  font-style: italic;
  animation: fadeIn 0.5s ease;
}

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

/* Results summary */
.results-summary {
  text-align: center;
  padding: 3rem;
  background: rgba(20, 25, 40, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  margin-bottom: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.score-display {
  font-size: 4rem;
  font-weight: bold;
  background: linear-gradient(135deg, #d9a441, #f5c842);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 1.5rem 0;
  animation: scoreCountUp 1s ease;
}

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

.reward-badge {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, rgba(217, 164, 65, 0.3), rgba(217, 164, 65, 0.1));
  border: 2px solid var(--mw-accent-gold);
  border-radius: 999px;
  margin: 0.5rem;
  font-weight: 600;
  animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Submit button */
#submitBtn {
  background: linear-gradient(135deg, #d9a441, #f5c842);
  border: none;
  padding: 1rem 3rem;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(217, 164, 65, 0.4);
  transition: all 0.3s ease;
}

@media (hover: hover) {
  #submitBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(217, 164, 65, 0.6);
  }
}

#submitBtn:active {
  transform: translateY(0);
  box-shadow: 0 4px 16px rgba(217, 164, 65, 0.45);
}

/* Topic input form */
#topicInputSection {
  position: relative;
  z-index: 1;
}

#topicInputSection .card {
  animation: fadeInUp 0.5s ease;
}

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

#topicInput {
  background: rgba(20, 25, 40, 0.8);
  border: 2px solid rgba(217, 164, 65, 0.3);
  color: var(--mw-text-light);
  border-radius: 12px;
}

#topicInput:focus {
  border-color: var(--mw-accent-gold);
  box-shadow: 0 0 20px rgba(217, 164, 65, 0.3);
  background: rgba(20, 25, 40, 0.95);
}

/* Loading spinner */
#loadingSpinner {
  position: relative;
  z-index: 1;
}

.spinner-border {
  width: 4rem;
  height: 4rem;
  border-width: 0.3rem;
  border-color: var(--mw-accent-gold);
  border-right-color: transparent;
}

/* Confetti animation container */
.confetti-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--mw-accent-gold);
  animation: confettiFall 3s linear forwards;
}

@keyframes confettiFall {
  to {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}

/* Progress indicator */
.progress-indicator {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.2rem;
  color: var(--mw-accent-gold);
  font-weight: 600;
}

/* Container adjustments */
.container {
  position: relative;
  z-index: 1;
}

/* Phase 1: Animation System Enhancements */

/* Screen shake animation (for BOSS_INTRO) */
@keyframes screenShake {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  10% { transform: translate(-8px, 8px) rotate(-1deg); }
  20% { transform: translate(8px, -8px) rotate(1deg); }
  30% { transform: translate(-8px, -8px) rotate(-1deg); }
  40% { transform: translate(8px, 8px) rotate(1deg); }
  50% { transform: translate(-8px, 8px) rotate(-1deg); }
  60% { transform: translate(8px, -8px) rotate(1deg); }
  70% { transform: translate(-8px, -8px) rotate(-1deg); }
  80% { transform: translate(8px, 8px) rotate(1deg); }
  90% { transform: translate(-8px, 8px) rotate(-1deg); }
}

.screen-shake {
  animation: screenShake 0.6s cubic-bezier(.36,.07,.19,.97) infinite;
}

/* Siren flash animation (for BOSS_INTRO) */
@keyframes sirenFlash {
  0%, 100% { opacity: 0; }
  50% { opacity: 0.4; }
}

.siren-flash {
  animation: sirenFlash 0.8s ease-in-out infinite;
}

/* Crack lines SVG animation (for BOSS_INTRO) */
@keyframes crackLines {
  0% { opacity: 0; stroke-dashoffset: 1000; }
  100% { opacity: 0.6; stroke-dashoffset: 0; }
}

.crack-line {
  animation: crackLines 1s ease-out forwards;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

/* Text glitch animation (for BOSS_INTRO) */
@keyframes textGlitch {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(-3px, 3px); }
  40% { transform: translate(3px, -3px); }
  60% { transform: translate(-3px, -3px); }
  80% { transform: translate(3px, 3px); }
}

.text-glitch {
  animation: textGlitch 0.3s infinite;
}

/* Coin burst animation (for FEEDBACK) */
@keyframes coinBurst {
  0% { transform: translateY(0) scale(0); opacity: 0; }
  50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
  100% { transform: translateY(-40px) scale(1); opacity: 0; }
}

.coin-burst {
  animation: coinBurst 1.5s ease-out infinite;
}

/* Sparkle animation (for FEEDBACK) */
@keyframes sparkle {
  0% { transform: rotate(0deg) scale(0); }
  50% { transform: rotate(180deg) scale(1); }
  100% { transform: rotate(360deg) scale(0); }
}

.sparkle {
  animation: sparkle 2s ease-in-out infinite;
}

/* Host bounce animation (for FEEDBACK) */
@keyframes hostBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.host-bounce {
  animation: hostBounce 2s ease-in-out infinite;
}

/* Golden glow animation (for various stages) */
@keyframes goldenGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
  50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.8); }
}

.golden-glow {
  animation: goldenGlow 2s ease-in-out infinite;
}

/* Pulse glow animation (for buttons) */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(234, 179, 8, 0.6), 0 0 40px rgba(234, 179, 8, 0.4), 0 0 60px rgba(234, 179, 8, 0.2); }
  50% { box-shadow: 0 0 30px rgba(234, 179, 8, 0.8), 0 0 60px rgba(234, 179, 8, 0.6), 0 0 90px rgba(234, 179, 8, 0.4); }
}

.pulse-glow {
  animation: pulseGlow 2s ease-in-out infinite;
}

/* Bounce-in animation (for FEEDBACK) */
@keyframes bounceIn {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.2); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

.bounce-in {
  animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Boss entrance animation (for BOSS_INTRO) */
@keyframes bossEntrance {
  0% { transform: scale(0.3) translateY(100px); opacity: 0; }
  60% { transform: scale(1.1) translateY(-20px); opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

.boss-entrance {
  animation: bossEntrance 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

/* Enhanced Animation Library */
.animate-bounce-in {
  animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.animate-glow-pulse {
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { 
    box-shadow: 0 0 20px rgba(234, 179, 8, 0.6), 0 0 40px rgba(234, 179, 8, 0.4);
  }
  50% { 
    box-shadow: 0 0 30px rgba(234, 179, 8, 0.8), 0 0 60px rgba(234, 179, 8, 0.6);
  }
}

.animate-shake {
  animation: shake 0.5s ease;
}

.animate-zoom-in {
  animation: zoomIn 0.5s ease-out;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-slide-up {
  animation: slideUp 0.5s ease-out;
}

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

.animate-color-flash {
  animation: colorFlash 0.3s ease;
}

@keyframes colorFlash {
  0%, 100% { background-color: transparent; }
  50% { background-color: rgba(234, 179, 8, 0.3); }
}

.animate-rotate {
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.animate-scale-pulse {
  animation: scalePulse 1.5s ease-in-out infinite;
}

@keyframes scalePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Answer reveal animations */
@keyframes correctReveal {
  0% { 
    transform: scale(1);
    box-shadow: 0 0 0 rgba(34, 197, 94, 0);
  }
  50% { 
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.8);
  }
  100% { 
    transform: scale(1);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.6);
  }
}

@keyframes wrongReveal {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
  20%, 40%, 60%, 80% { transform: translateX(5px); }
}

@keyframes levelUpPulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Color Palette Expansion - CSS Variables */
:root {
  --color-success: #22c55e;
  --color-success-light: #4ade80;
  --color-error: #ef4444;
  --color-error-dark: #dc2626;
  --color-warning: #f97316;
  --color-warning-light: #fb923c;
  --color-info: #3b82f6;
  --color-info-light: #60a5fa;
  --color-purple: #a855f7;
  --color-purple-light: #c084fc;
  --color-pink: #ec4899;
  --color-pink-light: #f472b6;
  --color-gold: #ffd700;
  --color-gold-dark: #d9a441;
}

/* Enhanced button styles */
.btn-game-enhanced {
  background: linear-gradient(135deg, var(--color-gold), var(--color-warning-light));
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(234, 179, 8, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
  color: #020617;
  position: relative;
  overflow: hidden;
}

.btn-game-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

@media (hover: hover) {
  .btn-game-enhanced:hover::before {
    left: 100%;
  }

  .btn-game-enhanced:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(234, 179, 8, 0.6);
  }
}

.btn-game-enhanced:active {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 5px 18px rgba(234, 179, 8, 0.5);
}

/* Final Answer Button - Super Obvious */
#btnFinalAnswer {
  background: linear-gradient(135deg, #ffd700, #ff6b00, #ff0000) !important;
  border: 4px solid #fff !important;
  padding: 1.5rem 3rem !important;
  font-size: 1.5rem !important;
  font-weight: 900 !important;
  border-radius: 16px !important;
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.8), 0 0 80px rgba(255, 107, 0, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.3) !important;
  color: #020617 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  animation: finalAnswerPulse 2s ease-in-out infinite !important;
  position: relative !important;
  overflow: hidden !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

/* The button label already starts with a "✓" glyph; the old ::before added a
   second, detached spinning tick pinned to the far-left edge. Removed to avoid
   the duplicate/stray checkmark. */

@media (hover: hover) {
  #btnFinalAnswer:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 0 60px rgba(255, 215, 0, 1), 0 0 100px rgba(255, 107, 0, 0.8), inset 0 0 30px rgba(255, 255, 255, 0.5) !important;
    animation: finalAnswerPulseHover 1s ease-in-out infinite !important;
  }

  #btnBossReady:hover {
    transform: scale(1.1) !important;
    animation: bossReadyPulseHover 1s ease-in-out infinite !important;
  }
}

#btnFinalAnswer:active {
  transform: scale(1.04) !important;
}

#btnBossReady:active {
  transform: scale(1.04) !important;
}

@keyframes finalAnswerPulse {
  0%, 100% {
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.8), 0 0 80px rgba(255, 107, 0, 0.6);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 60px rgba(255, 215, 0, 1), 0 0 100px rgba(255, 107, 0, 0.8);
    transform: scale(1.02);
  }
}

@keyframes finalAnswerPulseHover {
  0%, 100% {
    box-shadow: 0 0 60px rgba(255, 215, 0, 1), 0 0 100px rgba(255, 107, 0, 0.8);
  }
  50% {
    box-shadow: 0 0 80px rgba(255, 215, 0, 1.2), 0 0 120px rgba(255, 107, 0, 1);
  }
}

@keyframes checkmarkSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Lifeline colors */
.lifeline-tickclock {
  background: linear-gradient(135deg, var(--color-pink), var(--color-purple)) !important;
  border-color: var(--color-pink-light) !important;
}

.lifeline-exbird {
  background: linear-gradient(135deg, var(--color-info), #00d4ff) !important;
  border-color: var(--color-info-light) !important;
}

.lifeline-snapdad {
  background: linear-gradient(135deg, var(--color-warning), var(--color-gold)) !important;
  border-color: var(--color-warning-light) !important;
}

.lifeline-leakedin {
  background: linear-gradient(135deg, var(--color-info), var(--color-purple)) !important;
  border-color: var(--color-purple-light) !important;
}

/* Correct/Wrong answer styles */
.answer-correct {
  background: linear-gradient(135deg, var(--color-success), var(--color-success-light)) !important;
  border-color: var(--color-success) !important;
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.6) !important;
  animation: correctReveal 0.6s ease-out !important;
}

.answer-wrong {
  background: linear-gradient(135deg, var(--color-error), var(--color-error-dark)) !important;
  border-color: var(--color-error) !important;
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.6) !important;
  animation: wrongReveal 0.6s ease-out !important;
}

/* Boss Ready Button Animation */
@keyframes bossReadyPulse {
  0%, 100% {
    box-shadow: 0 0 50px rgba(255, 0, 0, 0.8), 0 0 100px rgba(255, 107, 0, 0.6), inset 0 0 30px rgba(255, 255, 255, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 70px rgba(255, 0, 0, 1), 0 0 120px rgba(255, 107, 0, 0.8), inset 0 0 40px rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
  }
}

@keyframes bossReadyPulseHover {
  0%, 100% {
    box-shadow: 0 0 70px rgba(255, 0, 0, 1), 0 0 120px rgba(255, 107, 0, 0.8);
  }
  50% {
    box-shadow: 0 0 90px rgba(255, 0, 0, 1.2), 0 0 140px rgba(255, 107, 0, 1);
  }
}

