:root {
    --primary-color: #00ff88;
    --secondary-color: #00b8ff;
    --background-dark: #0a0a0a;
    --surface-dark: #121212;
    --surface-light: #1e1e1e;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --gradient-main: linear-gradient(135deg, #00ff88 0%, #00b8ff 100%);
    --glass-bg: rgba(30, 30, 30, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-glow: 0 0 20px rgba(0, 255, 136, 0.3);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--background-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-speed);
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-secondary);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.cta-button {
    background: var(--gradient-main);
    color: var(--background-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: var(--shadow-glow);
    transition: transform var(--transition-speed);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 184, 255, 0.5);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(0, 255, 136, 0.1) 0%, rgba(10, 10, 10, 1) 70%);
    text-align: center;
    padding-top: 180px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.secondary-button {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
}

.secondary-button:hover {
    background: rgba(0, 255, 136, 0.1);
}

/* Features/Carousel Mockup */
.carousel-section {
    padding: 5rem 0;
    background: var(--surface-dark);
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
}

.section-title p {
    color: var(--text-secondary);
}

.carousel-container {
    display: flex;
    gap: 20px;
    animation: scroll 20s linear infinite;
    width: max-content;
}

.carousel-item {
    width: 200px;
    height: 120px;
    background: var(--surface-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.carousel-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05));
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pricing */
.pricing {
    padding: 5rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: var(--surface-light);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: var(--transition-speed);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    background: rgba(30, 30, 30, 0.8);
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.1);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.plan-name {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.plan-price span {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.plan-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

.plan-features li i {
    color: var(--primary-color);
}

/* Content SEO Section */
.seo-content {
    padding: 5rem 0;
    background: var(--surface-dark);
}

.seo-text {
    max-width: 800px;
    margin: 0 auto;
}

.seo-text p {
    margin-bottom: 1.5rem;
    color: #ccc;
    font-size: 1.1rem;
}

.seo-text h2 {
    color: var(--primary-color);
    margin-top: 2rem;
}

/* Footer */
footer {
    background: #050505;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    color: var(--text-secondary);
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

/* Pricing Grid - Force 4 horizontally on large screens */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Mobile Menu */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #fff;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        background: rgba(10, 10, 10, 0.98);
        top: 70px;
        left: 0;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        align-items: center;
        padding-top: 2rem;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}

/* Movie Carousel Posters */
.movie-poster {
    width: 150px;
    height: 220px;
    background: #222;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: end;
    justify-content: center;
    padding-bottom: 10px;
    border: 1px solid var(--glass-border);
}

.movie-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.6;
}

.movie-poster:hover img {
    opacity: 0.3;
}

.movie-title {
    z-index: 2;
    font-size: 0.8rem;
    text-align: center;
    font-weight: bold;
}

/* Fix for CTA button inside Nav Links */
.nav-links .cta-button {
    color: var(--background-dark) !important;
    display: inline-block;
    /* Ensure proper spacing/sizing */
}

.nav-links .cta-button:hover {
    color: var(--background-dark) !important;
}
/* New Pricing Elements */
.pricing-badge {
    background: #2a2a35;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    border: 1px solid var(--glass-border);
}

.pricing-card.featured .pricing-badge {
    background: var(--primary-color);
    color: #000;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 0.5rem;
}

.current-price {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
}

.old-price {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.price-per-month {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.pricing-subtext {
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    min-height: 40px; /* Aligns cards */
}

.payment-icons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.payment-icons i {
    font-size: 1.5rem;
    color: #fff;
}

.pricing-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #aaa;
    margin-top: 1rem;
    line-height: 1.2;
}

.pricing-footer .dot {
    width: 6px;
    height: 6px;
    background: #ff4444;
    border-radius: 50%;
    display: inline-block;
}

/* Centering Footer Menu */
.footer-grid {
    text-align: center;
    justify-content: center; /* Helpful if grid items don't fill row */
    justify-items: center;   /* Centers grid items in their cells */
}

/* Ensure list items are centered if they aren't already */
.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* HEADER LAYOUT: Logo Left | Menu Center | Button Right */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 60px; /* Force height to align */
}

/* Remove default flex alignment if it conflicts */
.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.desktop-only-btn {
    display: inline-block;
    margin-left: auto; /* Pushes to right in some flex contexts, but absolute center takes precedence for links */
}

.mobile-only-btn {
    display: none;
}

/* Ensure Button Style overrides (Green gradient from image) */
.cta-button {
    background: linear-gradient(90deg, #00ff88 0%, #00d4ff 100%);
    color: #000 !important; /* Text color black? Or white? Image looks kinda dark text or white on bright green. Let's try dark for contrast */
    font-weight: 700;
    font-family: var(--font-heading);
    border-radius: 50px;
    padding: 0.8rem 2rem;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
}

/* Mobile Responsive Adjustments */
@media (max-width: 992px) {
    /* Hide desktop button, Show mobile button */
    .desktop-only-btn {
        display: none;
    }
    
    .mobile-only-btn {
        display: block;
        margin-top: 1rem;
    }

    /* Reset Nav Links positioning for Mobile Drawer */
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        transform: translateX(100%); /* Start hidden */
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 3rem;
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
}
