        /* CSS to match the Dark Blue/Gold Theme of the book cover */
        :root {
            --primary-dark-blue: #0A192F;
            --secondary-gold: #F0B30C;
            --light-gold: #FFD700;
            --text-color: #E0E0E0;
            --font-family-header: 'Cinzel', serif;
            --font-family-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* Basic Reset and Body Styling */
        body {
            margin: 0;
            font-family: var(--font-family-body);
            background-color: var(--primary-dark-blue);
            color: var(--text-color);
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        main {
            flex-grow: 1;
            padding: 40px 0;
        }

        /* --- Header and Navigation styles remain the same as previous template --- */
        .navbar { background-color: var(--primary-dark-blue); padding: 15px 0; border-bottom: 2px solid var(--secondary-gold); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 15px rgba(0, 0, 0, 0.7); }
        .navbar .container { display: flex; justify-content: space-between; align-items: center; }
        .logo { font-family: var(--font-family-header); font-size: 1.9em; color: var(--secondary-gold); text-decoration: none; font-weight: bold; }
        .menu-icon { display: none; font-size: 2em; color: var(--secondary-gold); cursor: pointer; }
        #menu-toggle { display: none; }
        .nav-links ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 30px; }
        .nav-links a { color: var(--text-color); text-decoration: none; font-size: 1.3em; padding: 5px 0; transition: color 0.3s ease, text-shadow 0.3s ease; position: relative; }
        .nav-links a:hover, .nav-links a:focus { color: var(--light-gold); text-shadow: 0 0 8px rgba(var(--light-gold), 0.8); }
        .nav-links a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 50%; transform: translateX(-50%); background-color: var(--secondary-gold); transition: width 0.3s ease; }
        .nav-links a:hover::after { width: 100%; }
        .dropdown { position: relative; }
        .dropdown-content { display: none; position: absolute; background-color: rgba(10, 25, 47, 0.95); min-width: 180px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.8); z-index: 10; border: 1px solid var(--secondary-gold); border-radius: 5px; padding: 5px 0; }
        .dropdown:hover .dropdown-content { display: block; }
        .dropdown-content a { color: var(--text-color); padding: 10px 15px; text-decoration: none; display: block; text-align: left; }
        .dropdown-content a:hover { background-color: rgba(240, 179, 12, 0.2); color: var(--light-gold); }

        /* --- Hero and Content Sections --- */
        .hero-section { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 60px 20px; margin-bottom: 40px; }
        .hero-text h1 { font-family: var(--font-family-header); font-size: 3em; color: var(--light-gold); margin-bottom: 10px; text-shadow: 0 0 15px rgba(255, 215, 0, 0.5); }
        .book-cover-display { max-width: 250px; height: auto; border: 5px solid var(--secondary-gold); box-shadow: 0 0 25px rgba(255, 215, 0, 0.6); border-radius: 5px; margin-top: 30px; }
        section { margin-bottom: 60px; padding: 20px; background-color: rgba(0, 0, 0, 0.2); border-radius: 8px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4); }
        section h2 { font-family: var(--font-family-header); font-size: 2.5em; color: var(--secondary-gold); text-align: center; margin-bottom: 30px; }

        /* --- Flipbook Container and Arrows (NEW/MODIFIED) --- */
        .flipbook-wrapper {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            /* Wrapper takes up the space for both book and arrows */
            padding: 0 50px; 
            margin: 0 auto;
        }
        
        #flipbook {
            width: 800px; /* Overwritten by JS/resize */
            height: 600px; /* Overwritten by JS/resize */
            background-color: #000;
            box-shadow: 0 0 20px rgba(240, 179, 12, 0.5);
            border: 2px solid var(--secondary-gold);
            margin: 0 auto;
        }

        #flipbook .page {
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--text-color);
            font-size: 1.5em;
            text-shadow: 0 0 5px #000;
        }
        
        #flipbook .page[data-url]:hover {
            cursor: pointer;
            outline: 2px solid var(--light-gold);
            outline-offset: -2px;
        }

        .flip-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            background-color: rgba(10, 25, 47, 0.8);
            color: var(--secondary-gold);
            border: 2px solid var(--secondary-gold);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            line-height: 36px;
            text-align: center;
            font-size: 24px;
            cursor: pointer;
            user-select: none;
            transition: background-color 0.3s, color 0.3s;
        }

        .flip-arrow:hover {
            background-color: var(--secondary-gold);
            color: var(--primary-dark-blue);
        }

        #prev-btn { left: 0; }
        #next-btn { right: 0; }
        
        /* Hidden class to control visibility based on page number */
        .hidden { display: none !important; }

        /* --- Video Player Section --- */
        .video-player-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 800px; margin: 0 auto; background: #000; border-radius: 8px; }
        .video-player-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

        /* --- Footer Styles remain the same --- */
        .footer { background-color: var(--primary-dark-blue); color: var(--text-color); padding: 30px 0; text-align: center; border-top: 2px solid var(--secondary-gold); box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5); }
        .footer .container { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; }
        .footer-moto { font-style: italic; font-size: 1.3em; color: var(--light-gold); margin-bottom: 15px; width: 100%; }
        .social-media-icons a { margin: 0 10px; display: inline-block; }
        .social-media-icons img { width: 30px; height: 30px; filter: brightness(0) saturate(100%) invert(80%) sepia(90%) saturate(1000%) hue-rotate(0deg) brightness(100%) contrast(100%); transition: transform 0.3s ease; }
        .social-media-icons img:hover { transform: scale(1.1); }
        .contact-info { text-align: right; font-size: 0.9em; }
        .contact-info p { margin: 5px 0; }


        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            /* Menu styles (copied from previous template) */
            .navbar .container { flex-wrap: wrap; }
            .menu-icon { display: block; }
            .nav-links { display: none; flex-direction: column; width: 100%; background-color: rgba(10, 25, 47, 0.95); position: absolute; top: 60px; left: 0; }
            #menu-toggle:checked ~ .nav-links { display: flex; }
            .nav-links ul { flex-direction: column; width: 100%; }
            .nav-links li { width: 100%; text-align: center; border-top: 1px solid rgba(240, 179, 12, 0.1); }
            .dropdown-content { position: static; width: 100%; background-color: rgba(10, 25, 47, 0.8); }
            
            /* Flipbook Mobile Adjustments */
            .flipbook-wrapper { padding: 0 10px; }
            #flipbook {
                width: 300px !important; /* Smaller single page width */
                height: 450px !important; /* Smaller single page height */
            }
            .flip-arrow {
                width: 30px;
                height: 30px;
                line-height: 28px;
                font-size: 20px;
            }
        }

        /* --- Chapter Content Area --- */
        .chapter-header {
            text-align: center;
            padding: 30px 0;
            border-bottom: 1px solid rgba(var(--secondary-gold), 0.3);
            margin-bottom: 40px;
        }

        .chapter-header h1 {
            font-family: var(--font-family-header);
            font-size: 3em;
            color: var(--light-gold);
            margin: 0;
            text-shadow: 0 0 10px rgba(var(--light-gold), 0.4);
        }

        .chapter-header h2 {
            font-family: var(--font-family-body);
            font-size: 1.5em;
            color: var(--text-color);
            font-style: italic;
            margin-top: 5px;
        }

        .chapter-details {
            display: flex;
            gap: 40px;
            align-items: flex-start;
            margin-bottom: 50px;
        }

        .chapter-image-container {
            flex-shrink: 0;
            width: 300px; 
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
            border-radius: 5px;
            overflow: hidden;
            border: 3px solid var(--secondary-gold);
        }

        .chapter-image-container img {
            width: 100%;
            height: auto;
            display: block;
        }

        .chapter-description {
            flex-grow: 1;
            padding-right: 20px;
        }
        
        .chapter-description h3 {
            font-family: var(--font-family-header);
            color: var(--secondary-gold);
            margin-top: 0;
        }

        .chapter-description p {
            font-size: 1.3em;
            text-align: justify;
            margin-bottom: 25px;
            color: #CFCFCF;
        }

        /* --- Call to Action (CTA) Section (MODIFIED) --- */
        .cta-section {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 30px 0;
            border-top: 1px solid rgba(var(--secondary-gold), 0.3);
            gap: 20px; /* Space between the arrows and the button */
        }

        .read-more-btn {
            display: inline-block;
            padding: 15px 30px;
            font-size: 1.2em;
            font-family: var(--font-family-header);
            text-transform: uppercase;
            text-decoration: none;
            color: var(--primary-dark-blue);
            background-color: var(--secondary-gold);
            border: 2px solid var(--secondary-gold);
            border-radius: 5px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(240, 179, 12, 0.5);
            white-space: nowrap; /* Keep button text on one line */
            font-weight: bold;
        }

        .read-more-btn:hover {
            background-color: var(--light-gold);
            color: var(--primary-dark-blue);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.7);
        }

        /* Chapter Navigation Arrows */
        .chapter-nav-arrow {
            text-decoration: none;
            color: var(--secondary-gold);
            font-size: 3em;
            line-height: 1;
            transition: color 0.3s ease, transform 0.3s ease;
            user-select: none;
        }

        .chapter-nav-arrow:hover {
            color: var(--light-gold);
            transform: scale(1.1);
        }
        
        .chapter-nav-arrow.disabled {
            color: rgba(var(--secondary-gold), 0.3);
            cursor: default;
        }
        
        .chapter-nav-arrow.disabled:hover {
            transform: none;
            color: rgba(var(--secondary-gold), 0.3);
        }
h2 {
  font-size: 1.8em;
  margin-top: 1em;
  color: #ffd700;
}

.chapter-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 2em;
  margin: 2em auto;
  max-width: 1000px;
  padding: 1em;
  box-sizing: border-box;
}

.chapter-image {
  flex: 1 1 300px;
  text-align: center;
}

.chapter-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
}

.chapter-text {
  flex: 1 1 300px;
  color: #f0f0f0;
  font-family: 'Segoe UI', sans-serif;
  text-align: left;
}

.chapter-text h2 {
  font-size: 1.8em;
  color: #ffd700;
  margin-bottom: 0.5em;
}

.chapter-text p {
  font-size: 1.1em;
  line-height: 1.6;
}

/* Mobile-friendly stacking */
@media screen and (max-width: 768px) {
  .chapter-container {
    flex-direction: column;
    text-align: center;
  }

  .chapter-text {
    text-align: center;
  }
}

p {
  font-size: 1.1em;
  margin: 0.5em 0;
}

button {
  background: #ffd700;
  color: #24243e;
  border: none;
  padding: 0.8em 1.2em;
  margin: 0.5em;
  font-size: 1em;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #ffec8b;
}

#game-stage {
  max-width: 600px;
  margin: 2em auto;
  padding: 1em;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.light-burst {
  animation: burst 0.8s ease-in-out;
  color: #00ffff;
  font-weight: bold;
}

@keyframes burst {
  0% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

.ascension-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: 'Segoe UI', sans-serif;
  font-size: 1.8em;
  font-weight: bold;
  color: #ffd700;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
  background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
  padding: 0.6em 1em;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
  animation: pulseGlow 3s infinite ease-in-out;
}

.ascension-logo .icon {
  font-size: 1.6em;
  color: #00ffff;
  animation: floatIcon 4s infinite ease-in-out;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
  }
}

@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

#ascension-scale {
  margin-top: 2em;
}

.ascension-game {
  max-width: 700px;
  margin: 2em auto;
  padding: 2em;
  background: linear-gradient(to bottom right, #0f0c29, #302b63, #24243e);
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
  color: #f0f0f0;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  box-sizing: border-box;
}

.ascension-game h2 {
  font-size: 2em;
  margin-bottom: 0.5em;
  color: #ffd700;
}

.ascension-game p {
  font-size: 1.1em;
  margin: 0.5em 0 1em;
}

.ascension-game button {
  background: #ffd700;
  color: #24243e;
  border: none;
  padding: 0.8em 1.4em;
  margin: 0.5em;
  font-size: 1em;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.ascension-game button:hover {
  background: #ffec8b;
}

.ascension-game ul {
  list-style: none;
  padding: 0;
  margin-top: 1em;
}

.ascension-game ul li {
  margin: 0.8em 0;
  font-size: 1em;
  line-height: 1.4;
}

@media screen and (max-width: 600px) {
  .ascension-game {
    padding: 1em;
    margin: 1em;
  }

  .ascension-game button {
    width: 90%;
    margin: 0.5em auto;
    display: block;
  }
}

.scale-bar {
  width: 100%;
  height: 20px;
  background: #444;
  border-radius: 10px;
  overflow: hidden;
  margin: 1em 0;
}

.scale-fill {
  height: 100%;
  background: linear-gradient(to right, #00ffff, #ffd700);
  width: 0%;
  transition: width 1s ease-in-out;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin: 0.5em 0;
  font-size: 1em;
}

button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.5);
}

@media screen and (max-width: 600px) {
  body {
    font-size: 0.95em;
  }

  button {
    width: 90%;
    margin: 0.5em auto;
    display: block;
  }

  #game-stage {
    margin: 1em;
    padding: 1em;
  }
}

.kindle-button {
  display: inline-block;
  background: linear-gradient(to right, #ffd700, #00ffff);
  color: #24243e;
  font-weight: bold;
  font-size: 1.1em;
  padding: 0.8em 1.4em;
  border: none;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kindle-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  background: linear-gradient(to right, #ffec8b, #a0ffff);
}

.kindle-button:active {
  transform: scale(0.98);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.paypal-button {
  display: inline-block;
  background: linear-gradient(to right, #00ffff, #ffd700);
  color: #24243e;
  font-weight: bold;
  font-size: 1.1em;
  padding: 0.8em 1.4em;
  border: none;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.paypal-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  background: linear-gradient(to right, #a0ffff, #ffec8b);
}

.paypal-button:active {
  transform: scale(0.98);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

a.page-link {
  color: #00ffff;
  font-weight: bold;
  text-decoration: none;
  padding: 0.2em 0.4em;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

a.page-link:hover {
  color: #ffd700;
  border-bottom: 2px solid #ffd700;
}

a.page-link:active {
  color: #ffec8b;
  border-bottom: 2px solid #ffec8b;
}

.payment-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
  margin: 2em 0;
}

.payment-tile {
  flex: 1 1 280px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5em;
  text-align: center;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.payment-tile:hover {
  transform: scale(1.02);
}

.payment-tile h3 {
  font-size: 1.3em;
  margin-bottom: 0.5em;
  color: #ffd700;
}

.payment-tile p {
  font-size: 1em;
  margin-bottom: 1em;
  color: #f0f0f0;
}

.ascension-footer {
  margin: 3em auto;
  padding: 1.5em;
  max-width: 800px;
  background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

#footer-message {
  font-size: 1.2em;
  font-weight: bold;
  color: #ffd700;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.6), 0 0 12px rgba(255, 255, 255, 0.2);
  animation: glowPulse 3s infinite ease-in-out;
  padding: 0.5em;
  line-height: 1.6;
}

/* Glowing pulse animation */
@keyframes glowPulse {
  0%, 100% {
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6), 0 0 12px rgba(255, 255, 255, 0.2);
    transform: scale(1);
  }
  50% {
    text-shadow: 0 0 16px rgba(255, 255, 255, 0.4), 0 0 24px rgba(0, 255, 255, 0.3);
    transform: scale(1.02);
  }
}

.faq-container {
  max-width: 800px;
  margin: 3em auto;
  padding: 2em;
  background: linear-gradient(to bottom right, #0f0c29, #302b63, #24243e);
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
  color: #f0f0f0;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.faq-container h2 {
  font-size: 2em;
  color: #ffd700;
  margin-bottom: 0.5em;
}

.faq-container p {
  font-size: 1.1em;
  margin-bottom: 1.5em;
}

/* Search Bar */
#faq-search {
  width: 100%;
  padding: 0.8em;
  font-size: 1em;
  border-radius: 10px;
  border: none;
  margin-bottom: 2em;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

/* FAQ Items */
.faq-item {
  margin-bottom: 1em;
  text-align: left;
}

.faq-question {
  width: 100%;
  background: #ffd700;
  color: #24243e;
  font-weight: bold;
  font-size: 1.1em;
  padding: 0.8em;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.faq-question:hover {
  background: #ffec8b;
  transform: scale(1.02);
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.faq-answer {
  display: none;
  padding: 1em;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin-top: 0.5em;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile-friendly */
@media screen and (max-width: 600px) {
  .faq-container {
    padding: 1em;
    margin: 2em 1em;
  }

  .faq-question {
    font-size: 1em;
  }

  .faq-answer {
    font-size: 1em;
  }
}

.privacy-container {
  max-width: 800px;
  margin: 3em auto;
  padding: 2em;
  background: linear-gradient(to bottom right, #1a1a2e, #16213e);
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
  color: #f0f0f0;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.privacy-container h2 {
  font-size: 2em;
  color: #ffd700;
  margin-bottom: 0.5em;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.privacy-container p {
  font-size: 1.1em;
  margin-bottom: 1.5em;
  line-height: 1.6;
}

.privacy-section {
  margin-bottom: 2em;
  text-align: left;
}

.privacy-section h3 {
  font-size: 1.3em;
  color: #00ffff;
  margin-bottom: 0.5em;
  text-shadow: 0 0 6px rgba(0, 255, 255, 0.4);
}

.privacy-section p {
  font-size: 1em;
  color: #f0f0f0;
}

/* Mobile-friendly */
@media screen and (max-width: 600px) {
  .privacy-container {
    padding: 1em;
    margin: 2em 1em;
  }

  .privacy-section h3 {
    font-size: 1.2em;
  }

  .privacy-section p {
    font-size: 1em;
  }
}

.terms-container {
  max-width: 800px;
  margin: 3em auto;
  padding: 2em;
  background: linear-gradient(to bottom right, #1a1a2e, #16213e);
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
  color: #f0f0f0;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.terms-container h2 {
  font-size: 2em;
  color: #ffd700;
  margin-bottom: 0.5em;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.terms-container p {
  font-size: 1.1em;
  margin-bottom: 1.5em;
  line-height: 1.6;
}

.terms-section {
  margin-bottom: 2em;
  text-align: left;
}

.terms-section h3 {
  font-size: 1.3em;
  color: #00ffff;
  margin-bottom: 0.5em;
  text-shadow: 0 0 6px rgba(0, 255, 255, 0.4);
}

.terms-section p {
  font-size: 1em;
  color: #f0f0f0;
}

/* Mobile-friendly */
@media screen and (max-width: 600px) {
  .terms-container {
    padding: 1em;
    margin: 2em 1em;
  }

  .terms-section h3 {
    font-size: 1.2em;
  }

  .terms-section p {
    font-size: 1em;
  }
}

.testimonial-slider {
  max-width: 900px;
  margin: 3em auto;
  padding: 2em;
  background: linear-gradient(to bottom right, #0f0c29, #302b63, #24243e);
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
  color: #f0f0f0;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.testimonial-slider h2 {
  font-size: 2em;
  color: #ffd700;
  margin-bottom: 1em;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.testimonial-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5em;
}

.testimonial-card {
  flex: 1 1 250px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1em;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
  animation: fadeIn 0.5s ease-in-out;
}

.testimonial-card p {
  font-size: 1.1em;
  font-style: italic;
  color: #00ffff;
  text-shadow: 0 0 6px rgba(0, 255, 255, 0.4);
}

.testimonial-card span {
  display: block;
  margin-top: 0.8em;
  font-weight: bold;
  color: #ffd700;
}

.testimonial-next {
  margin-top: 2em;
  padding: 0.8em 1.4em;
  font-size: 1em;
  background: #ffd700;
  color: #24243e;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.testimonial-next:hover {
  background: #ffec8b;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile-friendly */
@media screen and (max-width: 600px) {
  .testimonial-card {
    flex: 1 1 100%;
  }
}

.legal-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  margin: 2em auto;
  padding: 1em;
  font-family: 'Segoe UI', sans-serif;
  font-size: 1em;
  background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
  max-width: 600px;
  color: #ffd700;
  text-align: center;
}

.legal-link {
  color: #ffd700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.legal-link:hover {
  color: #ffec8b;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.divider {
  color: #00ffff;
  font-weight: bold;
}

/* Mobile-friendly */
@media screen and (max-width: 600px) {
  .legal-links {
    flex-direction: column;
    gap: 0.5em;
    font-size: 1em;
  }

  .divider {
    display: none;
  }
}

.about-book-container {
  max-width: 900px;
  margin: 3em auto;
  padding: 2em;
  background: linear-gradient(to bottom right, #1a1a2e, #16213e);
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
  color: #f0f0f0;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.about-book-container h2 {
  font-size: 2em;
  color: #ffd700;
  margin-bottom: 0.5em;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.about-book-container p {
  font-size: 1.1em;
  margin-bottom: 1.2em;
  line-height: 1.6;
}

.book-highlights {
  list-style: none;
  padding: 0;
  margin: 1em 0;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.book-highlights li {
  margin-bottom: 0.5em;
  font-size: 1.1em;
}

.book-options {
  display: flex;
  justify-content: center;
  gap: 1em;
  margin-top: 2em;
  flex-wrap: wrap;
}

.book-button {
  display: inline-block;
  padding: 1em 1.6em;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}

.play-button {
  background: linear-gradient(to right, #00c9ff, #92fe9d);
  color: #1a1a2e;
}

.buy-button {
  background: linear-gradient(to right, #ff7e5f, #feb47b);
  color: #1a1a2e;
}

.book-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Flipbook Styling */
.flipbook-wrapper {
  max-width: 900px;
  margin: 3em auto;
  padding: 2em;
  background: linear-gradient(to bottom right, #0f0c29, #302b63, #24243e);
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.1);
  color: #f0f0f0;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.flipbook-wrapper h2 {
  font-size: 1.8em;
  color: #ffd700;
  margin-bottom: 0.5em;
}

.flipbook-wrapper p {
  font-size: 1.1em;
  margin-bottom: 1.5em;
}

#flipbook {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  min-height: 400px;
  border-radius: 12px;
  overflow: hidden;
}

/* Mobile-friendly */
@media screen and (max-width: 600px) {
  .about-book-container,
  .flipbook-wrapper {
    padding: 1em;
    margin: 2em 1em;
  }

  .book-button {
    font-size: 1em;
    padding: 0.8em 1.2em;
    margin-bottom: 1em;
  }

  #flipbook {
    min-height: 300px;
  }

  .book-options {
    flex-direction: column;
    align-items: center;
  }
}

.game-intro-container {
  max-width: 900px;
  margin: 3em auto;
  padding: 2em;
  background: linear-gradient(to bottom right, #1a1a2e, #16213e);
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
  color: #f0f0f0;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.game-intro-container h2 {
  font-size: 2em;
  color: #ffd700;
  margin-bottom: 0.5em;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.game-intro-container p {
  font-size: 1.1em;
  margin-bottom: 1.2em;
  line-height: 1.6;
}

.game-benefits {
  list-style: none;
  padding: 0;
  margin: 1em 0;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.game-benefits li {
  margin-bottom: 0.5em;
  font-size: 1.1em;
}

.start-button-wrapper {
  margin-top: 2em;
}

.start-button {
  display: inline-block;
  padding: 1em 2em;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 12px;
  text-decoration: none;
  background: linear-gradient(to right, #00c9ff, #92fe9d);
  color: #1a1a2e;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.start-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Mobile-friendly */
@media screen and (max-width: 600px) {
  .game-intro-container {
    padding: 1em;
    margin: 2em 1em;
  }

  .start-button {
    font-size: 1em;
    padding: 0.8em 1.4em;
  }
}

/* 🌌 Ascension Intro Banner */
#intro-banner {
  background: url('/static/intro_image.jpg') center/cover no-repeat;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid #ffd700;
}

#intro-banner h1 {
  color: #ffd700;
  font-size: 2.5em;
  text-shadow: 2px 2px #000;
  text-align: center;
  padding: 0 1em;
}

/* 🎧 Floating Play Button */
#playIntroBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffd700;
  color: #0f0c29;
  border: none;
  padding: 0.8em 1.2em;
  font-size: 1em;
  border-radius: 50px;
  box-shadow: 0 0 10px #ffd700;
  cursor: pointer;
  z-index: 1000;
}

/* 📂 Collapsible Intro Section */
#ascension-intro {
  display: none;
  background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
  color: #ffd700;
  padding: 2em;
  text-align: center;
  border-bottom: 2px solid #ffd700;
}

#ascension-intro h2 {
  font-size: 2em;
  margin-bottom: 0.5em;
}

#ascension-intro p {
  font-size: 1.1em;
  margin-bottom: 1em;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

#ascension-intro audio {
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
  display: block;
}

/* 🌠 Outro Section */
#ascension-outro {
  background: linear-gradient(to right, #1a1a2e, #0f0c29);
  color: #ffd700;
  padding: 2em;
  text-align: center;
  border-top: 2px solid #ffd700;
}

#ascension-outro h2 {
  font-size: 2em;
  margin-bottom: 0.5em;
}

#ascension-outro p {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto 1em auto;
}

/* 📱 Mobile Optimization */
@media screen and (max-width: 600px) {
  #intro-banner {
    height: 200px;
  }

  #intro-banner h1,
  #ascension-intro h2,
  #ascension-outro h2 {
    font-size: 1.6em;
  }

  #playIntroBtn {
    bottom: 15px;
    right: 15px;
    font-size: 0.9em;
    padding: 0.6em 1em;
  }

  #ascension-intro p,
  #ascension-outro p {
    font-size: 1em;
    padding: 0 1em;
  }
}
#ascension-audio {
  background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
  color: #ffd700;
  padding: 2em;
  text-align: center;
  border-radius: 12px;
  max-width: 800px;
  margin: 2em auto;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

#ascension-audio h2 {
  font-size: 2em;
  margin-bottom: 0.5em;
  text-shadow: 2px 2px #000;
}

#ascension-audio p {
  font-size: 1.1em;
  line-height: 1.6em;
  margin-bottom: 1em;
}

#ascension-audio audio {
  width: 90%;
  max-width: 600px;
  margin: 1em auto;
  display: block;
}

#ascension-audio .credits {
  font-size: 0.95em;
  color: #ffd700;
  margin-top: 1em;
}

#ascension-playlist {
  background: radial-gradient(circle at top, #ffd700 0%, #0f0c29 100%);
  color: #fff8dc;
  padding: 2em;
  border-radius: 16px;
  max-width: 800px;
  margin: 2em auto;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

#ascension-playlist h2 {
  font-size: 2em;
  margin-bottom: 0.5em;
  text-shadow: 2px 2px 4px #000;
}

#ascension-playlist p {
  font-size: 1.1em;
  margin-bottom: 1em;
}

#ascension-playlist input[type="password"] {
  padding: 0.6em;
  font-size: 1em;
  border-radius: 8px;
  border: none;
  width: 80%;
  max-width: 400px;
  margin-bottom: 1em;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

#ascension-playlist button {
  padding: 0.6em 1.2em;
  font-size: 1em;
  background-color: #ffd700;
  color: #0f0c29;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  transition: transform 0.2s ease;
}

#ascension-playlist button:hover {
  transform: scale(1.05);
}

#ascension-playlist ul {
  list-style: none;
  padding: 0;
  margin-top: 2em;
}

#ascension-playlist li {
  margin-bottom: 2em;
  font-size: 1.1em;
}

#ascension-playlist audio {
  width: 100%;
  max-width: 600px;
  margin-top: 0.5em;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.2);
  border-radius: 8px;
}

/* Responsive tweaks */
@media screen and (max-width: 600px) {
  #ascension-playlist {
    padding: 1.5em;
  }

  #ascension-playlist h2 {
    font-size: 1.6em;
  }

  #ascension-playlist input[type="password"],
  #ascension-playlist button {
    width: 90%;
    font-size: 1em;
  }

  #ascension-playlist audio {
    width: 100%;
  }
}

#ascension-purchase {
  background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
  color: #ffd700;
  padding: 2em;
  border-radius: 16px;
  max-width: 800px;
  margin: 2em auto;
  text-align: center;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
  font-family: 'Segoe UI', sans-serif;
}

#ascension-purchase h2 {
  font-size: 2em;
  margin-bottom: 0.5em;
  text-shadow: 2px 2px 4px #000;
}

#ascension-purchase .pitch {
  font-size: 1.1em;
  margin-bottom: 2em;
  line-height: 1.6em;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
}

.paypal-btn,
.kindle-btn {
  padding: 0.8em 1.6em;
  font-size: 1em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.2s ease;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
}

.paypal-btn {
  background-color: #ffc439;
  color: #111;
}

.kindle-btn {
  background-color: #ff9900;
  color: #fff;
}

.paypal-btn:hover,
.kindle-btn:hover {
  transform: scale(1.05);
}

/* Mobile tweaks */
@media screen and (max-width: 600px) {
  .button-row {
    flex-direction: column;
    align-items: center;
  }

  .paypal-btn,
  .kindle-btn {
    width: 90%;
    font-size: 1.1em;
  }
}

.download-button {
  margin-top: 20px;
  text-align: center;
}
