@charset "utf-8";

.thumbnail {
  float: left;
  width: 200px;
  cursor: pointer;
  border: 2px solid #00ffff;
  border-radius: 8px;
  box-shadow: 0 0 10px #00ffff;
  margin: 0 20px 20px 0;
}

.popup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,80,0.9);
  z-index: 9999;
}

.popup-content {
  position: relative;
  width: 80%;
  max-width: 1000px;
  margin: 50px auto;
}

.popup-image {
  width: 100%;
  display: block;
  border-radius: 8px;
}

.close {
  position: absolute;
  top: 20px; right: 40px;
  font-size: 2rem;
  color: #00ffff;
  cursor: pointer;
}

.hover-zone {
  position: absolute;
  top: 40%; left: 20%;
  width: 100px; height: 100px;
  border-bottom-width: 5px;
  cursor: pointer;
}

.tooltip {
  position: absolute;
  bottom: 110%;
  left: 0;
  background-color: rgba(0,0,0,0.8);
  color: #00ffff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.hover-zone:hover .tooltip {
  opacity: 1;
}

#lysara-hover {
  position: absolute;
  top: 46%;
  left: 54.5%;
  width: 30px;
  height: 30px;
}

#sol-hover {
  position: absolute;
  top: 27%;
  left: 67%;
  width: 30px;
  height: 30px;
}

#k9x-hover {
  position: absolute;
  top: 42%;
  left: 78%;
  width: 30px;
  height: 30px;
}

#nereida-hover {
  position: absolute;
  top: 20.6%;
  left: 46.3%;
  width: 30px;
  height: 30px;
}

#virex-hover {
  position: absolute;
  top: 24.5%;
  left: 53.4%;
  width: 30px;
  height: 30px;
}

#dravon-hover {
  position: absolute;
  top: 25.5%;
  left: 31.1%;
  width: 30px;
  height: 30px;
}

#andros-hover {
  position: absolute;
  top: 38%;
  left: 24.5%;
  width: 30px;
  height: 30px;
}

#nyx-hover {
  position: absolute;
  top: 37.5%;
  left: 45.3%;
  width: 30px;
  height: 30px;
}

#solari-hover {
  position: absolute;
  top: 73%;
  left: 35.5%;
  width: 30px;
  height: 30px;
}




/* Zusätzliche Info unten links */
.corner-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: rgba(0,0,0,0.8);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  max-width: 300px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* Sichtbar machen beim Hover */
#lysara-hover:hover ~ #corner-lysara {
  opacity: 1;
}

#sol-hover:hover ~ #corner-sol {
  opacity: 1;
}

#k9x-hover:hover ~ #corner-k9x {
  opacity: 1;
}

#nereida-hover:hover ~ #corner-nereida {
  opacity: 1;
}

#virex-hover:hover ~ #corner-virex {
  opacity: 1;
}

#dravon-hover:hover ~ #corner-dravon {
  opacity: 1;
}

#andros-hover:hover ~ #corner-andros {
  opacity: 1;
}

#nyx-hover:hover ~ #corner-nyx {
  opacity: 1;
}

#solari-hover:hover ~ #corner-solari {
  opacity: 1;
}


