:root {
    --neon-blue: #ff9900; /* Changed to orange */
    --deep-purple: #0f0326;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #000;
    color: white;
}

.bg-deep-purple {
    background-color: var(--deep-purple);
}

.text-neon-blue {
    color: var(--neon-blue);
}

.border-neon-blue {
    border-color: var(--neon-blue);
}

.hero-bg {
    background: linear-gradient(135deg, rgba(15,3,38,0.95) 0%, rgba(0,0,0,0.9) 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Changed blue to orange in SVG */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Cdefs%3E%3ClinearGradient id='a' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0' stop-color='%23000000' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23ff9900' stop-opacity='0.1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpattern id='b' width='24' height='24' patternUnits='userSpaceOnUse'%3E%3Ccircle fill='%23ff9900' cx='12' cy='12' r='0.5'/%3E%3C/pattern%3E%3Crect width='100%25' height='100%25' fill='url(%23a)'/%3E%3Crect width='100%25' height='100%25' fill='url(%23b)'/%3E%3C/svg%3E");
    opacity: 0.15;
    z-index: 0;
}

.glow {
    box-shadow: 0 0 15px rgba(255, 153, 0, 0.5); /* orange glow */
}

.btn-gradient {
    background: linear-gradient(90deg, #ff9900, #ff6600); /* orange gradient */
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 153, 0, 0.7); /* orange glow */
}

.ebook-mockup {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ebook-placeholder {
    position: relative;
    width: 330px;
    height: 430px;
    background: linear-gradient(145deg, #1a1a1a, #0f0326);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(255, 153, 0, 0.2); /* orange shadow */
    overflow: hidden;
    transform: perspective(800px) rotateY(-15deg);
    transition: transform 0.5s ease;
}

.ebook-placeholder img {
    width: 100%;
    height: 100%;
}

.ebook-placeholder:hover {
    transform: perspective(800px) rotateY(-5deg);
}

.ebook-placeholder::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 65%, rgba(255, 153, 0, 0.3) 100%); /* orange */
    z-index: 2;
}

.ebook-placeholder::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--neon-blue);
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    width: 80%;
    text-shadow: 0 0 10px rgba(255, 153, 0, 0.7); /* orange */
}

.ebook-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 153, 0, 0.2) 0%, transparent 70%); /* orange */
    z-index: 1;
}

.mobile-menu {
    display: none;
}

.hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    z-index: 1;
}

.feature-card {
    background: linear-gradient(145deg, #0a0a0a, #0f0326);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 153, 0, 0.1); /* orange */
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 153, 0, 0.2); /* orange */
    border: 1px solid rgba(255, 153, 0, 0.3); /* orange */
}

.feature-icon {
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.1) 0%, rgba(255, 102, 0, 0.1) 100%); /* orange */
    border-radius: 50%;
    padding: 16px;
    display: inline-flex;
    margin-bottom: 20px;
}

.feature-icon svg {
    filter: drop-shadow(0 0 5px rgba(255, 153, 0, 0.5)); /* orange */
}

.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ff9900, #ff6600); /* orange */
    border-radius: 3px;
}

/* Testimonial Styles */
        .testimonial-card {
            background: linear-gradient(145deg, #0a0a0a, #0f0326);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 247, 255, 0.1);
            height: 100%;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 247, 255, 0.2);
            border: 1px solid rgba(0, 247, 255, 0.3);
        }
        
        .avatar-container {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(0, 247, 255, 0.2) 0%, rgba(0, 102, 255, 0.2) 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto 16px;
            box-shadow: 0 0 15px rgba(0, 247, 255, 0.3);
        }
        
        .star-rating {
            color: var(--neon-blue);
            display: flex;
            justify-content: center;
            margin-bottom: 12px;
        }
        
        .star-rating svg {
            filter: drop-shadow(0 0 3px rgba(0, 247, 255, 0.5));
        }
        
        .testimonial-divider {
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, #00f7ff, #0066ff);
            margin: 12px auto;
        }

        /* Audio Player Styles */
        .audio-samples {
            background: linear-gradient(145deg, #080808, #0f0326);
            border-radius: 16px;
            border: 1px solid rgba(0, 247, 255, 0.15);
            padding: 30px;
            margin-top: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        
        .audio-player {
            background: linear-gradient(145deg, #0a0a0a, #0f0326);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
            border: 1px solid rgba(0, 247, 255, 0.1);
            transition: all 0.3s ease;
        }
        
        .audio-player:hover {
            border: 1px solid rgba(0, 247, 255, 0.3);
            box-shadow: 0 5px 15px rgba(0, 247, 255, 0.1);
        }
        
        .audio-player:last-child {
            margin-bottom: 0;
        }
        
        .audio-title {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .audio-icon {
            background: linear-gradient(135deg, rgba(0, 247, 255, 0.1) 0%, rgba(0, 102, 255, 0.1) 100%);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 15px;
        }
        
        .audio-controls {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .play-btn {
            background: linear-gradient(135deg, #00f7ff, #0066ff);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            margin-right: 15px;
            transition: all 0.3s ease;
            box-shadow: 0 0 10px rgba(0, 247, 255, 0.5);
        }
        
        .play-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 0 15px rgba(0, 247, 255, 0.7);
        }
        
        .progress-container {
            flex-grow: 1;
            height: 6px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }
        
        .progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #00f7ff, #0066ff);
            border-radius: 3px;
            position: absolute;
            top: 0;
            left: 0;
            transition: width 0.1s linear;
        }
        
        .time-display {
            margin-left: 15px;
            font-size: 14px;
            color: #a0a0a0;
            min-width: 80px;
            text-align: right;
        }
        
        .audio-waveform {
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 10px;
        }
        
        .waveform-bar {
            width: 3px;
            background: linear-gradient(to top, rgba(0, 247, 255, 0.3), rgba(0, 102, 255, 0.3));
            border-radius: 1.5px;
            margin: 0 2px;
        }

/* FAQ Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 153, 0, 0.2); /* orange */
    overflow: hidden;
}

.faq-question {
    cursor: pointer;
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 5px rgba(255, 153, 0, 0.3); /* orange */
}

.faq-question.active {
    color: var(--neon-blue);
    text-shadow: 0 0 8px rgba(255, 153, 0, 0.5); /* orange */
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    transition: all 0.3s ease;
}

.faq-question.active::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0 20px;
    color: #b8b8b8;
}

.faq-answer.show {
    max-height: 500px;
    padding-bottom: 20px;
}

/* Footer Styles */
.footer {
    background-color: #050505;
    border-top: 1px solid rgba(255, 153, 0, 0.1); /* orange */
}

.footer-link {
    color: #a0a0a0;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 5px rgba(255, 153, 0, 0.3); /* orange */
}

.footer-divider {
    color: #444;
    margin: 0 10px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    background: linear-gradient(145deg, #0a0a0a, #0f0326);
    border-radius: 12px;
    border: 1px solid rgba(255, 153, 0, 0.2); /* orange */
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #a0a0a0;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 5px rgba(255, 153, 0, 0.5); /* orange */
}

@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .ebook-placeholder {
        width: 220px;
        height: 320px;
        margin: 0 auto;
    }
    
    .modal-content {
        margin: 20px auto;
        padding: 20px;
    }
}