@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;700&display=swap');

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Unbounded', sans-serif;
  color: #fff;
  background-color: #000;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  background-image: url('aria_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: sans-serif;
  color: white;
}
.overlay {
  background-color: rgba(0, 0, 0, 0.65);
  padding: 4em 2em;
  text-align: center;
  height: 100%;
  overflow-y: auto;
}

h1 {
  font-size: 3em;
  text-shadow: 0 0 15px #ffccff;
  margin-bottom: 0.5em;
}

.intro {
  font-size: 1.2em;
  max-width: 750px;
  margin: 0 auto 2em auto;
  line-height: 1.7;
  color: #fbefff;
}

.books {
  display: flex;
  justify-content: center;
  gap: 2em;
  margin-bottom: 2em;
}

.book {
  padding: 1em 2em;
  background-color: transparent;
  color: #ffccff;
  border: 2px solid #ffccff;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 0 0 10px #ffccff;
  transition: 0.3s ease;
}

.book:hover {
  background-color: #ffccff;
  color: #000;
  box-shadow: 0 0 20px #ffccff;
}

.book-section {
  max-width: 800px;
  margin: 3em auto;
  padding: 2em;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid #ffccff;
  box-shadow: 0 0 20px #ffccff;
  color: #fbefff;
  line-height: 1.7;
  text-align: left;
}

.book-section.hidden {
  display: none;
}

.book-section h2 {
  font-size: 2em;
  text-shadow: 0 0 8px #ffccff;
  margin-bottom: 1em;
}

#whisper-glyph {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 1.8em;
  color: #ffaaee;
  cursor: pointer;
  animation: pulse 2s infinite;
  z-index: 10;
}

#whisper-box {
  position: fixed;
  bottom: 60px;
  right: 20px;
  background: rgba(0, 0, 0, 0.85);
  color: #fbefff;
  padding: 1em;
  border: 1px solid #ffaaee;
  font-family: 'Unbounded', sans-serif;
  font-size: 0.95em;
  width: 220px;
  box-shadow: 0 0 10px #ffaaee;
  border-radius: 6px;
  z-index: 10;
}

.hidden {
  display: none;
}

@keyframes pulse {
  0% { opacity: 0.4; }
  50% { opacity: 1; }
  100% { opacity: 0.4; }
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  margin: 2em auto;
  max-width: 800px;
  border: 2px solid crimson;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.3);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.forge-icon {
  position: absolute;
  top: 1.5em;
  right: 2em;
  z-index: 9999;
}

.forge-icon img {
  width: 160px;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

.forge-icon img:hover {
  transform: scale(1.05);
}