body {
  margin: 0;
  padding: 0;
  background: url('images/stars.gif') repeat;
  background-color: black;
  font-family: 'Courier New', monospace;
  color: #eee;
  overflow-x: hidden;
}

.wrapper {
  position: relative;
  max-width: 700px;
  margin: 40px auto;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.map-img {
  width: 100%;
  height: auto;
  display: block;
}

.link {
  position: absolute;
  display: block;
  background: transparent;
  box-shadow: 0 0 20px 4px rgba(0, 255, 0, 0.3);
  animation: flicker 3s ease-in-out infinite;
  z-index: 2;
}

.project1 {
  top:    20%;
  left:   10%;
  width:  120px;
  height: 120px;
}

.project2 {
  top:    20%;
  left:   40%;
  width:  120px;
  height: 120px;
}

.project3 {
  top:    20%;
  left:   70%;
  width:  120px;
  height: 120px;
}

.project4 {
  top:    50%;
  left:   10%;
  width:  120px;
  height: 120px;
}

.project5 {
  top:    50%;
  left:   65%;
  width:  120px;
  height: 120px;
}


.hotspot-img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.link:hover .hotspot-img {
  opacity: 1;
  transform: scale(1.05) rotate(-2deg);
}

.hotspot-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: red;
  font-size: 22px;
  font-family: 'Courier New', monospace;
  text-shadow: 0 0 8px red, 0 0 12px red;
  pointer-events: none;
  z-index: 3;
  animation: blink 1s infinite alternate;
}

@keyframes blink {
  0% {
    opacity: 1;
    text-shadow: 0 0 6px red, 0 0 12px red;
  }
  100% {
    opacity: 0.3;
    text-shadow: 0 0 2px darkred;
  }
}

@keyframes flicker {
  0%, 100% {
    box-shadow: 0 0 12px 2px rgba(0, 255, 0, 0.2);
  }
  50% {
    box-shadow: 0 0 28px 8px rgba(0, 255, 0, 0.5);
  }
}

.shop-intro {
  max-width: 600px;
  margin: 60px auto;
  padding: 20px;
  color: #ccc;
  text-align: center;
  border-top: 1px solid #333;
}
.gallery-intro {
  text-align: center;
  padding: 60px 20px 20px;
  color: #f2f2f2;
  font-family: 'Courier New', monospace;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255, 0, 0, 0.05),
    rgba(255, 0, 0, 0.05) 10px,
    rgba(0, 255, 0, 0.05) 10px,
    rgba(0, 255, 0, 0.05) 20px
  );
  border-top: 1px solid #444;
  border-bottom: 1px solid #444;
  margin-bottom: 40px;
  animation: glitchbg 5s linear infinite;
}

.gallery-intro h2 {
  font-family: 'UnifrakturCook', cursive;
  font-size: 3em;
  color: #ff0055;
  text-shadow: 0 0 5px lime, 0 0 10px cyan, 2px 2px 0 #000;
  animation: glitchText 1s infinite alternate-reverse;
}

.gallery-intro p {
  font-size: 1.2em;
  line-height: 1.8;
  color: #ddd;
  text-shadow: 0 0 2px red;
}

@keyframes glitchText {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(2px, -1px); }
  60% { transform: translate(-1px, 2px); }
  80% { transform: translate(2px, 1px); }
  100% { transform: translate(0, 0); }
}

@keyframes glitchbg {
  0% { background-position: 0 0; }
  100% { background-position: 100px 100px; }
}
@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
    filter: drop-shadow(0 0 4px lime);
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
    filter: drop-shadow(0 0 10px lime);
  }
}

.hotspot-img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.6;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  animation: pulseGlow 2.5s ease-in-out infinite;
}
.home-link {
  text-align: center;
  margin: 40px 0;
}

.home-link a {
  font-family: 'Courier New', monospace;
  font-size: 1.2em;
  color: #0f0;
  text-decoration: none;
  padding: 10px 20px;
  border: 1px dashed #0f0;
  border-radius: 5px;
  text-shadow: 0 0 6px lime;
  transition: all 0.3s ease;
  animation: glowHome 2s infinite alternate;
}

.home-link a:hover {
  color: black;
  background-color: #0f0;
  text-shadow: none;
}

@keyframes glowHome {
  0% {
    box-shadow: 0 0 8px #0f0;
  }
  100% {
    box-shadow: 0 0 20px #0f0, 0 0 30px lime;
  }
}

