/* style.css */
body {
  margin: 0;
  padding: 0;
  background-color: black;
  color: #ffffff;
  font-family: 'Georgia', serif;
  text-align: center;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

h1 {
  color: #ff2e2e;
  font-size: 48px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

h2 {
  color: #ff2e2e;
  font-size: 40px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.text-block {
  font-size: 22px;
  line-height: 1.5;
  color: #ffffff;
  white-space: pre-line;
  text-align: center;
}

.ending-image {
  margin-top: 40px;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 46, 46, 0.3);
}

.japanese-quote {
  color: red;
  text-align: center;
  font-size: 20px;
  margin-top: 30px;
  line-height: 1.8;
  font-family: "Yu Gothic", "Meiryo", sans-serif;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.mystery-link {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
}

.mystery-link a {
  color: darkred;
  font-size: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.mystery-link a:hover {
  color: white;
  text-shadow: 0 0 10px red;
  cursor: pointer;
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  cursor: pointer;
}

.popup img {
  max-width: 150vw;
  max-height: 150vh;
  object-fit: contain;
  border: 4px solid darkred;
  box-shadow: 0 0 30px red;
  transition: transform 0.4s ease;
}

.popup img:hover {
  transform: scale(1.02);
}


.small-creepy-image {
  width: 1200px;
  height: 300px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 0 15px #700000;
}

.audio-player {
  margin-top: 30px;
  text-align: center;
}

.audio-label {
  font-size: 18px;
  color: #cc0000;
  margin-bottom: 10px;
  font-style: italic;
}

audio {
  width: 100%;
  max-width: 400px;
  filter: grayscale(100%) brightness(80%);
  border: 2px solid #cc0000;
  background-color: #1a1a1a;
  border-radius: 5px;
}
