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

:root {
    --bg-dark: #0d0d12;
    --bg-glass: rgba(20, 20, 30, 0.6);
    --text-primary: #f8f8f8;
    --text-secondary: #b0b0c0;
    --accent-purple: #9d4edd;
    --accent-pink: #ff70a6;
    --accent-gradient: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px; /* A11y base font size */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    /* Deep space background with subtle radial glow */
    background-image: radial-gradient(circle at 15% 50%, rgba(157, 78, 221, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 85% 30%, rgba(255, 112, 166, 0.05) 0%, transparent 50%);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-desc {
    text-align: center;
    color: var(--text-secondary);
    max-width: 600px;
    margin: -2rem auto 3rem;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: 0 4px 15px rgba(157, 78, 221, 0.25);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(255, 112, 166, 0.5), 0 0 15px rgba(157, 78, 221, 0.4);
    transform: translateY(-2px) scale(1.02);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-outline {
    border: 2px solid var(--accent-purple);
    color: #f8f8f8; /* Ensures WCAG AA over dark bg */
    background: transparent;
    text-shadow: none;
}

.btn-outline:hover {
    background: var(--accent-purple);
    color: #fff;
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.5);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.2rem;
    border-radius: 40px;
}

.btn-full {
    width: 100%;
    margin-top: 1.5rem;
}

/* Navbar (Glassmorphism) */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(13, 13, 18, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-glass);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    letter-spacing: -0.01em;
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--accent-pink);
    text-shadow: 0 0 8px rgba(255, 112, 166, 0.4);
}

.nav-actions {
    display: flex;
    gap: 12px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    padding: 200px 20px 120px;
    text-align: center;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Subtle glow behind hero text */
.hero-section::before {
    content: '';
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    max-width: 600px;
    max-height: 600px;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.15) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
}

.discount-tag {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    background: rgba(255, 112, 166, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: var(--accent-pink);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 112, 166, 0.3);
    box-shadow: 0 0 15px rgba(255, 112, 166, 0.15);
}

.hero-section h1 {
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 24px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    letter-spacing: -0.03em;
}

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

.btn-dofollow {
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: 0 4px 20px rgba(157, 78, 221, 0.3);
}

.btn-dofollow:hover {
    box-shadow: 0 8px 30px rgba(255, 112, 166, 0.5), 0 0 20px rgba(157, 78, 221, 0.4);
    transform: translateY(-3px) scale(1.02);
}

/* Common Grids */
.grid-4-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.grid-3-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

/* Cards Base (Glassmorphism) */
.card {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius);
    padding: 36px 28px;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(157, 78, 221, 0.4);
    box-shadow: 0 15px 40px rgba(157, 78, 221, 0.15), 0 0 15px rgba(255, 112, 166, 0.1);
}

/* Features */
.features-section {
    padding: 100px 0;
    position: relative;
}

.feature-card {
    text-align: center;
}

.card-icon {
    font-size: 3.2rem;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 10px rgba(157, 78, 221, 0.4));
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: #fff;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.streaming-card {
    background: linear-gradient(180deg, var(--bg-glass) 0%, rgba(157, 78, 221, 0.1) 100%);
}

/* Pricing */
.pricing-section {
    padding: 100px 0;
    position: relative;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.highlighted {
    border-color: rgba(157, 78, 221, 0.5);
    transform: scale(1.05);
    background: linear-gradient(180deg, rgba(255, 112, 166, 0.05) 0%, var(--bg-glass) 100%);
    box-shadow: 0 10px 40px rgba(157, 78, 221, 0.2);
}

.pricing-card.highlighted:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 20px 50px rgba(157, 78, 221, 0.3), 0 0 20px rgba(255, 112, 166, 0.2);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(255, 112, 166, 0.4);
    letter-spacing: 0.05em;
}

.plan-name {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-weight: 600;
}

.plan-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1;
}

.plan-price span {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.plan-features {
    flex-grow: 1;
    margin-bottom: 20px;
}

.plan-features li {
    margin-bottom: 14px;
    color: var(--text-primary);
    position: relative;
    padding-left: 28px;
    font-size: 1.05rem;
}

.plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-pink);
    font-weight: 900;
    text-shadow: 0 0 5px rgba(255, 112, 166, 0.5);
}

/* Platforms */
.platforms-section {
    padding: 100px 0;
}

.platform-card {
    text-align: center;
}

.platform-card h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.platform-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 1rem;
    min-height: 48px;
}

/* Why Choose (SEO Text) */
.why-choose-section {
    padding: 100px 0;
    background: rgba(20, 20, 30, 0.3);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.seo-content {
    max-width: 800px;
    margin: 0 auto;
}

.seo-content article {
    margin-bottom: 45px;
}

.seo-content h3 {
    font-size: 1.5rem;
    color: var(--accent-pink);
    margin-bottom: 18px;
    text-shadow: 0 0 10px rgba(255, 112, 166, 0.2);
}

.seo-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

.seo-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Testimonials Marquee */
.testimonials-section {
    padding: 100px 0;
    overflow: hidden;
}

.marquee-container {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    display: flex;
    overflow: hidden;
}

/* Masking edges for a smooth fade out */
.marquee-container::before,
.marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 15vw;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}
.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}

.marquee-content {
    display: flex;
    gap: 24px;
    padding: 20px;
    animation: scroll 40s linear infinite;
    width: max-content;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.testimonial-card {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    padding: 30px;
    border-radius: var(--border-radius);
    width: 380px;
    flex-shrink: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.stars {
    color: var(--accent-pink);
    font-size: 1.2rem;
    margin-bottom: 12px;
    text-shadow: 0 0 5px rgba(255, 112, 166, 0.4);
}

.review-text {
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.6;
}

.reviewer {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 700;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 12px)); }
}

/* FAQ */
.faq-section {
    padding: 100px 0;
}

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

details {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
}

details:hover {
    border-color: rgba(157, 78, 221, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

summary {
    padding: 24px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
    color: #fff;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: "+";
    position: absolute;
    right: 24px;
    font-size: 1.6rem;
    color: var(--accent-pink);
    transition: var(--transition);
}

details[open] summary::after {
    content: "-";
    transform: rotate(180deg);
    color: var(--accent-purple);
}

.faq-answer {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Bottom CTA */
.bottom-cta-section {
    padding: 120px 20px;
    background: radial-gradient(circle at 50% 50%, rgba(157, 78, 221, 0.15) 0%, var(--bg-dark) 100%);
    border-top: 1px solid var(--border-glass);
}

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

.bottom-cta-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.bottom-cta-section p {
    color: var(--text-secondary);
    font-size: 1.3rem;
    margin-bottom: 40px;
}

.cta-large-btn {
    font-size: 1.5rem;
    padding: 20px 56px;
    box-shadow: 0 8px 30px rgba(157, 78, 221, 0.3);
}
.cta-large-btn:hover {
    box-shadow: 0 12px 40px rgba(255, 112, 166, 0.6), 0 0 25px rgba(157, 78, 221, 0.5);
}

/* Footer */
.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 0;
    text-align: center;
    background: #08080c;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--accent-pink);
    text-shadow: 0 0 8px rgba(255, 112, 166, 0.3);
}

.copyright {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive (Mobile First Focus) */
@media (max-width: 992px) {
    .pricing-card.highlighted {
        transform: none;
    }
    .pricing-card.highlighted:hover {
        transform: translateY(-8px);
    }
    .hero-section h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 160px;
        min-height: 70vh;
    }
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }

    .nav-links, .nav-actions {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(13, 13, 18, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        position: absolute;
        top: 60px;
        left: 0;
        padding: 20px;
        text-align: center;
        border-bottom: 1px solid var(--border-glass);
    }

    .nav-links.active, .nav-actions.active {
        display: flex;
    }
    
    .nav-actions {
        top: 260px;
        border-top: none;
    }

    .mobile-menu-toggle {
        display: block;
    }
    
    .grid-4-col, .grid-3-col {
        grid-template-columns: 1fr;
    }
    
    /* Ensure minimum touch target size */
    .btn, summary, .nav-links a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    summary {
        justify-content: flex-start;
    }
    
    .bottom-cta-section h2 {
        font-size: 2.2rem;
    }
}

.brand-logo img.logo-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: contain;
    background-color: #fff;
    padding: 3px;
    box-shadow: 0 0 8px rgba(157, 78, 221, 0.5);
}
