/* 🌟 General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 🌿 Body and Background Styles */
body {
  font-family: 'Cinzel Decorative', cursive, serif;
  background: radial-gradient(circle, rgba(5, 0, 0, 0.8) 50%, rgba(16, 14, 25, 1) 100%);
  color: #f4e8d4;
  text-align: center;
  padding: 2rem;
  overflow-x: hidden;
}

/* 🌸 Header */
header {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}

header h1 {
  font-size: 2.5rem;
  color: #bb9eff;
  text-shadow: 0 0 15px #734cff, 0 0 30px #bb9eff;
}

/* 🌠 Glowing Button */
.glowing-button {
  padding: 1rem 2rem;
  background: #6e00ff;
  border-radius: 12px;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px #bb9eff, 0 0 30px #734cff;
}

.glowing-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #bb9eff, 0 0 50px #734cff;
}

/* 🌟 Hero Section */
.hero {
  background: rgba(0, 0, 0, 0.4);
  padding: 5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 0 30px #734cff, 0 0 50px #734cff;
}

.hero h1 {
  font-size: 3rem;
  color: #f4e8d4;
  text-shadow: 0 0 15px #734cff, 0 0 30px #bb9eff;
}

.hero p {
  font-size: 1.5rem;
  color: #f4e8d4;
}

/* 🌍 Image Grid (Realm Links) */
.image-grid {
  display: flex;
  justify-content: space-around;
  margin-top: 4rem;
  gap: 2rem;
}

.realm-link {
  position: relative;
  display: inline-block;
  transition: transform 0.5s ease-in-out;
  overflow: hidden;
}

.realm-link img {
  width: 100%;
  max-width: 200px;
  border-radius: 12px;
  transition: transform 0.3s ease-in-out;
}

.realm-link:hover img {
  transform: scale(1.1);  /* Zoom in the image */
}

.realm-link:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #734cff, 0 0 30px #bb9eff;
}

/* 🌊 Realm Page Styles (Individual Realm Page) */
.realm-page {
  background: radial-gradient(circle, rgba(5, 0, 0, 0.8) 50%, rgba(16, 14, 25, 1) 100%);
  height: 100vh;
  color: #f4e8d4;
  text-align: center;
  padding: 2rem;
}

.realm-page h1 {
  font-size: 2.5rem;
  font-family: 'Cinzel Decorative', cursive;
}

.realm-page .realm-description {
  background: rgba(0, 0, 0, 0.7);
  padding: 2rem;
  border-radius: 15px;
  margin-top: 2rem;
  font-size: 1.5rem;
  box-shadow: 0 0 15px #bb9eff;
}

.realm-page .enter-realm {
  background: #6e00ff;
  padding: 1rem 2rem;
  border-radius: 12px;
  color: #fff;
  margin-top: 2rem;
  cursor: pointer;
  font-size: 1.2rem;
  box-shadow: 0 0 10px #bb9eff;
  transition: all 0.3s ease;
}

.realm-page .enter-realm:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #c59cff, 0 0 30px #734cff;
}

/* 🌍 Realm Selection */
.realm-selection {
  margin-top: 3rem;
  background: rgba(0, 0, 0, 0.7);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 0 20px #734cff;
}

.realm-selection h2 {
  font-size: 2rem;
  color: #f4e8d4;
  margin-bottom: 2rem;
  font-family: 'Cinzel Decorative', cursive;
}

.realm-option {
  display: inline-block;
  margin: 0 2rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.realm-option img {
  width: 250px;
  height: auto;
  border-radius: 15px;
  transition: transform 0.3s ease;
  box-shadow: 0 0 10px #734cff, 0 0 20px #bb9eff;
}

.realm-option:hover img {
  transform: scale(1.05);  /* Zoom in on hover */
}

.realm-option:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px #734cff, 0 0 30px #bb9eff;
}

.realm-option h3 {
  color: #bb9eff;
  font-size: 1.5rem;
  margin-top: 10px;
  text-shadow: 0 0 10px #734cff, 0 0 20px #bb9eff;
}

/* 🌙 Hidden Content and Secrets */
.secret-scroll {
  position: relative;
  width: 200px;
  margin: 20px auto;
  background-color: #5d4b8e;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 0 15px #734cff, 0 0 30px #bb9eff;
  cursor: pointer;
  text-align: center;
  font-size: 1.2rem;
  color: #fff;
  font-family: 'Cinzel Decorative', cursive;
  transition: all 0.3s ease;
}

.secret-scroll:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px #734cff, 0 0 50px #bb9eff;
}

.secret-scroll:active {
  animation: scrollReveal 1s ease-in-out forwards;
}

@keyframes scrollReveal {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 🌷 Footer */
.footer {
  background-color: rgba(0, 0, 0, 0.7);
  color: #f4e8d4;
  padding: 1rem;
  text-align: center;
  margin-top: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 15px #734cff, 0 0 30px #bb9eff;
}

.footer p {
  font-size: 1.2rem;
}

/* 🌿 Interview Ritual Form */
#ritual-form {
  background: rgba(0, 0, 0, 0.7);
  padding: 2rem;
  border-radius: 15px;
  margin: 3rem auto;
  width: 80%;
  max-width: 600px;
  box-shadow: 0 0 15px #bb9eff;
}

#ritual-form input,
#ritual-form textarea {
  width: 100%;
  padding: 0.8rem;
  margin: 10px 0;
  border-radius: 10px;
  border: 2px solid #734cff;
  background-color: #2a1e3f;
  color: #f4e8d4;
  font-size: 1.2rem;
}

#ritual-form button {
  background: #6e00ff;
  padding: 1rem 2rem;
  border-radius: 12px;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px #bb9eff;
}

#ritual-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #bb9eff, 0 0 50px
