/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #0a0a0a;
    --secondary-bg: #121212;
    --accent-cyan: #00f0ff;
    --accent-pink: #ff2a6d;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --gradient-primary: linear-gradient(45deg, var(--accent-cyan), var(--accent-pink));
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 1000;
    border-radius: 0 2px 2px 0;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px var(--accent-cyan);
}

/* Particle Background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--accent-cyan);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    opacity: 0.6;
}

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

/* Navigation */
/* Top Banner Ad Styles */
.top-banner-ad {
    background: rgba(10, 10, 10, 0.9);
    border-bottom: 1px solid var(--glass-border);
    text-align: center;
    padding: 0.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
    backdrop-filter: blur(10px);
}

.nav {
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 100;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.logo-tagline {
    font-size: 1.2rem;
    color: var(--accent-cyan);
    font-weight: 600;
    text-shadow: 0 0 10px var(--accent-cyan);
}

.nav-stats {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.stat-label {
    color: var(--text-secondary);
}

.stat-counter {
    color: var(--accent-cyan);
    font-weight: 800;
    font-size: 1.8rem;
    text-shadow: 0 0 20px var(--accent-cyan);
    background: rgba(0, 240, 255, 0.15);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    border: 2px solid rgba(0, 240, 255, 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
    display: inline-block;
    min-width: 150px;
    text-align: center;
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
        transform: scale(1.02);
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 220px;
    background: radial-gradient(ellipse at center, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff, var(--accent-cyan), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.check {
    color: #00ff88;
    text-shadow: 0 0 10px #00ff88;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    margin-bottom: 4rem;
}

.btn-primary {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 240, 255, 0.4);
}

.btn-primary::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 ease;
}

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

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-cyan);
    text-shadow: 0 0 10px var(--accent-cyan);
}

.stat-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Features Section */
.features {
    padding: 8rem 0;
    position: relative;
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 8rem;
}

.feature-item.reverse {
    direction: rtl;
}

.feature-item.reverse > * {
    direction: ltr;
}

.feature-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.feature-visual {
    display: flex;
    justify-content: center;
}

.feature-card {
    position: relative;
    width: 400px;
    height: 300px;
    background: var(--gradient-glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, var(--accent-cyan), var(--accent-pink), var(--accent-cyan));
    opacity: 0.1;
    animation: rotate 6s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.card-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-preview {
    text-align: center;
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.video-info {
    color: var(--text-primary);
    font-weight: 600;
}

.editor-interface {
    width: 100%;
}

.prompt-box {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--accent-cyan);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.typing-indicator {
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-cyan);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.media-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
}

.media-item {
    aspect-ratio: 16/9;
    background: linear-gradient(45deg, var(--accent-cyan), var(--accent-pink));
    border-radius: 8px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.media-item:hover {
    opacity: 1;
}

/* Mid CTA */
.mid-cta {
    padding: 4rem 0;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(255, 42, 109, 0.1) 0%, transparent 70%);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--accent-pink);
    color: var(--accent-pink);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--accent-pink);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 42, 109, 0.3);
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

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

/* AI Powers Section */
.ai-powers {
    padding: 8rem 0;
    background: rgba(0, 240, 255, 0.02);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Sidebar Ad Card */
.sidebar-ad-card {
    background: var(--gradient-glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1rem;
    text-align: center;
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.power-card {
    background: var(--gradient-glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.power-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 240, 255, 0.1);
}

.power-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.power-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

/* Testimonials Section */
.testimonials {
    padding: 8rem 0;
}

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

.testimonial-card {
    height: 200px;
    perspective: 1000px;
}

.testimonial-content {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.testimonial-card:hover .testimonial-content {
    transform: rotateY(180deg);
}

.testimonial-front,
.testimonial-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: var(--gradient-glass);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    backdrop-filter: blur(20px);
}

.testimonial-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(255, 42, 109, 0.1));
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.author {
    font-weight: 600;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
}

.source {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.rating {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.details {
    color: var(--text-secondary);
}

/* FAQ Section */
.faq {
    padding: 8rem 0;
    background: rgba(255, 42, 109, 0.02);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--gradient-glass);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 240, 255, 0.05);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--accent-cyan);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 2rem 2rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    padding: 8rem 0;
    background: radial-gradient(ellipse at center, rgba(0, 240, 255, 0.1) 0%, rgba(255, 42, 109, 0.1) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="stars" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%2300f0ff" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23ff2a6d" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.time-saved {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.time-label {
    color: var(--text-secondary);
}

.time-counter {
    color: var(--accent-pink);
    font-weight: 600;
    text-shadow: 0 0 10px var(--accent-pink);
}

.btn-final {
    display: inline-block;
    padding: 1.5rem 4rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(0, 240, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-final:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 240, 255, 0.4);
}

.btn-final::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-final:hover::after {
    width: 300px;
    height: 300px;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
    background: rgba(10, 10, 10, 0.8);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.disclaimer {
    flex: 1;
    min-width: 300px;
}

.disclaimer p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.footer-nav {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Removed quiz modal styles as per user request */

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-cta a {
    display: block;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.3);
    transition: transform 0.3s ease;
}

.floating-cta a:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding-top: 200px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .feature-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .feature-item.reverse {
        direction: ltr;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .powers-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar-ad-card {
        min-height: 400px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .floating-cta {
        bottom: 1rem;
        right: 1rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .feature-card {
        width: 100%;
        max-width: 400px;
    }
    
    .top-banner-ad {
        padding: 0.25rem 0;
    }
    
    .nav {
        top: 80px;
        padding: 1.5rem 0;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    .logo-tagline {
        font-size: 1rem;
        margin-top: 0.25rem;
    }
    
    .nav-stats {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    .stat-counter {
        font-size: 1.5rem;
        padding: 0.5rem 1.2rem;
        margin-left: 0.5rem;
    }
}

@media (max-width: 480px) {
    .top-banner-ad {
        padding: 0.4rem 0;
        height: 70px;
    }
    
    .nav {
        top: 70px;
        padding: 1.25rem 0;
    }
    
    .nav-container {
        gap: 0.75rem;
    }
    
    .logo-text {
        font-size: 1.75rem;
    }
    
    .logo-tagline {
        font-size: 0.9rem;
    }
    
    .nav-stats {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .stat-counter {
        font-size: 1.3rem;
        padding: 0.4rem 1rem;
    }
    
    .hero {
        padding-top: 180px;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .btn-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .feature-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .sidebar-ad-card {
        min-height: 300px;
    }
}

/* Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}