* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow: hidden;
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
}


/* Start Screen */
#startScreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("assets/front.png");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  animation: fadeIn 1s ease-in;
}

#startScreen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(75, 0, 130, 0.7), rgba(138, 43, 226, 0.6));
  z-index: 1;
}

#startScreen.hidden {
  display: none;
}

.start-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: slideUp 1.2s ease-out;
}

.game-title {
  font-size: 60px;
  font-weight: bold;
  color: #FFD700;
  text-shadow: 0 0 40px rgba(255, 215, 0, 1), 
               0 0 20px rgba(255, 215, 0, 0.8),
               0 5px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: 8px;
  margin-bottom: 20px;
  animation: glow 4s ease-in-out infinite;
}

.game-subtitle {
  font-size: 24px;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  letter-spacing: 4px;
  margin-bottom: 50px;
  font-style: italic;
}

.play-button {
  background: linear-gradient(135deg, #8B00FF, #6B00CC);
  color: white;
  border: 4px solid rgba(255, 215, 0, 0.6);
  padding: 20px 80px;
  border-radius: 50px;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 3px;
  box-shadow: 0 10px 40px rgba(138, 43, 226, 0.8),
              0 0 30px rgba(255, 215, 0, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

.play-button:hover {
  background: linear-gradient(135deg, #FF1493, #FF69B4);
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 15px 50px rgba(255, 20, 147, 0.9),
              0 0 50px rgba(255, 215, 0, 0.8);
  border-color: rgba(255, 255, 255, 0.9);
}

.play-button:active {
  transform: scale(1.05) translateY(-2px);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { 
    opacity: 0;
    transform: translateY(50px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { 
    transform: scale(1);
  }
  50% { 
    transform: scale(1.05);
  }
}

/* Instructions Screen */
#instructionsScreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("assets/main.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1500;
  overflow-y: auto;
  padding: 20px;
}

#instructionsScreen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1;
}

#instructionsScreen.hidden {
  display: none;
}

.instructions-overlay {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  background: linear-gradient(135deg, rgba(75, 0, 130, 0.95), rgba(138, 43, 226, 0.9));
  border: 4px solid rgba(255, 215, 0, 0.6);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 0 50px rgba(138, 43, 226, 0.8);
  animation: slideUp 0.5s ease-out;
  max-height: 90vh;
  overflow-y: auto;
}

.instructions-title {
  font-size: 48px;
  font-weight: bold;
  color: #FFD700;
  text-align: center;
  text-shadow: 0 0 30px rgba(255, 215, 0, 1);
  letter-spacing: 6px;
  margin-bottom: 30px;
  animation: glow 3s ease-in-out infinite;
}

.instructions-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.instructions-section {
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 20px;
}

.section-title {
  font-size: 24px;
  color: #FFD700;
  font-weight: bold;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
  letter-spacing: 2px;
}

/* Controls Grid */
.control-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.control-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.key-box {
  background: linear-gradient(135deg, #8B00FF, #6B00CC);
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 16px;
  border: 2px solid rgba(255, 215, 0, 0.4);
  box-shadow: 0 4px 15px rgba(138, 43, 226, 0.6);
  min-width: 100px;
  text-align: center;
}

.control-desc {
  color: white;
  font-size: 14px;
  text-align: center;
}

/* Enemy Grid */
.enemy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}

.enemy-item {
  background: rgba(255, 0, 0, 0.1);
  border: 2px solid rgba(255, 0, 0, 0.3);
  border-radius: 15px;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s;
}

.enemy-item:hover {
  transform: scale(1.05);
  border-color: rgba(255, 0, 0, 0.6);
}

.enemy-emoji {
  font-size: 40px;
  margin-bottom: 8px;
}

.enemy-name {
  color: #FF6B6B;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 5px;
}

.enemy-desc {
  color: white;
  font-size: 13px;
}

/* Combo Explanation */
.combo-explanation {
  color: white;
  font-size: 16px;
  line-height: 1.8;
}

.combo-explanation p {
  margin-bottom: 10px;
}

.combo-example {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  font-size: 18px;
  color: white;
}

.combo-badge {
  background: linear-gradient(135deg, #FF1493, #FF69B4);
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: bold;
  border: 2px solid white;
  box-shadow: 0 4px 10px rgba(255, 20, 147, 0.6);
}

.combo-badge.gold {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  animation: pulse 1.5s ease-in-out infinite;
}

/* Power-ups Grid */
.powerup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}

.powerup-item {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s;
}

.powerup-item:hover {
  transform: scale(1.05);
  border-color: rgba(255, 215, 0, 0.6);
}

.powerup-emoji {
  font-size: 40px;
  margin-bottom: 8px;
}

.powerup-name {
  color: #FFD700;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 5px;
}

.powerup-desc {
  color: white;
  font-size: 13px;
}

/* Tips List */
.tips-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tip-item {
  background: rgba(255, 215, 0, 0.1);
  border-left: 4px solid #FFD700;
  padding: 12px 15px;
  border-radius: 8px;
  color: white;
  font-size: 15px;
}

/* Buttons */
.start-game-btn {
  background: linear-gradient(135deg, #FF1493, #FF69B4);
  color: white;
  border: 4px solid rgba(255, 255, 255, 0.8);
  padding: 18px 60px;
  border-radius: 50px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 20px;
  box-shadow: 0 10px 30px rgba(255, 20, 147, 0.6);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.start-game-btn:hover {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.8);
}

.back-btn {
  background: rgba(138, 43, 226, 0.8);
  color: white;
  border: 3px solid rgba(255, 255, 255, 0.4);
  padding: 12px 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  margin-top: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.back-btn:hover {
  background: rgba(160, 60, 255, 1);
  transform: scale(1.05);
}

/* Scrollbar for instructions */
.instructions-overlay::-webkit-scrollbar {
  width: 10px;
}

.instructions-overlay::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.instructions-overlay::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #8B00FF, #FF1493);
  border-radius: 10px;
}

.instructions-overlay::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #FF1493, #FFD700);
}

/* Settings Menu */
#settingsMenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2500;
  backdrop-filter: blur(10px);
}

#settingsMenu.hidden {
  display: none;
}

.settings-overlay {
  background: linear-gradient(135deg, rgba(75, 0, 130, 0.95), rgba(138, 43, 226, 0.95));
  border: 4px solid rgba(255, 215, 0, 0.6);
  border-radius: 30px;
  padding: 40px;
  min-width: 400px;
  box-shadow: 0 0 50px rgba(138, 43, 226, 0.8);
  animation: slideUp 0.3s ease-out;
}

.settings-title {
  font-size: 42px;
  font-weight: bold;
  color: #FFD700;
  text-align: center;
  text-shadow: 0 0 30px rgba(255, 215, 0, 1);
  letter-spacing: 4px;
  margin-bottom: 30px;
}

.settings-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.setting-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  padding: 15px 20px;
  border-radius: 15px;
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.setting-label {
  color: white;
  font-size: 18px;
  font-weight: bold;
}

.toggle-btn {
  background: linear-gradient(135deg, #00FF00, #00CC00);
  color: white;
  border: 2px solid white;
  padding: 8px 25px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  min-width: 80px;
}

.toggle-btn.off {
  background: linear-gradient(135deg, #FF0000, #CC0000);
}

.toggle-btn:hover {
  transform: scale(1.05);
}

.settings-divider {
  height: 2px;
  background: rgba(255, 215, 0, 0.3);
  margin: 10px 0;
}

.settings-btn {
  background: linear-gradient(135deg, #8B00FF, #6B00CC);
  color: white;
  border: 3px solid rgba(255, 255, 255, 0.4);
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.settings-btn:hover {
  background: linear-gradient(135deg, #FF1493, #FF69B4);
  transform: scale(1.05);
}

.settings-btn.danger {
  background: linear-gradient(135deg, #FF4444, #CC0000);
}

.settings-btn.danger:hover {
  background: linear-gradient(135deg, #FF6666, #FF0000);
}

.btn-icon {
  font-size: 20px;
}


.settings-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(138, 43, 226, 0.9);
  color: white;
  border: 3px solid rgba(255, 255, 255, 0.4);
  padding: 12px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 150;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.settings-toggle:hover {
  background: rgba(160, 60, 255, 1);
  transform: scale(1.1) rotate(90deg);
}


#game {
  width: 100vw;
  height: 100vh;
  background-image: url("assets/main.png");
  background-repeat: repeat-x;
  background-position: 0px center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}


/* Game UI */
#gameUI {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  z-index: 100;
}

.ui-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.score-item {
  background: rgba(0, 0, 0, 0.6);
  padding: 8px 15px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-weight: bold;
  font-size: 16px;
  border: 2px solid rgba(255, 215, 0, 0.5);
}

.coin-icon-img {
  width: 30px;
  height: 30px;
}

.label {
  font-size: 11px;
  color: #ccc;
  margin-left: 5px;
}

#lives {
  display: flex;
  gap: 5px;
  margin-top: 5px;
}

.heart {
  width: 35px;
  height: 35px;
  filter: drop-shadow(0 0 3px rgba(255, 0, 0, 0.8));
}

.heart.lost {
  opacity: 0.3;
  filter: grayscale(100%);
}

.ui-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

#timer {
  background: rgba(138, 43, 226, 0.8);
  color: white;
  padding: 10px 30px;
  border-radius: 30px;
  font-size: 24px;
  font-weight: bold;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

#combo {
  background: linear-gradient(135deg, #FF1493, #FF69B4);
  color: white;
  padding: 8px 25px;
  border-radius: 25px;
  font-size: 20px;
  font-weight: bold;
  border: 3px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 15px rgba(255, 20, 147, 0.6);
  transition: transform 0.2s;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.ui-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-right: 70px;
}

.ability-status {
  background: rgba(0, 0, 0, 0.7);
  padding: 8px 15px;
  border-radius: 20px;
  color: white;
  font-weight: bold;
  font-size: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  min-width: 120px;
}

#dashCooldown {
  color: #00FFFF;
  font-size: 16px;
}

#shieldStatus {
  color: #888;
  font-size: 14px;
}

/* Ninja */
#ninja {
  position: absolute;
  bottom: 0px;
  left: 100px;
  width: 200px;
  height: auto;
  z-index: 10;
  transition: transform 0.1s;
}

#ninja.hit {
  animation: hitFlash 0.5s;
}

#ninja.dashing {
  animation: dashEffect 0.3s;
  filter: drop-shadow(0 0 20px #00FFFF) drop-shadow(0 0 40px #00FFFF);
}

@keyframes dashEffect {
  0%, 100% { 
    transform: scaleX(1);
  }
  50% { 
    transform: scaleX(1.2);
  }
}

#ninja.shielded {
  animation: shieldPulse 1s infinite;
  filter: drop-shadow(0 0 15px #00FF00) drop-shadow(0 0 30px #00FF00);
}

@keyframes shieldPulse {
  0%, 100% { 
    filter: drop-shadow(0 0 15px #00FF00) drop-shadow(0 0 30px #00FF00);
  }
  50% { 
    filter: drop-shadow(0 0 25px #00FF00) drop-shadow(0 0 50px #00FF00);
  }
}

#ninja.multishot {
  filter: drop-shadow(0 0 15px #FFD700) drop-shadow(0 0 30px #FFD700);
}

@keyframes hitFlash {
  0%, 100% { opacity: 1; }
  25%, 75% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Monster */
.monster {
  position: absolute;
  bottom: 20px;
  width: 120px;
  height: auto;
  z-index: 9;
  animation: monsterFloat 2s ease-in-out infinite;
}

.monster.flying {
  bottom: 200px;
  width: 100px;
}

.monster.speed {
  filter: drop-shadow(0 0 10px #FF0000);
}

@keyframes monsterFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Coins */
.coin {
  position: absolute;
  width: 50px;
  height: 50px;
  z-index: 8;
  animation: coinFloat 2s ease-in-out infinite;
}

.coin img {
  width: 100%;
  height: 100%;
  animation: coinSpin 2s linear infinite;
}

@keyframes coinSpin {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}

@keyframes coinFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

.coin.collected {
  animation: collectCoin 0.5s forwards;
}

@keyframes collectCoin {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2) translateY(-50px);
    opacity: 0;
  }
}

/* Powerups */
.powerup {
  position: absolute;
  width: 60px;
  height: 60px;
  z-index: 8;
  animation: powerupFloat 1.5s ease-in-out infinite;
}

.powerup-icon {
  font-size: 40px;
  animation: powerupRotate 3s linear infinite;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

@keyframes powerupFloat {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-20px) scale(1.1); }
}

@keyframes powerupRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Particle System */
.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  z-index: 50;
  pointer-events: none;
  box-shadow: 0 0 10px currentColor;
}

/* Game Over */
#gameOver {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("assets/main.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

#gameOver::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

#gameOver.hidden {
  display: none;
}

.game-over-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 700px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.game-over-title {
  color: #FFD700;
  font-size: 48px;
  margin-bottom: 15px;
  text-shadow: 0 0 30px rgba(255, 215, 0, 1), 0 0 10px rgba(255, 215, 0, 0.8);
  letter-spacing: 4px;
  font-weight: bold;
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% { text-shadow: 0 0 30px rgba(255, 215, 0, 1), 0 0 10px rgba(255, 215, 0, 0.8); }
  50% { text-shadow: 0 0 50px rgba(255, 215, 0, 1), 0 0 30px rgba(255, 215, 0, 1); }
}

.game-over-monster-top {
  position: absolute;
  top: -30px;
  right: 5%;
  animation: floatMonster 3s ease-in-out infinite;
}

.game-over-monster-top img {
  width: 70px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(255, 0, 100, 0.6));
}

@keyframes floatMonster {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.stats-box {
  background: rgba(75, 0, 130, 0.85);
  border: 4px solid rgba(138, 43, 226, 0.8);
  border-radius: 20px;
  padding: 20px 40px;
  margin: 15px auto;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 0 40px rgba(138, 43, 226, 0.8), inset 0 0 30px rgba(138, 43, 226, 0.2);
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 3px solid rgba(138, 43, 226, 0.4);
}

.stat-row:last-child {
  border-bottom: none;
}

.stat-label {
  color: #ffffff;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 2px;
}

.stat-value {
  color: #FFD700;
  font-size: 28px;
  font-weight: bold;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.9);
}

.game-over-ground {
  position: relative;
  width: 100%;
  height: 150px;
  margin: 20px 0 15px 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
}

#gameOverNinja {
  width: 140px;
  height: auto;
  position: relative;
  bottom: 0;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.5));
  animation: ninjaIdle 1s ease-in-out infinite;
}

@keyframes ninjaIdle {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

.game-over-monsters {
  display: flex;
  gap: 20px;
  align-items: flex-end;
}

.ground-monster {
  width: 80px;
  height: auto;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.5));
  animation: monsterFloat 2s ease-in-out infinite;
}

.ground-monster:nth-child(2) {
  animation-delay: 0.5s;
}

.button-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 15px;
}

.game-btn {
  padding: 15px 45px;
  border-radius: 35px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 3px solid;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.play-btn {
  background: linear-gradient(135deg, #8B00FF, #6B00CC);
  color: white;
  border-color: rgba(255, 255, 255, 0.6);
}

.play-btn:hover {
  background: linear-gradient(135deg, #FF1493, #FF69B4);
  transform: scale(1.1);
  box-shadow: 0 10px 35px rgba(255, 20, 147, 0.7);
}

.quit-btn {
  background: linear-gradient(135deg, #8B00FF, #6B00CC);
  color: white;
  border-color: rgba(255, 255, 255, 0.6);
}

.quit-btn:hover {
  background: linear-gradient(135deg, #FF1493, #FF69B4);
  transform: scale(1.1);
  box-shadow: 0 10px 35px rgba(255, 20, 147, 0.7);
}

/* Ninja Attack */
.weapon {
  position: absolute;
  width: 40px;
  height: 40px;
  z-index: 20;
}

.weapon img {
  width: 100%;
  height: 100%;
  animation: spin 0.3s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

#ninja, .monster {
  pointer-events: none;
}

#ninja {
  transform-origin: center;
  transition: transform 0.1s linear;
}