:root{
  --font-great-vibes: 'Great Vibes', cursive;
  --font-lobster: 'Lobster', cursive;
  --font-kelly-ann-gothic: 'Kelly Ann Gothic', sans-serif;
  --font-beyond-wonderland: 'Beyond Wonderland', times new roman;
  --font-medieval-sharp: 'MedievalSharp', cursive;
  --font-alien-league: 'Alien League', sans-serif;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}

body, html {
    height: 100%; width: 100%;
    color: rgb(255, 255, 255);
    scroll-behavior: smooth;
    overflow: hidden;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
    overflow-x: hidden;
    transition: all 2s ease-in-out;
}

::-webkit-scrollbar {display: none;}

a{color: orange; text-decoration: none; transition: all 0.3s ease-in-out;}

.bg 
{
    width: 100%; height: 100%; background-color: black;
    background: url("https://c4.wallpaperflare.com/wallpaper/937/959/751/background-black-dark-black-curved-bloom-abstract-fantasy-hd-art-wallpaper-preview.jpg");
    background-position: center;
    background-size: cover;
}

#welcome
{
  width: 100dvw; height: 100dvh;   width: 100vw; height: 100vh;     
  backdrop-filter: blur(5px) brightness(0.95);
  position: fixed;
  transition: all 0.5s;
}

#parallax {
    animation: float 6s ease-in-out infinite;
    position: relative;
    width: 100dvw;
    height: 100dvh;
    width: 100vw;
    height: 100vh;
    background-image: url(https://raw.githubusercontent.com/oscicen/oscicen.github.io/master/img/depth-3.png), url(https://raw.githubusercontent.com/oscicen/oscicen.github.io/master/img/depth-2.png), url(Assets/M_icon.ico);
    background-repeat: no-repeat;
    background-position: center;
    background-position: 50% 50%;
    visibility: hidden; opacity: 0; transition: all 2s;
}

.Main{
  transition: all 2s;
  opacity: 0;
}

@keyframes float {
    0% {
      box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
      transform: translatey(0px);
    }
    50% {
      box-shadow: 0 25px 15px 0px rgba(0,0,0,0.2);
      transform: translatey(-20px);
    }
    100% {
      box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
      transform: translatey(0px);
    }
}

#hero{
    width: 100dvw;
    width: 100vw;
    height: 100dvh;
    height: 100vh;
    background-color:transparent;
    font-size:36px;
    position: relative;
}

#Board{
    position: relative;
    overflow: visible;
    backdrop-filter: blur(5px) brightness(0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 0 20px rgba(0, 0, 0, 1);
}

h1 {
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
    filter: drop-shadow(0px 0px 10px black);
    font-size: 70px;
    font-family: 'Colonna MT';
    margin: 0;
    padding: 0;
    font-family: var(--font-lobster);
}

#hero .hero-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translate(-50%, -50%);
    position: absolute;
    top: 47%;
    left: 50%;
}
#hero img {
    width: calc(100%);
    filter: drop-shadow(0px 0px 15px black);
}
#hero p{
    font-size: 1.5rem;
    text-align: center;
    color: white;
    font-family: var(--font-medieval-sharp);
    margin-bottom: 1rem;
    filter: drop-shadow(0px 0px 10px black);
}
button {
    background-color: transparent;
    color: white;
    border: 2px solid orange;
    padding: 10px 20px;
    font-size: 1.2rem;
    cursor: pointer;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}
button:hover {
    background-color: orange;
    color: black;
    border: 2px solid rgba(255, 165, 0, 0.8);
    padding: 10px 32px;
    box-shadow: 0 10px 10px rgba(255, 165, 0, 0.5);
}
button:active {
    transform: scale(0.95);
    box-shadow: 0 5px 10px rgba(255, 165, 0, 0.25);
}
button.active {
    background-color: orange;
    color: black;
    border: 2px solid rgba(255, 165, 0, 0.8);
}

@media screen and (max-width: 768px) {
  
    #parallax {
        animation: float 0s ease-in-out infinite;
    }
    #hero .hero-content {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        padding: 10px;
    }
    #hero img {
        width: calc(100% - 20px);
    }
    #hero p {
        font-size: 1rem;
        margin-top: 10px;
    }
    #hero .flex{
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        width: inherit;
        padding: 10px;
    }
    button {
        font-size: 1rem;
        padding: 8px 16px;
    }
        #hero .flex a, #hero .flex button, .book-buy-btn, .book-info {
            width: 100%;
            text-align: center;
        }
  
}

/* Navbar Styles */
.navbar {
  position: absolute;
  top: -50vh;
  left: 0;
  width: 100vw;
  padding: 0.5rem 0;
    backdrop-filter: blur(15px) brightness(0.95);
    background-color: #11111139;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 0 20px rgba(0, 0, 0, 1);
  z-index: 1000;
  transition: top 2.5s, opacity 0.5s, padding 0.3s;
  opacity: 0;
}
.navbar.active {
  top: 0;
  opacity: 1;
}

.navbar:hover{
  padding: .75rem 0;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 2rem;
}
.navbar-logo img {
  height: 48px;
  filter: drop-shadow(0 0 8px #000);
}
.navbar-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  transition: all 0.3s ease-in-out;
  padding: 0;
}
.navbar-links li a {
  color: #fff;
  font-family: var(--font-medieval-sharp);
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.2s;
}
.navbar-links li a:hover {
  color: orange;
}
.navbar-links li a.active {
  color: orange !important;
  border-bottom: 2px solid orange;
  transition: color 0.2s, border-bottom 0.2s;
}
.navbar-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.navbar-cta .navbar-buy {
  background: orange;
  color: #111;
  border: 2px solid orange;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 1rem;
}
.navbar-toggle {
  display: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  margin-left: 1rem;
}

/* Responsive Navbar */
@media (max-width: 900px) {
  .navbar-container {
    padding: 0.5rem 1rem;
  }
  .navbar-links {
    gap: 1rem;
  }
}
@media (max-width: 700px) {
  .navbar-links {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100vw;
    background: rgb(17, 17, 17);
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 0;
    margin-top: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    z-index: 1001;
    overflow: hidden;
    display: flex;
    height: 0;
    gap: 2.5rem;
    align-items: center;
    justify-content: center;
  }
  .navbar-links.open {
    height: calc(100vh - 60px);
    padding: 1rem;
  }

    .navbar-links li a{
    font-size: 2.5rem;
    }
  .navbar-toggle {
    display: block;
  }
  .navbar-cta {
    margin-right: 0.5rem;
  }
}

/* Footer Styles */
.footer {
  width: 100vw;
  color: #fff;
  padding: 2rem 0 1.5rem 0;
  font-family: var(--font-medieval-sharp);
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-logo img {
  height: 40px;
  filter: drop-shadow(0 0 8px #000);
}
.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: orange;
}
.footer-copy {
  font-size: 0.95rem;
  color: #bbb;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  flex-basis: 100%;
  text-align: center;
  padding-top: 1rem;
}
@media (max-width: 700px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
  }
  .footer-links {
    gap: 1rem;
  }
  .footer-logo img {
    height: 5rem;
  }
}

      .newsletter-section {
        position: relative;
        color: #fff;
        padding: 48px 0 40px 0;
        display: flex;
        justify-content: center;
      }
      .newsletter-container {
        max-width: calc(100% - 5rem);
        width: 100%;
        text-align: center;
        margin: auto;
        padding: 32px 24px;
      }
      .newsletter-container h2 {
        font-family: 'Lobster', 'Great Vibes', cursive;
        font-size: 2.1rem;
        margin-bottom: 10px;
        letter-spacing: 1px;
      }
      .newsletter-container p {
        font-size: 1.05rem;
        margin-bottom: 22px;
        color: #ccc;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      }
      .newsletter-form {
        display: flex;
        gap: 0;
        justify-content: center;
      }
      .newsletter-input {
        flex: 1;
        padding: 12px 14px;
        border: none;
        border-radius: 4px 0 0 4px;
        font-size: 1rem;
        outline: none;
        background: #232323;
        color: #fff;
      }
      .newsletter-btn {
        padding: 12px 22px;
        border: none;
        border-radius: 0 4px 4px 0;
        background: linear-gradient(90deg, #f1a738 0%, #da6019 100%);
        color: #fff;
        font-weight: bold;
        font-size: 1rem;
        cursor: pointer;
      }
      .newsletter-btn:hover {
        background: linear-gradient(90deg, #ffd28f 0%, orange 100%);
        padding: 12px 22px;
        border: 0;
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
      }
      .newsletter-success {
        margin-top: 18px;
        color: #b9935a;
        font-weight: bold;
        font-size: 1.1rem;
      }
      @media (max-width: 600px) {
        .newsletter-container {
          padding: 20px 8px;
        }
        .newsletter-section {
          padding: 32px 0 28px 0;
        }
      }

/* Book Covers Carousel */
.books-carousel-section {
  margin: 0 auto 2.5rem auto;
  padding: 2rem 0 1rem 0;
  text-align: center;
  position: relative;
  z-index: 2;
}
.carousel-header {
  font-family:var(--font-lobster);
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  color: orange;
  letter-spacing: 2px;
  text-shadow: 0 0 12px #000;
}
.books-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  overflow: hidden;
  position: relative;
  min-height: 450px;
  
  margin: 0 auto;
}
.books-carousel-section p{font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size: 1.2rem;}
.book-slide {
  padding: 1.5rem 1.2rem;
  min-width: 240px;
  max-width: 280px;
  opacity: 0.7;
  transform: scale(0.92);
  transition: all 0.5s;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  pointer-events: none;
}
.book-slide.active, .book-slide.highlight {
  opacity: 1;
  transform: scale(1.05) rotateY(-2deg);
  z-index: 2;
  pointer-events: auto;
}
.book-cover {
   width: 260px;
  height: 390px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 18px #000;
  background: #222;
  transition: all 0.3s;
}
.book-cover:hover{
  transform: scale(0.97);
  box-shadow: 0 4px 25px #000;
}

.book-info h3 {
  font-family: var(--font-medieval-sharp);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #fff;
}
.book-buy-btn {
  display: inline-block;
  background: orange;
}
.book-buy-btn.com{background: transparent; pointer-events: none;}
.carousel-controls {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.carousel-controls button {
  background: #232323;
  color: orange;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px #000;
}
.carousel-controls button:hover {
  background: orange;
  color: #232323;
  padding: 0;
  transform: scale(1.12);
}

/* Mystical Animated Background for Synopsis */
.mystical-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(255,255,255,0.08) 0%, rgba(0,0,0,0.0) 70%);
  opacity: 0.7;
  filter: blur(2px);
  animation: none;
}

/* Enhanced Synopsis Section */
#synopsis {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 16px;
  margin: 2.5rem auto 2rem auto;
  padding: 2.2rem 2rem 2rem 2rem;
}
#synopsis h1 {
  font-size: 5rem;
  color: orange;
  font-family: var(--font-beyond-wonderland), var(--font-lobster);
  margin-bottom: 3rem;
}
#synopsis p {
  color: #fff;
  font-family: var(--font-medieval-sharp);
  line-height: 2;
}
.mythic-highlight {
  color: #ffd28f;
  font-weight: bold;
  text-shadow: 0 0 8px orange, 0 0 2px #fff;
  background: linear-gradient(90deg, #f1a738 0%, #da6019 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: none;
}

/* Characters Section */
.characters-section {
  margin: 2.5rem auto 2.5rem auto;
  max-width: 1100px;
  text-align: center;
  z-index: 1;
  position: relative;
}
.characters-header {
  font-family: var(--font-lobster);
  font-size: 2.5rem;
  color: orange;
  margin-bottom: .5rem;
  text-shadow: 0 0 10px #000;
}
.characters-subtitle{
  font-family: var(--font-medieval-sharp);
  font-size: 1.2rem;
  color: #ffd28f;
  margin-bottom: 2.5rem;
}
.characters-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
}
.character-card {
  background: linear-gradient(135deg, #2323237d 70%, #513820 100%);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  padding: 1.5rem 1.2rem;
  padding-top: 1.2rem;
  width: 260px;
  min-width: 220px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.3s, border 0.3s;
  border: 2px solid #ffd28f33;
  position: relative;
  cursor: pointer;
}
.character-card:hover {
  box-shadow: 0 12px 36px 0 orange, 0 0 0 2px orange;
  border: 2px solid orange;
  transform: translateY(-8px) scale(1.04);
}
.character-frame {
  background: linear-gradient(135deg, #ffd28f 0%, #da6019 100%);
  border-radius: 20px;
  padding: 6px;
  margin-bottom: 1rem;
  box-shadow: 0 0 0 4px #fff2, 0 0 18px #ffd28f44;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  transition: all 0.3s;
  justify-content: center;
}
.character-card:hover .character-frame {
  transform: scale(0.97);
}
.character-portrait {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;    object-position: top;
  border: 3px solid #fff;
  box-shadow: 0 0px 50px #000 inset;
}
.character-info h3 {
  font-family: var(--font-medieval-sharp);
  font-size: 1.1rem;
  color: orange;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}
.character-info p {
  font-size: 1.1rem;
  color: #fff;
  font-family: var(--font-medieval-sharp);
}

.character-cta-btn{
  width: 100%;
  margin-top: 1rem;
}

/* Testimonials/Reviews Section */
.testimonials-section {
  margin: 6.5rem auto 2.5rem auto;
  max-width: 700px;
  text-align: center;
  z-index: 1;
  position: relative;
}
.testimonials-header {
  font-family: var(--font-lobster);
  font-size: 2.5rem;
  color: orange;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px #000;
}
.testimonials-subtitle {
  font-family: var(--font-medieval-sharp);
  font-size: 1.2rem;
  color: #ffd28f;
  margin-bottom: 2.5rem;
}
.testimonial-slide {
  background: rgba(30, 20, 10, 0.85);
  border-radius: 12px;
  box-shadow: 0 4px 18px #000;
  padding: 1.5rem 1.2rem;
  opacity: 0.7;
  transform: scale(0.92);
  transition: box-shadow 0.3s, opacity 0.3s, transform 0.3s;
  position: absolute;
  left: 50%;
  top: 0;
  width: 90%;
  max-width: 500px;
  margin-left: -45%;
  z-index: 1;
  pointer-events: none;
}
.testimonial-slide.active {
  opacity: 1;
  transform: scale(1.05) rotateY(-2deg);
  box-shadow: 0 12px 36px 0 orange, 0 0 0 2px orange;
  z-index: 2;
  pointer-events: auto;
}
.testimonial-author {
  display: block;
  margin-top: 0.7rem;
  color: #ffd28f;
  font-size: 1rem;
  font-family: var(--font-medieval-sharp);
}

/* Testimonials Marquee */
.testimonials-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  max-width: calc(100%);
  margin: 0 auto;
  min-height: 170px;
  background: none;
  padding-bottom: 2rem;
  padding-top: 1.5rem;
}
.testimonial-marquee-track {
  display: flex;
  width: max-content;
  gap: 2rem;
  animation: testimonial-marquee-scroll 32s linear infinite;
  will-change: transform;
}
.testimonial-marquee-card {
  flex: 0 0 340px;
  min-width: 270px;
  max-width: 340px;
  background: rgba(30, 20, 10, 0.85);
  border-radius: 14px;
  box-shadow: 0 4px 18px #000;
  padding: 1.5rem 1.2rem;
  opacity: 0.85;
  margin-bottom: 1rem;
  border: 2px solid #ffd28f22;
  position: relative;
  transition: box-shadow 0.3s, opacity 0.3s, transform 0.3s;
}
.testimonial-marquee-card:hover {
  opacity: 1;
  box-shadow: 0 12px 36px 0 orange, 0 0 0 2px orange;
  border: 2px solid orange;
  transform: scale(1.04) rotateY(-2deg);
}
.testimonial-marquee-card blockquote {
  font-size: 1.08rem;
  color: #fff;
  font-family: var(--font-medieval-sharp);
  text-align: center;
  margin: 0;
  padding: 0;
}
.test-cont{
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.05);
}
@keyframes testimonial-marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 900px) {
  .testimonial-marquee-card {
    min-width: 220px;
    max-width: 90vw;
    font-size: 0.95rem;
  }
}
@media (max-width: 700px) {
  .testimonial-marquee-card {
    min-width: 160px;
    padding: 1rem 0.5rem;
    font-size: 0.9rem;
  }
  .testimonials-marquee {
    min-height: 120px;
  }
}

/* Floating Glassmorphism Music Button */
.floating-music-btn {
  position: fixed;
  bottom: 2.2rem;
  right: 2.2rem;
  z-index: 9999;
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.01);;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  outline: none;
}
.floating-music-btn:hover {
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 700px) {
  .floating-music-btn {
    bottom: 1.1rem;
    right: 1.1rem;
    font-size: 1rem;
  }
}

/* Optionally hide the visible music section if still present */
.music-section { display: none !important; }
/* Author's Section - Immersive Cinematic Glassmorphism */
.author-section {
  margin: 3.5rem auto 3.5rem auto;
  max-width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.author-header {
  font-family: var(--font-lobster), var(--font-great-vibes);
  font-size: 2.5rem;
  color: orange;
  margin-bottom: 1.2rem;
  letter-spacing: 2px;
  text-shadow: 0 0 18px #000, 0 0 2px #ffd28f;
  position: relative;
  z-index: 2;
}
.author-bio {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
  position: relative;
  z-index: 2;
}
.author-photo-frame {
  background: linear-gradient(135deg, #ffd28f 0%, #da6019 100%);
  border-radius: 20px;
  padding: 7px;
  box-shadow: 0 0 0 6px #fff2, 0 0 24px #ffd28f44;
  width: 240px;
  height: 290px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  flex-shrink: 0;
}
.author-photo {
  width: 224px;
  height: 274px;
  border-radius: inherit;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 2px 18px #000;
}
.author-info {
  text-align: left;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 2px 12px #0002;
  border: 1.5px solid #ffd28f22;
  position: relative;
}
.author-info h3 {
  font-family: var(--font-medieval-sharp);
  font-size: 1.5rem;
  color: #ffd28f;
  margin-bottom: 0.6rem;
  text-shadow: 0 0 8px #000;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.author-info p {
  font-size: 1.08rem;
  color: #fff;
  font-family: var(--font-medieval-sharp);
  text-align: justify;
  margin-bottom: 1.1rem;
  line-height: 1.6;
  text-shadow: 0 0 6px #000a;
}
.author-links {
  display: flex;
  gap: 1.2rem;
  margin-top: 0.5rem;
}
.author-links a {
  color: orange;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 2px 8px #0003;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  border: 1.5px solid #ffd28f22;
}
.author-links a:hover {
  background: orange;
  color: #232323;
  transform: scale(1.13) rotate(-6deg);
  box-shadow: 0 4px 18px #ffd28f77;
  border: 1.5px solid orange;
}

@media (max-width: 900px) {
  .author-bio {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .author-info {
    text-align: center;
    padding: 1.2rem 0.8rem;
    max-width: 100%;
  }
  .author-photo-frame {
    width: 110px;
    height: 110px;
    padding: 5px;
  }
  .author-photo {
    width: 92px;
    height: 92px;
  }
}

@media (max-width: 600px) {
  .author-section {
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    margin: 2rem auto 2rem auto;
  }
  .author-header {
    font-size: 1.5rem;
  }
  .author-links {
    gap: 0.7rem;
    justify-content: center;
    margin-bottom: .5rem;
  }
}

/* Immersive Newsletter CTA Styles */
.immersive-newsletter {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 340px;
  padding: 64px 0 60px 0;
  z-index: 2;
  background: none;
  overflow: visible;
}
.newsletter-cta-glass {
  position: relative;
  background: rgba(30, 20, 10, 0.55);
  border-radius: 17.5px;
  box-shadow: 0 8px 40px 0 #000a, 0 0 0 2px #ffd28f22;
  backdrop-filter: blur(16px) brightness(1.08);
  padding: 2rem 2rem 2.8rem 2rem;
  max-width: 520px;
  width: 100%;
  text-align: center;
  overflow: hidden;
  border: 2px solid #ffd28f22;
  animation: newsletter-fadein 1.2s cubic-bezier(.4,1.6,.6,1) both;
}
@keyframes newsletter-fadein {
  0% { opacity: 0; transform: translateY(60px) scale(0.97);}
  100% { opacity: 1; transform: translateY(0) scale(1);}
}
.newsletter-cta-glow {
  position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 320px; height: 180px;
  background: radial-gradient(ellipse at center, #ffd28f33 0%, transparent 80%);
  z-index: 0;
  pointer-events: none;
  filter: blur(8px);
  animation: newsletter-glow-pulse 3.5s ease-in-out infinite;
}
@keyframes newsletter-glow-pulse {
  0%,100% { opacity: 0.7; }
  50% { opacity: 1; }
}
.newsletter-cta-title {
  font-family: var(--font-lobster), var(--font-great-vibes);
  font-size: 2.2rem;
  color: orange;
  margin-bottom: 1.1rem;
  letter-spacing: 2px;
  text-shadow: 0 0 18px #000, 0 0 2px #ffd28f;
  position: relative;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 1.5rem 1.8rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px #0003;
  z-index: 2;
  animation: newsletter-title-pop 1.2s cubic-bezier(.4,1.6,.6,1) 0.2s both;
}
@keyframes newsletter-title-pop {
  0% { opacity: 0; transform: scale(0.92);}
  100% { opacity: 1; transform: scale(1);}
}
.newsletter-cta-desc {
  font-size: 1.18rem;
  color: #ffd28f;
  font-family: var(--font-medieval-sharp);
  margin: 2.2rem 0;
  line-height: 1.6;
  padding: 0 1.2rem;
  text-shadow: 0 0 8px #000a;
  position: relative;
  z-index: 2;
  animation: newsletter-desc-fade 1.2s cubic-bezier(.4,1.6,.6,1) 0.4s both;
}
@keyframes newsletter-desc-fade {
  0% { opacity: 0; transform: translateY(20px);}
  100% { opacity: 1; transform: translateY(0);}
}
.newsletter-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: linear-gradient(90deg, #f1a738 0%, #da6019 100%);
  color: #232323;
  font-family: var(--font-medieval-sharp);
  font-size: 1.25rem;
  font-weight: bold;
  border: none;
  border-radius: 12px;
  padding: 14px 38px;
  box-shadow: 0 4px 24px #ffd28f44;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  z-index: 2;
  animation: newsletter-btn-pop 1.2s cubic-bezier(.4,1.6,.6,1) 0.6s both;
}
@keyframes newsletter-btn-pop {
  0% { opacity: 0; transform: scale(0.92);}
  100% { opacity: 1; transform: scale(1);}
}
.newsletter-cta-btn:hover, .newsletter-cta-btn:focus {
  background: linear-gradient(90deg, #ffd28f 0%, orange 100%);
  color: #111;
  transform: scale(1.07) rotate(-2deg);
  box-shadow: 0 8px 32px #ffd28f77;
  outline: none;
}
.newsletter-cta-btn i {
  font-size: 1.3em;
  transition: transform 0.2s;
}
.newsletter-cta-btn:hover i {
  transform: translateX(6px) scale(1.1);
}

@media (max-width: 700px) {
  .immersive-newsletter {
    padding: 32px 0 28px 0;
    min-height: 220px;
  }
  .newsletter-cta-glass {
    padding: 1.5rem 0.7rem 1.2rem 0.7rem;
    max-width: 98vw;
  }
  .newsletter-cta-title {
    font-size: 1.3rem;
  }
  .newsletter-cta-desc {
    font-size: 1rem;
  }
  .newsletter-cta-btn {
    font-size: 1rem;
    padding: 10px 22px;
  }
}

/* Buy Now Page Styles */
.buy-now-section {
    min-height: 100vh;
    padding: 120px 20px 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.buy-now-section h1 {
    font-size: 3.5rem;
    color: orange;
    margin-bottom: 1rem;
    font-family: var(--font-beyond-wonderland), var(--font-lobster);
}

.buy-now-section .subtitle {
    font-family: var(--font-medieval-sharp);
    font-size: 1.75rem;
    color: #ffd28f;
    margin-bottom: 2rem;
}

.purchase-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 20px;
}

.purchase-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background: rgba(30, 20, 10, 0.5);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
    border: 2px solid #ffd28f33;
    transition: all 0.3s ease;
}

.purchase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(255,165,0,0.4);
    border-color: orange;
}

.card-header {
    background: linear-gradient(135deg, #2a2a2a5f 0%, #1a1a1a82 100%);
    padding: 1.5rem;
    text-align: center;
    position: relative;
    margin: 0.5rem;
    border-radius: 12px;
    border: 1px solid #ffd28f24;
}

.card-header i {
    font-size: 2rem;
    color: orange;
    margin-bottom: 0.5rem;
}

.card-header h2 {
    font-family: var(--font-medieval-sharp);
    font-size: 1.8rem;
    color: #fff;
}

.exclusive-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: orange;
    color: #000;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 5px 12px;
    padding-bottom: 6px;
    border-radius: 10px;
    border: 2px solid #ffd28f;
    font-size: 0.8rem;
    font-weight: bold;
}

.card-content {
    padding: 1.5rem;
}

.card-content img {
    width: 200px;
    height: auto;
    object-fit: cover;
    margin-bottom: 1.8rem;
    border-radius: 12px;
    filter: drop-shadow(0px 0px 10px rgb(0, 0, 0));
}

.card-content img#amazonBuyNImg{width: 325px; padding: 1rem;}

.card-content button, .card-content a{
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
}

.features li {
    margin-bottom: 0.8rem;
    color: #fff;
    font-family: var(--font-medieval-sharp);
}

.features li i {
    color: orange;
    margin-right: 0.5rem;
}

.price-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.price {
    text-align: center;
}

.price span {
    color: #ffd28f;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.3rem;
}

.price h3 {
    color: #fff;
    font-size: 1.8rem;
    font-family: var(--font-medieval-sharp);
}

@media (max-width: 768px) {
    .purchase-options {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }
    .purchase-card {
        min-width: 90vw;
        max-width: 98vw;
        margin-bottom: 1.5rem;
        padding: 0.5rem 0.2rem;
    }
    .buy-now-section h1 {
        font-size: 2.2rem;
    }
    .buy-now-section .subtitle {
        font-size: 1.2rem;
    }
    .card-content img,
    .card-content img#amazonBuyNImg {
        width: 90vw !important;
        max-width: 260px;
        min-width: 120px;
        margin-bottom: 1rem;
    }
    .card-header h2 {
        font-size: 1.2rem;
    }
    .features li {
        font-size: 1em;
        padding-left: 1rem;
    }
    .price-container {
        flex-direction: column;
        gap: 0.7rem;
    }
    .price h3 {
        font-size: 1.2rem;
    }
    .exclusive-tag {
        font-size: 0.7rem;
        padding: 3px 8px;
        top: 6px;
        right: 6px;
    }
    .card-content {
        padding: 1rem 0.2rem;
    }

    .card-content button {width: calc(100% - 20px);}
}
@media (max-width: 500px) {
    .buy-now-section {
        padding: 70px 2vw 20px;
    }
    .purchase-card {
        padding: 0.2rem 0.1rem;
    }
    .card-content img,
    .card-content img#amazonBuyNImg {
        width: 98vw !important;
        min-width: 80px;
    }
    .buy-now-section h1 {
        font-size: 2rem;
    }
    .buy-now-section .subtitle {
        font-size: 1rem;
    }
    .features li {
        font-size: 0.95em;
    }
    .price h3 {
        font-size: 1rem;
    }
}

/* Immersive Cinematic Loading Overlay */
    #loading-overlay {
      position: fixed;
      z-index: 99999;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100vw;
      height: 100vh;
      /* Royal, epic background */
      background: radial-gradient(ellipse at 60% 40%, #00000026 0%, #00000041 60%, #000 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      backdrop-filter: blur(60px) brightness(1.1);
      -webkit-backdrop-filter: blur(60px) brightness(1.1);
      box-shadow: 0 0 150px 40px #ffae6314 inset;
      transition: opacity 0.8s cubic-bezier(.77, 0, .18, 1);
      -webkit-transition: opacity 0.8s cubic-bezier(.77, 0, .18, 1);
    }

    #loading-overlay.hide {
      opacity: 0;
      pointer-events: none;
    }

    /* Subtle animated royal crest behind logo */
    .loading-crest {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%) scale(1.5);
      width: 320px;
      height: 320px;
      opacity: 0.13;
      z-index: 0;
      pointer-events: none;
      background: url('Assets/M_icon.ico') center/contain no-repeat;
      filter: blur(2px) drop-shadow(0 0 32px #ffab6688);
      animation: crest-spin 18s linear infinite;
    }

    @keyframes crest-spin {
      0% {
        transform: translate(-50%, -50%) scale(1.5) rotate(0deg);
      }

      100% {
        transform: translate(-50%, -50%) scale(1.5) rotate(360deg);
      }
    }

    /* Animated sparkles */
    .loading-sparkle {
      display: none !important;
    }

    /* Logo container with royal shadow and gold ring */
    .loading-logo-container {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      width: 220px;
      height: 220px;
      z-index: 5;
      animation: loading-pulse 2.5s cubic-bezier(.4, 0, .2, 1) infinite;
      transition: transform 0.7s cubic-bezier(.77, 0, .18, 1);
      box-shadow: 0 0 64px 0 #ffb86644, 0 0 0 12px #ffd5b211;
      border-radius: 50%;
      background: radial-gradient(circle, #ffd8b210 0%, #ffa86609 70%, #fff0 100%);
    }

    .loading-logo-container.up {
      transform: translateY(-60px);
    }

    /* Royal gold ring */
    .loading-logo-ring {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 180px;
      height: 180px;
      border-radius: 50%;
      border: 4px solid orange;
      box-shadow: 0 0 32px #ffa16688, 0 0 0 8px #fff7b211;
      opacity: 0.7;
      z-index: 2;
      pointer-events: none;
      animation: ring-glow 2.5s cubic-bezier(.4, 0, .2, 1) infinite;
    }

    @keyframes ring-glow {

      0%,
      100% {
        box-shadow: 0 0 32px #ffad6688, 0 0 0 8px #ffd8b211;
      }

      50% {
        box-shadow: 0 0 56px #ff9e66cc, 0 0 0 16px #ffd6b233;
      }
    }

    .loading-logo {
      width: 150px;
      height: 150px;
      opacity: 0;
      object-fit: contain;
      filter: drop-shadow(0 0 22px #ffb5662c) drop-shadow(0 0 8px orange);
      transition: all 0.5s cubic-bezier(.4, 0, .2, 1);
    }

    .loading-logo.scale-in {
      animation: logo-scale-in 0.7s cubic-bezier(.77, 0, .18, 1) forwards;
    }

    @keyframes logo-scale-in {
      0% {
        opacity: 0;
        transform: scale(0.7) rotate(-10deg);
      }

      60% {
        opacity: 1;
        transform: scale(1.15) rotate(6deg);
      }

      100% {
        opacity: 1;
        transform: scale(1) rotate(0);
      }
    }

    .loading-logo.rotating {
      animation: loading-rotate 2.5s linear infinite;
    }

    @keyframes loading-rotate {
      0% {
        transform: rotate(0deg);
      }

      100% {
        transform: rotate(360deg);
      }
    }

    @keyframes loading-pulse {

      0%,
      100% {
        transform: scale(1);
      }

      50% {
        transform: scale(1.08);
      }
    }

    /* Royal READY button */
    .loading-ready-btn {
      display: none;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: -7.5rem;
      padding: 0.8em 2.7em;
      font-size: 1.3em;
      font-family: 'Lobster', 'MedievalSharp', serif;
      background: linear-gradient(90deg, #ffe066 0%, #fff7b2 60%, #ffe066 100%);
      color: #7a5c00;
      box-shadow: 0 0 24px #ffe06688, 0 2px 8px #0006;
      cursor: pointer;
      letter-spacing: 0.13em;
      font-weight: bold;
      opacity: 0;
      z-index: 10;
      filter: drop-shadow(0 0 8px #ffe06688);
      animation: none;
      text-shadow: 0 2px 8px #fff7b2cc, 0 0 2px #ffe066;
    }

    .loading-ready-btn.show {
      display: block;
      opacity: 1;
      animation: ready-btn-pop 0.7s cubic-bezier(.77, 0, .18, 1), ready-btn-float 2.2s 0.7s ease-in-out infinite;
      background: linear-gradient(90deg, #ffe066 0%, #fff7b2 60%, #ffe066 100%);
      background-size: 200% 100%;
      background-position: 0 0;
    }

    .loading-ready-btn:hover {
      background: linear-gradient(90deg, #fff7b2 0%, #ffe066 100%);
      color: black;
      box-shadow: 0 0 48px #ffe066cc, 0 8px 24px #0008;
      padding: 0.8em 2.5em;
    }

    .loading-ready-btn:active {
      transform: translateX(-50%) scale(0.95);
      box-shadow: 0 0 32px #ffe066aa, 0 4px 12px #0004;
    }

    @keyframes ready-btn-pop {
      0% {
        transform: translateX(-50%) scale(0.7);
      }

      60% {
        transform: translateX(-50%) scale(1.1);
      }

      100% {
        transform: translateX(-50%) scale(1);
      }
    }

    @keyframes ready-btn-float {
      0% {
        box-shadow: 0 0 24px #ffe06688, 0 2px 8px #0006;
      }

      100% {
        box-shadow: 0 0 48px #ffe066cc, 0 8px 24px #0008;
      }
    }

    @keyframes btn-shimmer {
      0% {
        opacity: 0.3;
        left: 10%;
      }

      40% {
        opacity: 0.7;
      }

      60% {
        opacity: 0.7;
      }

      100% {
        opacity: 0.3;
        left: 80%;
      }
    }

    body.loading {
      overflow: hidden !important;
      height: 100vh !important;
    }

    /* Enhanced Synopsis Section */
    .synopsis-section {
      position: relative;
      min-height: 100vh;
      width: 100%;
      padding: 4rem 0;
      overflow: hidden;
      background: #000;
    }

    .synopsis-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0.7;
      z-index: 1;
    }

    .synopsis-content {
      position: relative;
      margin: 0 auto;
      padding: 2rem;
      color: #fff;
      z-index: 2;
    }

    .title-reveal {
      font-size: 4rem;
      margin-bottom: 3rem;
      opacity: 0;
      padding-bottom: 3.5rem;
      transform: translateY(30px);
      border-bottom: 1px solid #ffffff2b;
    }

    .text-reveal {
      margin-bottom: 2rem;
      line-height: 2;
      text-align: center;
    }

    .word {
      display: inline-block;
      opacity: 0;
      transform: translateY(20px);
      margin-right: 0.25rem;
      font-size: 3.25rem;
    }
    
    .line {
      display: block;
      margin-bottom: 1.5rem;
    }

    @media screen and (max-width: 768px) {
      .title-reveal,#synopsis h1 {
        font-size: 3.5rem;
      }

      .line, .word {
        font-size: 2rem;
        font-weight: normal;
        margin-bottom: 1rem;
      }

      #synopsis p{line-height: normal;}
      
      .synopsis-content, #synopsis{padding: 1rem;}
    }

    