body {
  font-family: "Courier New", Courier, monospace;
  text-align: center;
  margin: 0;
  padding: 1rem 1rem;
  background-color: black;
  background-image: url('../images/background.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  box-sizing: border-box;
}







.title-image {
  width: 30vw;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 5px magenta);
}

a:hover .title-image {
  filter: drop-shadow(0 0 20px magenta);
}







.grid-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 600px;
  margin: 2rem auto;
  padding: 1rem;
  box-sizing: border-box;
}

.grid-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid white;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 5px magenta);
}

.grid-links a:hover .grid-image {
  filter: drop-shadow(0 0 20px magenta);
}







.links {
  margin-top: 2rem;
}

.links a {
  margin: 0 10px;
  text-decoration: none;
  color: white;
  font-size: 2vw;
  display: inline-block;
}

.links a:hover {
  filter: drop-shadow(0 0 5px magenta);
}







.photo-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
}

.photo-gallery img {
   width: 80vw;
  max-width: 300px;
  height: auto;
  border: 2px solid white;
  border-radius: 8px;
  filter: drop-shadow(0 0 5px magenta);
}

.photo-gallery img:hover {
  filter: drop-shadow(0 0 10px magenta);
}








.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  box-shadow: 0 0 25px magenta;
  border: 3px solid magenta;
  border-radius: 10px;
  transition: transform 0.2s;
}

.lightbox img:hover {
  transform: scale(1.02);
}













audio {
  width: 90vw;
  max-width: 600px;
  margin: 1rem auto;
  display: block;
  background-color: transparent;

  filter: drop-shadow(0 0 5px magenta);
  color: white;
}

.audio-player {
  margin-top: 20px;
  text-align: center;
}

audio::-webkit-media-controls-panel {
  background-color: rgba(0, 0, 0, 0.3);
  filter: drop-shadow(0 0 3px black);
  border-radius: 6px;
}

audio::-webkit-media-controls-play-button:hover {
  filter: drop-shadow(0 0 2px white);
}











.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
  padding: 0.5rem;
}

.video-container video {
  width: 80vw;
  max-width: 300px;
  height: auto;
  border: 2px solid white;
  border-radius: 8px;
  box-shadow: 0 0 10px magenta;
  object-fit: contain;
}













#click-counter {
  margin-top: 2rem;
  text-align: center;
}

#click-button {
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
  color: white;
  background-color: black;
  border: 2px solid magenta;
  border-radius: 6px;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

#click-button:hover {
  box-shadow: 0 0 10px magenta;
}









.note-box {
  margin-top: 30px;
  padding: 15px 20px;
  background: transparent;
  color: white;
  border-radius: 10px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  text-align: center;
}











.game-button-wrapper {
  text-align: center;
  margin: 40px 0;
}

.game-button {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid magenta;
  border-radius: 30px;
  color: magenta;
  text-decoration: none;
  font-size: 1.3rem;
  font-family: inherit;
  background-color: transparent;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 12px magenta;
}

.game-button:hover {
  background-color: magenta;
  color: black;
  box-shadow: 0 0 16px magenta, 0 0 24px magenta;
}










@media (max-width: 600px) {
  .title-image {
    width: 70vw;
    max-width: none;
  }

  .links a {
    font-size: 4vw;
  }
}


