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

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #0A0A0C;
    --secondary-color: #1A1A1C;
    --accent-gold: #EEBF0A;
    --accent-red: #E23121;
    --accent-green: #CAAA07;
    --accent-teal: #126966;
    --text-light: #E0E0E0;
    --text-white: #ffffff;
    --background-dark: #040506;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background-color: var(--background-dark);
}

/* Header and Navigation */
header {
    background-color: var(--primary-color);
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    height: 60px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    width: 30px;
    height: 30px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-white);
    margin: 5px 0;
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 10px;
}

.hamburger span:nth-child(3) {
    top: 20px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
}

/* Main Content */
main {
    margin-top: 60px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--background-dark) 0%, var(--primary-color) 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

/* Audiobook Player Styles */
.audiobook-player {
    margin: 2rem auto;
    max-width: 300px;
    background: rgba(26, 26, 28, 0.9);
    border-radius: 12px;
    padding: 1.5rem;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.audiobook-title {
    font-size: 1.2rem;
    color: var(--accent-gold);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: bold;
}

.audio-container {
    position: relative;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
}

.audiobook-cover {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.audio-container:hover .play-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.audio-container:hover .play-button {
    transform: scale(1.1);
    background: rgba(0, 0, 0, 0.8);
}

.play-icon, .pause-icon {
    width: 40px;
    height: 40px;
    color: var(--accent-gold);
}

.audio-controls {
    margin-top: 1rem;
}

.audio-progress {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    outline: none;
}

.audio-progress::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    background: var(--accent-gold);
    border-radius: 50%;
    cursor: pointer;
}

.audio-progress::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: var(--accent-gold);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.audio-time {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.tagline {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-red);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(226, 49, 33, 0.4);
}

/* Books Section */
.books-section {
    padding: 5rem 5%;
    background-color: var(--secondary-color);
}

.books-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--accent-gold);
}

.books-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.book-card {
    background-color: var(--primary-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.book-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.book-cover {
    width: 200px;
    height: 300px;
    margin: 0 auto 1.5rem;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.book-cover:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.book-1 {
    background-image: url('book1.png');
}

.book-2 {
    background-image: url('book2.png');
}

.book-3 {
    background-image: url('book3.png');
}

.book-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.book-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.book-buttons {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
}

.book-cta {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    color: var(--text-white);
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    min-width: 120px;
}

.ebook-btn {
    background-color: var(--accent-teal);
}

.ebook-btn:hover {
    background-color: var(--accent-green);
    transform: translateY(-2px);
}

.audiobook-btn {
    background-color: var(--accent-red);
}

.audiobook-btn:hover {
    background-color: var(--accent-gold);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.preorder-btn {
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-green));
    position: relative;
    overflow: hidden;
}

.preorder-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.preorder-btn:hover::before {
    left: 100%;
}

.preorder-btn:hover {
    background: linear-gradient(45deg, var(--accent-green), var(--accent-gold));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(238, 191, 10, 0.4);
}

/* Packages Section */
.packages-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
}

.packages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(202, 170, 7, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.packages-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.packages-header {
    text-align: center;
    margin-bottom: 4rem;
}

.packages-header h2 {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.packages-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 1rem;
    opacity: 0.8;
}

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

.package-card {
    background: rgba(26, 26, 28, 0.8);
    border: 2px solid rgba(238, 191, 10, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(238, 191, 10, 0.3);
}

.package-card.popular {
    border-color: var(--accent-green);
    transform: scale(1.05);
}

.package-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-card.ultimate {
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, rgba(238, 191, 10, 0.1), rgba(26, 26, 28, 0.8));
}

.package-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-green);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ultimate-badge {
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-red));
}

.package-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.package-card h3 {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.package-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.package-contents {
    text-align: left;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.content-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.content-item.bonus {
    color: var(--accent-green);
    font-weight: 500;
}

.check {
    color: var(--accent-green);
    font-weight: bold;
    font-size: 1.1rem;
    min-width: 20px;
}

.package-pricing {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(238, 191, 10, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(238, 191, 10, 0.3);
}

.original-price {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.bundle-price {
    font-size: 2.5rem;
    color: var(--accent-gold);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.savings {
    color: var(--accent-green);
    font-weight: 600;
    font-size: 1.1rem;
}

.package-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ebook-bundle {
    background: linear-gradient(45deg, var(--accent-teal), var(--accent-green));
    color: white;
}

.ebook-bundle:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(18, 105, 102, 0.4);
}

.audiobook-bundle {
    background: linear-gradient(45deg, var(--accent-red), var(--accent-gold));
    color: white;
}

.audiobook-bundle:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(226, 49, 33, 0.4);
}

.ultimate-bundle {
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-green), var(--accent-red));
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.ultimate-bundle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.ultimate-bundle:hover::before {
    left: 100%;
}

.ultimate-bundle:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(238, 191, 10, 0.5);
}

.packages-footer {
    text-align: center;
    margin-top: 3rem;
}

.guarantee {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(18, 105, 102, 0.2);
    padding: 1rem 2rem;
    border-radius: 25px;
    border: 1px solid rgba(18, 105, 102, 0.4);
    color: var(--text-light);
    font-weight: 500;
}

.guarantee-icon {
    font-size: 1.2rem;
}

/* Responsive Design for Packages */
@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .package-card.popular {
        transform: none;
    }
    
    .package-card.popular:hover {
        transform: translateY(-10px);
    }
    
    .packages-header h2 {
        font-size: 2.5rem;
    }
    
    .bundle-price {
        font-size: 2rem;
    }
    
    .package-card {
        padding: 2rem;
    }
}

/* About Section */
.about-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(238, 191, 10, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(226, 49, 33, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-header h2 {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.section-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.deco-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.deco-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-intro {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--text-light);
    text-align: center;
}

.about-intro strong {
    color: var(--accent-gold);
    font-weight: 700;
}

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

.feature-card {
    background: rgba(26, 26, 28, 0.6);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(238, 191, 10, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(238, 191, 10, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.about-quote {
    background: linear-gradient(135deg, rgba(238, 191, 10, 0.1), rgba(202, 170, 7, 0.1));
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--accent-gold);
    margin-top: 2rem;
}

.about-quote blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    text-align: center;
}

.about-visual {
    position: relative;
    height: 400px;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    left: 10%;
    animation-delay: 1.2s;
}

.element-3 {
    top: 30%;
    left: 70%;
    animation-delay: 2.4s;
}

.element-4 {
    top: 80%;
    left: 60%;
    animation-delay: 3.6s;
}

.element-5 {
    top: 50%;
    left: 40%;
    animation-delay: 4.8s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Responsive Design for About Section */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-header h2 {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-visual {
        height: 200px;
    }
    
    .element {
        font-size: 1.5rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--background-dark) 0%, var(--secondary-color) 100%);
    position: relative;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-header h2 {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 1rem;
    opacity: 0.8;
}

.testimonials-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    padding: 1rem;
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.testimonials-controls.sticky {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 12, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(238, 191, 10, 0.2);
    z-index: 999;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    padding: 0.75rem 1rem;
    margin-bottom: 0;
    transition: none;
}

.testimonial-filter {
    background: rgba(26, 26, 28, 0.6);
    border: 1px solid rgba(238, 191, 10, 0.3);
    color: var(--text-light);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.testimonial-filter:hover,
.testimonial-filter.active {
    background: var(--accent-gold);
    color: var(--primary-color);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.filters-placeholder {
    visibility: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: rgba(26, 26, 28, 0.7);
    border: 1px solid rgba(238, 191, 10, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.3s ease forwards;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(238, 191, 10, 0.2);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-rating {
    display: flex;
    gap: 2px;
}

.star {
    color: var(--accent-gold);
    font-size: 1rem;
}

.star.empty {
    color: rgba(238, 191, 10, 0.3);
}

.testimonial-badges {
    display: flex;
    gap: 0.5rem;
}

.testimonial-badge {
    background: var(--accent-teal);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

.testimonial-badge.verified {
    background: var(--accent-green);
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(238, 191, 10, 0.2);
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.author-info {
    flex: 1;
}

.author-name {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.author-source {
    color: var(--text-light);
    font-size: 0.8rem;
    opacity: 0.7;
}

.testimonials-footer {
    text-align: center;
}

.load-more-btn {
    background: linear-gradient(45deg, var(--accent-teal), var(--accent-green));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(18, 105, 102, 0.4);
}

.load-more-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.testimonials-count {
    color: var(--text-light);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design for Testimonials */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonials-header h2 {
        font-size: 2.5rem;
    }
    
    .testimonials-controls {
        gap: 0.5rem;
    }
    
    .testimonial-filter {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* Discord Integration Styles */
.discord-item {
    display: flex;
    align-items: center;
}

.discord-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    background: rgba(88, 101, 242, 0.1);
    transition: all 0.3s ease;
}

.discord-link:hover {
    background: rgba(88, 101, 242, 0.2);
    color: #5865F2 !important;
}

.discord-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.discord-text {
    font-size: 0.9rem;
    display: none;
}

.discord-count {
    font-size: 0.75rem;
    padding: 0.15rem 0.5rem;
    background: rgba(88, 101, 242, 0.2);
    border-radius: 12px;
    color: #B8BFE8;
    white-space: nowrap;
}

@media (min-width: 1024px) {
    .discord-text {
        display: inline;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(238, 191, 10, 0.3);
}

.back-to-top:hover {
    background: var(--accent-green);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(238, 191, 10, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Footer */
footer {
    background-color: var(--primary-color);
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 60px);
        background: #0A0A0C;
        flex-direction: column;
        padding: 2rem 0;
        gap: 0;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
        border-left: 2px solid var(--accent-gold);
        overflow-y: auto;
        z-index: 1001;
        display: flex;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
        list-style: none;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: background 0.3s ease;
    }
    
    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    /* Discord mobile styles */
    .discord-item {
        width: 100%;
    }
    
    .discord-link {
        margin: 1rem 2rem;
        justify-content: center;
        background: rgba(88, 101, 242, 0.15);
    }
    
    .discord-text {
        display: inline;
    }
}

/* Responsive Design - Other Elements */
@media (max-width: 768px) {
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .books-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .book-cover {
        width: 150px;
        height: 225px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 1rem 3%;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* Notification Modal Styles */
.notification-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--card-bg);
    margin: 5% auto;
    padding: 2.5rem;
    border: 2px solid var(--accent-gold);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 30px rgba(238, 191, 10, 0.3);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    color: var(--text-light);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    position: absolute;
    right: 1.5rem;
    top: 1rem;
}

.close-modal:hover {
    color: var(--accent-gold);
}

.modal-content h2 {
    color: var(--accent-gold);
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.modal-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.notification-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input[type="email"],
.form-group select {
    padding: 0.8rem;
    border: 1px solid rgba(238, 191, 10, 0.3);
    border-radius: 8px;
    background-color: rgba(26, 26, 28, 0.8);
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input[type="email"]:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(238, 191, 10, 0.2);
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.submit-notification {
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-green));
    color: var(--text-white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
}

.submit-notification:hover {
    background: linear-gradient(45deg, var(--accent-green), var(--accent-gold));
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(238, 191, 10, 0.4);
}

.privacy-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 1rem;
    opacity: 0.8;
}

.notification-success {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto 1.5rem;
    animation: successPulse 0.5s ease-out;
}

@keyframes successPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.notification-success h3 {
    color: var(--accent-gold);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.notification-success p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Tag-based testimonial filtering */

.testimonial-filter {
    padding: 0.5rem 1rem;
    background: rgba(26, 26, 28, 0.8);
    border: 1px solid rgba(238, 191, 10, 0.3);
    border-radius: 20px;
    color: var(--text-light);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-filter:hover {
    background: rgba(238, 191, 10, 0.1);
    border-color: var(--accent-gold);
    color: var(--text-white);
}

.testimonial-filter.active {
    background: var(--accent-gold);
    color: var(--primary-color);
    border-color: var(--accent-gold);
}

.tag-badge {
    background: rgba(238, 191, 10, 0.2);
    border: 1px solid rgba(238, 191, 10, 0.4);
    color: var(--accent-gold);
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
}

/* Privacy Policy Styles */
.privacy-policy {
    padding-top: 80px;
    min-height: 100vh;
}

.privacy-policy .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 5%;
}

.privacy-policy h1 {
    color: var(--accent-gold);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.privacy-policy .last-updated {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-style: italic;
}

.privacy-policy section {
    margin-bottom: 2.5rem;
}

.privacy-policy h2 {
    color: var(--accent-gold);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid rgba(238, 191, 10, 0.3);
    padding-bottom: 0.5rem;
}

.privacy-policy h3 {
    color: var(--text-white);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}

.privacy-policy p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-policy ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.privacy-policy li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.privacy-policy strong {
    color: var(--text-white);
}

.privacy-policy a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.privacy-policy a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Mobile responsiveness for privacy policy */
@media (max-width: 768px) {
    .privacy-policy h1 {
        font-size: 2rem;
    }
    
    .privacy-policy h2 {
        font-size: 1.5rem;
    }
    
    .privacy-policy .container {
        padding: 1.5rem 4%;
    }
}