@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #050505;
    --accent: #d4af37; /* Royal Gold */
    --accent-light: #f1e5ac;
    --accent-hover: #bfa02e;
    --accent-rgb: 212, 175, 55;
    --text: #ffffff;
    --text-muted: #a0a0a0;
    --bg: #030303;
    --bg-card: rgba(18, 18, 18, 0.7);
    --border: rgba(212, 175, 55, 0.15);
    --border-light: rgba(255, 255, 255, 0.05);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font: 'Inter', Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    letter-spacing: -0.01em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Premium Typography */
.gradient-text {
    background: linear-gradient(135deg, #ffffff 10%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.2rem;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

/* Beautiful Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.4rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 50%, var(--accent-hover) 100%);
    color: #000000;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.1);
}

/* Navigation - Modern Sticky Floating Bar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    background: rgba(3, 3, 3, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 30%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Extra Links for Inner Pages */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a.highlight {
    background: var(--accent);
    color: #000;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
}

.nav-links a.highlight:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 10rem 0 6rem 0;
    background: radial-gradient(circle at 80% 20%, rgba(var(--accent-rgb), 0.08) 0%, transparent 60%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.hero-content {
    z-index: 10;
}

.hero h1 {
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 400;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.floating-book {
    width: 100%;
    max-width: 360px;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.1);
    transform: perspective(1000px) rotateY(-18deg) rotateX(8deg) rotateZ(-2deg);
    animation: float 6s ease-in-out infinite;
    transition: var(--transition);
}

.floating-book:hover {
    transform: perspective(1000px) rotateY(-8deg) rotateX(4deg) scale(1.02);
}

@keyframes float {
    0%, 100% { transform: perspective(1000px) rotateY(-18deg) rotateX(8deg) rotateZ(-2deg) translateY(0); }
    50% { transform: perspective(1000px) rotateY(-12deg) rotateX(4deg) rotateZ(-1deg) translateY(-15px); }
}

.glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: var(--accent);
    filter: blur(150px);
    opacity: 0.12;
    z-index: -1;
    border-radius: 50%;
}

/* Stats Section */
.intro-stats {
    padding: 7rem 0;
    background: #060606;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 3.5rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.05);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card h3 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 800;
}

.stat-card p {
    color: var(--text-muted);
    margin-bottom: 1.8rem;
    font-size: 0.95rem;
}

.stat-highlight {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.stat-highlight strong {
    color: var(--accent);
    font-weight: 900;
}

/* E-book Viewer Section */
.reader-section {
    padding: 8rem 0;
    background: #090909;
}

.reader-container {
    background: #121212;
    border: 1px solid var(--border-light);
    border-radius: 28px;
    padding: 4rem 3rem 3rem 3rem;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 850px;
}

.reader-header {
    width: 100%;
    max-width: 780px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding: 1.2rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
}

.page-indicator {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
}

.page-number {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* The Book Page - Super Premium Modern Styled Page */
.page-content {
    display: none;
    background: #fbf9f5; /* Premium soft textured cream paper */
    color: #2b2b2b;
    width: 100%;
    max-width: 780px;
    min-height: 980px;
    padding: 5rem 6rem;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 0, 0, 0.05);
    position: relative;
    margin: 0 auto;
    border-top: 4px solid var(--accent);
    animation: pageTurn 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes pageTurn {
    from { opacity: 0; transform: translateY(15px) rotate(0.5deg); }
    to { opacity: 1; transform: translateY(0) rotate(0deg); }
}

.page-content.active {
    display: block !important;
    opacity: 1 !important;
}

/* Page Copy Styling */
.page-content h3 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: #1c1a17 !important;
    border-bottom: 2px solid #eae6db;
    padding-bottom: 1.2rem;
    line-height: 1.25;
}

.page-content h4 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c2822 !important;
}

.page-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #3d3a33 !important;
    line-height: 1.75;
    font-family: var(--font);
}

.page-content strong {
    color: #0c0b0a !important;
    font-weight: 700;
}

.page-content ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.page-content li {
    margin-bottom: 0.8rem;
    color: #3d3a33 !important;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Styled boxes inside Ebook */
.page-content .highlight-black {
    background: #111111 !important;
    color: #ffffff !important;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.page-content .highlight-black h2 {
    color: #ffffff !important;
    font-weight: 900;
    line-height: 1.25;
}

.page-content .warning-box {
    background: #fff5e6 !important;
    border-left: 4px solid #d4af37 !important;
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 4px 16px 16px 4px;
    font-size: 1.05rem;
    color: #4a453a !important;
    box-shadow: 0 4px 15px rgba(212,175,55,0.05);
}

.page-content .warning-box strong {
    color: #b58d10 !important;
}

.page-content .quote-card {
    background: #fdfaf2 !important;
    border-left: 4px solid var(--accent) !important;
    padding: 2.5rem;
    margin: 3rem 0;
    border-radius: 4px 20px 20px 4px;
    font-style: italic;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.page-content .quote-card p {
    color: #2c2822 !important;
    font-size: 1.15rem !important;
    margin-bottom: 1rem !important;
}

.page-content .quote-card cite {
    display: block;
    font-size: 0.9rem;
    color: var(--accent) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-style: normal;
    font-weight: 700;
}

/* Floating Navigation Arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 100;
    font-size: 1.8rem;
    font-weight: 300;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.nav-arrow:hover {
    background: var(--accent);
    color: #000000;
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    transform: translateY(-50%) scale(1.08);
}

.nav-arrow.prev { left: -85px; }
.nav-arrow.next { right: -85px; }

/* Tablet viewports and medium screens */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    .hero-grid {
        gap: 3rem;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .nav-arrow.prev { left: -35px; }
    .nav-arrow.next { right: -35px; }
    .page-content {
        padding: 4rem 4.5rem;
    }
}

/* Mobile viewports */
@media (max-width: 768px) {
    /* Premium Sticky Navigation Bar Mobile Adjustments */
    .nav-content {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
        padding: 0.5rem 0;
    }
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .nav-links a {
        font-size: 0.8rem;
    }
    .nav-links a.highlight {
        padding: 0.4rem 0.8rem;
    }

    /* Hero Section Mobile Adjustments */
    .hero {
        padding: 8rem 0 4rem 0;
        min-height: auto;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero h1 {
        font-size: 2rem !important;
        margin-bottom: 1.2rem;
    }
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.8rem;
    }
    .floating-book {
        max-width: 260px;
        transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
        animation: floatMobile 6s ease-in-out infinite;
    }
    
    @keyframes floatMobile {
        0%, 100% { transform: perspective(1000px) rotateY(-8deg) rotateX(4deg) translateY(0); }
        50% { transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) translateY(-10px); }
    }

    /* General Typography & Spacing */
    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    .card {
        padding: 2rem 1.5rem;
    }
    .card h3 {
        font-size: 1.3rem;
    }

    /* Ebook Reader Mobile Optimization */
    .reader-container {
        padding: 1.5rem 0.6rem;
        min-height: auto;
        border-radius: 16px;
    }
    .reader-header {
        margin-bottom: 1.5rem;
        padding: 0.8rem 1.2rem;
    }
    .page-indicator {
        font-size: 0.7rem;
    }
    .page-number {
        font-size: 0.85rem;
    }
    
    /* Ebook Page Mobile Style Overrides */
    .page-content {
        padding: 2.2rem 1.2rem !important;
        min-height: auto !important;
        border-radius: 8px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    }
    .page-content h3 {
        font-size: 1.35rem !important;
        margin-bottom: 1.2rem !important;
        padding-bottom: 0.8rem !important;
    }
    .page-content h4 {
        font-size: 1.1rem !important;
        margin-top: 1.5rem !important;
    }
    .page-content p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1rem !important;
    }
    .page-content ul {
        margin-bottom: 1.5rem !important;
        padding-left: 1.2rem !important;
    }
    .page-content li {
        font-size: 0.95rem !important;
        margin-bottom: 0.6rem !important;
    }
    
    /* Styled Boxes Inside Book for Mobile */
    .page-content .highlight-black {
        padding: 1.5rem !important;
        margin: 1.5rem 0 !important;
    }
    .page-content .highlight-black h2 {
        font-size: 1.6rem !important;
    }
    .page-content .warning-box {
        padding: 1.2rem !important;
        margin: 1.5rem 0 !important;
        font-size: 0.95rem !important;
        border-radius: 4px 10px 10px 4px !important;
    }
    .page-content .quote-card {
        padding: 1.2rem !important;
        margin: 1.8rem 0 !important;
        border-radius: 4px 12px 12px 4px !important;
    }
    .page-content .quote-card p {
        font-size: 0.95rem !important;
    }
    .page-content .quote-card strong {
        font-size: 1.15rem !important;
        margin-top: 0.6rem !important;
    }

    /* Hide Absolute Desktop Navigation Arrows */
    .nav-arrow {
        display: none !important;
    }

    /* Show & Style Mobile Controls Bar */
    .mobile-nav-bar {
        display: flex !important;
        width: 100%;
        max-width: 780px;
        justify-content: space-between;
        align-items: center;
        margin-top: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .nav-arrow-mobile {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #ffffff;
        padding: 0.7rem 1.4rem;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 700;
        font-size: 0.85rem;
        transition: var(--transition);
        font-family: var(--font);
    }
    .nav-arrow-mobile:hover {
        background: var(--accent);
        color: #000000;
        border-color: var(--accent);
    }
    .mobile-page-indicator {
        font-size: 0.9rem;
        color: var(--text-muted);
        font-weight: 600;
    }

    /* Hide Dots navigation on mobile to save vertical space and improve usability */
    .reader-nav {
        display: none !important;
    }
    
    /* Payment Page Mobile Adaptability */
    .payment-card {
        padding: 2rem 1.5rem !important;
        border-radius: 20px !important;
        margin: 0 1rem !important;
    }
    .price {
        font-size: 3.2rem !important;
    }
    .account-details {
        padding: 1.5rem 1rem !important;
    }
    #iban {
        font-size: 1rem !important;
    }
}

/* Extra Mobile Adjustments for very small screens (<= 480px) */
@media (max-width: 480px) {
    /* Navbar logo and spacing */
    .logo {
        font-size: 1.1rem !important;
        letter-spacing: 1.5px !important;
    }
    .nav-links {
        gap: 0.6rem !important;
    }
    .nav-links a {
        font-size: 0.75rem !important;
    }
    
    /* Hero section */
    .hero {
        padding: 6.5rem 0 3rem 0 !important;
    }
    .hero h1 {
        font-size: 1.65rem !important;
    }
    .hero p {
        font-size: 0.9rem !important;
    }
    .floating-book {
        max-width: 200px !important;
    }
    
    /* Ebook Reader Section padding */
    .reader-section {
        padding-top: 6.5rem !important;
        padding-bottom: 2.5rem !important;
    }
    .section-title {
        font-size: 1.6rem !important;
        margin-bottom: 1.8rem !important;
    }
    
    /* Ebook Page inside content container spacing */
    .reader-container {
        padding: 0.8rem 0.4rem !important;
        margin: 0 !important;
    }
    
    .page-content {
        padding: 1.5rem 0.8rem !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2) !important;
    }
    
    /* Headline adjustments inside pages */
    .page-content h3 {
        font-size: 1.2rem !important;
        line-height: 1.4 !important;
        margin-bottom: 1rem !important;
    }
    .page-content h4 {
        font-size: 1rem !important;
    }
    
    /* Large styled quotes / texts inside the pages */
    .page-content p[style*="font-size: 1.45rem"] {
        font-size: 1.15rem !important;
        margin: 1.2rem 0 !important;
    }
    .page-content .quote-card strong[style*="font-size: 1.4rem"] {
        font-size: 1.15rem !important;
    }
    
    /* Images inside the reader */
    .page-content img {
        max-width: 100% !important;
        margin: 1rem 0 !important;
    }
    
    /* Buttons in reader */
    .page-content .btn, .page-content button {
        padding: 0.9rem 1.3rem !important;
        font-size: 0.85rem !important;
    }
    
    /* Mobile nav arrows spacing */
    .mobile-nav-bar {
        margin-top: 1rem !important;
    }
    .nav-arrow-mobile {
        padding: 0.6rem 1rem !important;
        font-size: 0.75rem !important;
    }
    .mobile-page-indicator {
        font-size: 0.8rem !important;
    }
    
    /* Bullet points padding */
    .page-content li {
        padding-left: 0.8rem !important;
        font-size: 0.88rem !important;
    }
    
    /* Highlight blocks */
    .page-content .highlight-black h2 {
        font-size: 1.3rem !important;
    }
    .page-content .warning-box p, .page-content .quote-card p {
        font-size: 0.88rem !important;
    }
}

/* Pagination Dots */
.reader-nav {
    display: flex;
    justify-content: center;
    gap: 0.9rem;
    margin-top: 3.5rem;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: var(--transition);
}

.nav-dot.active {
    background: var(--accent);
    transform: scale(1.4);
    box-shadow: 0 0 15px var(--accent);
}

/* Chapters Grid (Coffre-Fort) */
.coffre-section {
    background: #030303;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.secret-card {
    position: relative;
    overflow: hidden;
    background: var(--bg-card) !important;
    border: 1px solid var(--border-light) !important;
    border-radius: 20px !important;
    padding: 2.5rem 2rem !important;
    text-align: center;
    cursor: pointer;
    transition: var(--transition) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.secret-card:hover {
    border-color: rgba(212, 175, 55, 0.4) !important;
    background: rgba(212, 175, 55, 0.04) !important;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.05);
}

.secret-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 25%;
    height: 200%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    pointer-events: none;
}

.secret-card:hover::after {
    left: 140%;
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

/* FAQ Accordion Styling */
.faq-section {
    background: #050505;
}

.faq-item {
    background: rgba(255, 255, 255, 0.015) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 16px !important;
    margin-bottom: 1.2rem;
    overflow: hidden;
    transition: var(--transition) !important;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.2) !important;
    background: rgba(212, 175, 55, 0.01) !important;
}

.faq-trigger {
    font-family: var(--font) !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em;
    transition: var(--transition) !important;
}

.faq-trigger:hover {
    color: var(--accent) !important;
}

.faq-icon {
    font-weight: 400 !important;
}

.faq-content p {
    color: var(--text-muted) !important;
    font-size: 0.98rem !important;
    line-height: 1.7 !important;
}

/* Payment Page Specifics */
.payment-card {
    max-width: 620px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(10, 10, 10, 0.95) 100%) !important;
    border: 1px solid var(--accent) !important;
    padding: 4.5rem 3.5rem !important;
    border-radius: 36px !important;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
}

.price {
    font-size: 5rem;
    font-weight: 900;
    color: var(--accent);
    margin: 1.5rem 0;
    text-shadow: 0 0 40px rgba(212,175,55,0.25);
    font-family: var(--font);
}

.account-details {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px dashed rgba(212, 175, 55, 0.3) !important;
    padding: 2.2rem 1.8rem !important;
    border-radius: 20px !important;
    margin: 2.5rem 0 !important;
    font-family: monospace;
}

/* Exit intent Popup */
#exit-popup > div {
    background: #080808 !important;
    border: 1px solid var(--accent) !important;
    box-shadow: 0 35px 80px rgba(0,0,0,0.95) !important;
    border-radius: 24px !important;
    padding: 4rem 3rem !important;
}

/* Teaser Modal */
#teaser-modal > div {
    background: #080808 !important;
    border: 1px solid var(--accent) !important;
    box-shadow: 0 35px 80px rgba(0,0,0,0.95) !important;
    border-radius: 24px !important;
    padding: 4rem 3rem !important;
}

/* Extrait Page & Extra Pages Minimalistic Style Adjustments */
body > section {
    padding: 8rem 0;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #ffffff 30%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.card:hover {
    border-color: rgba(212,175,55,0.2);
    transform: translateY(-5px);
}

.card h3 {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 1.2rem;
    font-weight: 800;
}

.card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

blockquote {
    font-style: italic;
    color: #ffffff;
    font-size: 1.15rem;
    line-height: 1.75;
}

/* Ebook Viewer on extrait.html page */
.ebook-viewer {
    background: #121212;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.ebook-viewer .page-content {
    box-shadow: none;
    border-radius: 8px;
    min-height: auto;
}

.ebook-viewer .pagination {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
}

.page-btn {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
    font-family: var(--font);
}

.page-btn:hover, .page-btn.active {
    background: var(--accent);
    color: #000000;
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.story-section {
    background: radial-gradient(circle at 10% 50%, rgba(var(--accent-rgb), 0.03) 0%, transparent 60%);
}

footer {
    background: #030303;
}

/* Custom Scrollbar for premium look */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #030303;
}
::-webkit-scrollbar-thumb {
    background: #222222;
    border-radius: 10px;
    border: 2px solid #030303;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}
