body {
  margin: 0;
  padding: 0;
  font-family: 'Trebuchet MS', sans-serif;
  background: linear-gradient(to bottom, #1a0a0a 0%, #330000 50%, #1a0a0a 100%), url('volcano-bg.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: #ffe9d6;
  text-shadow: 1px 1px 3px #000;
  min-height: 100vh;
  padding: 60px 20px 100px;
  animation: lavaFadeIn 2s ease-in-out;
}

@keyframes lavaFadeIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

h1 {
  font-size: 56px;
  color: #ff5722;
  text-align: center;
  text-shadow: 0 0 10px #ff3d00, 0 0 30px #ff9800;
  animation: fireGlow 3s infinite alternate;
  margin-bottom: 30px;
}

@keyframes fireGlow {
  0% {
    text-shadow: 0 0 5px #ff5722, 0 0 15px #ff9800;
  }
  100% {
    text-shadow: 0 0 15px #ff3d00, 0 0 35px #ff6f00;
  }
}

h2 {
  font-size: 22px;
  background: rgba(20, 10, 0, 0.7);
  padding: 16px 24px;
  border-radius: 15px;
  border: 2px solid #ff6f00;
  box-shadow: 0 0 18px rgba(255, 85, 0, 0.5);
  text-align: center;
  max-width: 850px;
  margin: 25px auto;
  line-height: 1.6;
}

.q {
  color: #ffccbc;
  font-size: 28px;
  border: 3px solid #3e1a1a;
  border-radius: 12px;
  margin-top: 60px;
  padding: 12px;
  background: #4e1a1a;
  box-shadow: 0 0 10px #ff3d00;
}

.img-row {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 30px 0;
}

img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  border: 3px solid #ff5722;
  box-shadow: 0 0 16px rgba(255, 87, 34, 0.7);
  transition: transform 0.4s ease;
}

img:hover {
  transform: scale(1.07);
}

.map-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #b71c1c;
  color: #fff3e0;
  padding: 14px 22px;
  font-size: 18px;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 0 18px rgba(255, 87, 34, 0.8);
  border: 2px solid #ff6f00;
  transition: all 0.3s ease;
  animation: flamePulse 2.2s infinite ease-in-out;
  z-index: 10;
}

.map-btn:hover {
  background-color: #d84315;
  box-shadow: 0 0 28px rgba(255, 111, 0, 1);
  transform: scale(1.05);
}

@keyframes flamePulse {
  0%, 100% {
    box-shadow: 0 0 15px rgba(255, 87, 34, 0.8);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 111, 0, 1);
    transform: scale(1.05);
  }
}
.boss-btn {
  position: fixed;
  bottom: 80px;
  right: 6px;
  transform: translateX(50%);
  background-color: #ff3d00;
  color: #fff3e0;
  padding: 16px 30px;
  font-size: 22px;
  font-weight: bold;
  border-radius: 14px;
  text-decoration: none;
  border: 2px solid #ff6f00;
  box-shadow: 0 0 25px rgba(255, 87, 34, 0.8);
  animation: bossPulse 1.8s infinite ease-in-out;
  transition: transform 0.3s ease;
  z-index: 999;
}

.boss-btn:hover {
  background-color: #d84315;
  transform: translateX(50%) scale(1.08);
  box-shadow: 0 0 35px rgba(255, 111, 0, 1);
}


@keyframes bossPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 18px rgba(255, 87, 34, 0.8);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 140, 0, 1);
  }
}
