:root {
    /* Main Neon Palette */
    --neon-pink: #FF006E;
    --neon-pink-dark: #FF1493;
    --neon-pink-light: #FF69B4;

    --neon-violet: #8B00FF;
    --neon-violet-light: #BF00FF;

    --neon-purple: #9D4EDD;
    --neon-magenta: #FF00FF;

    --neon-blue: #00F0FF;

    --white-glow: #FFFFFF;

    /* Backgrounds */
    --bg-dark: #0A0A0A;
    --bg-darker: #050505;
    --bg-card: rgba(255, 255, 255, 0.03);

    /* Gradients */
    --grad-main: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-violet) 100%);
    --grad-text: linear-gradient(to right, var(--neon-pink), var(--neon-blue));

    /* Fonts */
    --font-main: 'Outfit', sans-serif;
    --font-display: 'Rajdhani', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-darker);
    color: white;
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--neon-purple);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-pink);
}

/* Typography Utilities */
.text-gradient {
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 0, 110, 0.3);
}

.text-outline {
    -webkit-text-stroke: 1px var(--neon-blue);
    color: transparent;
    text-shadow: 0 0 10px var(--neon-blue);
}

/* 1. HEADER */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 9999;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(to right, var(--neon-pink), var(--neon-violet)) 1;
    box-shadow: 0 4px 30px rgba(139, 0, 255, 0.2);
    display: flex;
    align-items: center;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.neon-dot {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

.logo-text:hover {
    text-shadow: 0 0 20px var(--neon-pink), 0 0 40px var(--neon-violet);
    transform: scale(1.05);
}

.desktop-nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 40px;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
    position: relative;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-pink);
    transition: 0.3s;
    box-shadow: 0 0 10px var(--neon-pink);
}

.desktop-nav a:hover::after {
    width: 100%;
}

.btn-cta {
    background: var(--grad-main);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid var(--neon-pink);
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.5), 0 0 40px rgba(139, 0, 255, 0.3);
    text-transform: uppercase;
    margin-left: 40px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-cta:hover {
    transform: scale(1.1);
    background: white;
    color: var(--neon-pink);
    box-shadow: 0 0 40px var(--neon-pink), 0 0 80px var(--neon-violet);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.mobile-menu-btn span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--neon-pink);
    box-shadow: 0 0 5px var(--neon-pink);
    transition: 0.3s;
}

/* 2. HERO SECTION */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Default dark image if none provided */
    background: url('https://images.unsplash.com/photo-1535131749006-b7f58c99034b?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    z-index: -2;
    filter: brightness(0.6) contrast(1.2);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(10, 10, 10, 0.2) 0%, var(--bg-darker) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--neon-blue);
    color: var(--neon-blue);
    border-radius: 30px;
    font-family: var(--font-display);
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 20px;
    background: rgba(0, 240, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 80px;
    line-height: 0.9;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.btn-hero-primary {
    background: var(--neon-pink);
    color: white;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.4);
}

.btn-hero-primary:hover {
    background: var(--neon-magenta);
    transform: translateY(-5px);
    box-shadow: 0 0 40px var(--neon-magenta);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border: 1px solid white;
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
    transition: 0.3s;
}

.btn-hero-secondary:hover {
    border-color: var(--neon-blue);
    color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.stat-label {
    font-size: 14px;
    color: var(--neon-pink-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
}

.scroll-indicator span {
    font-size: 12px;
    letter-spacing: 2px;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid white;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 3. MARQUEE SECTION */
.marquee-section {
    padding: 80px 0;
    position: relative;
    background: black;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    width: max-content;
    /* Allow it to fit two tracks naturally */
    animation: marquee 40s linear infinite;
    /* Slower for better UX */
}

/* Pause on hover for better UX */
.marquee-content:hover {
    animation-play-state: paused;
}

.marquee-track {
    display: flex;
    gap: 20px;
    padding-right: 20px;
    /* Gap between the two tracks */
}

.drama-card {
    width: 200px;
    height: 300px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.drama-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.8) brightness(0.8);
    transition: 0.5s ease;
}

.drama-card:hover {
    transform: scale(1.15) translateY(-10px);
    border-color: var(--neon-pink);
    box-shadow: 0 0 30px var(--neon-pink), 0 0 60px var(--neon-violet);
    z-index: 100;
}

.drama-card:hover img {
    filter: grayscale(0) brightness(1.2);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* 4. FEATURES */
.features-section {
    padding: 100px 0;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
}

.section-title {
    text-align: center;
    font-family: var(--font-display);
    font-size: 48px;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(250px, auto);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bento-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.bento-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.large-item {
    grid-column: span 1;
    /* Actually span 2 looks better usually, but sticking to simple grid first */
    grid-row: span 2;
}

.wide-item {
    grid-column: span 3;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.glow-box:hover {
    box-shadow: 0 0 30px rgba(139, 0, 255, 0.15);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.color-1 {
    color: var(--neon-blue);
    text-shadow: 0 0 15px var(--neon-blue);
}

.color-2 {
    color: var(--neon-pink);
    text-shadow: 0 0 15px var(--neon-pink);
}

.color-3 {
    color: var(--neon-violet);
    text-shadow: 0 0 15px var(--neon-violet);
}

.color-4 {
    color: var(--neon-magenta);
    text-shadow: 0 0 15px var(--neon-magenta);
}

.bento-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-family: var(--font-display);
}

.bento-item p {
    color: #aaa;
    font-size: 16px;
}

/* 5. PRICING */
.pricing-section {
    padding: 100px 0;
    background: black;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.pricing-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    width: 320px;
    text-align: center;
    transition: 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-violet);
    box-shadow: 0 0 40px rgba(139, 0, 255, 0.2);
}

.pricing-card.featured {
    border: 2px solid #FFD700;
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(60, 50, 10, 0.3));
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 0 60px rgba(255, 215, 0, 0.4);
    border-color: #FDB931;
}

.pricing-card.featured .features-list li i {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.pricing-card.featured .price {
    background: linear-gradient(to right, #FFD700, #FDB931, #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #FFD700, #B8860B);
    color: black;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    letter-spacing: 1px;
    z-index: 2;
}

.card-header h3 {
    font-size: 20px;
    color: #bbb;
    margin-bottom: 15px;
}

.card-header .price {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    font-family: var(--font-display);
}

.card-header .price span {
    font-size: 16px;
    color: #666;
    font-weight: 400;
}

.features-list {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.features-list li {
    margin-bottom: 15px;
    color: #ddd;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li i {
    color: var(--neon-blue);
}

.features-list li.disabled {
    color: #555;
    text-decoration: line-through;
}

.features-list li.disabled i {
    color: #555;
}

.btn-plan {
    display: block;
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    background: transparent;
}

.btn-plan:hover {
    background: white;
    color: black;
}

.btn-glow {
    background: linear-gradient(45deg, #B8860B, #FFD700, #B8860B);
    background-size: 200% auto;
    border: none;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    color: black;
    font-weight: 800;
    animation: shine 3s linear infinite;
}

.btn-glow:hover {
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.7);
    color: black;
    background-position: right center;
    transform: scale(1.05);
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* 6. FOOTER */
.main-footer {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand h2 {
    font-family: var(--font-display);
    font-size: 30px;
    color: white;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    margin-left: 20px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--neon-pink);
}

.social-links a {
    color: white;
    font-size: 24px;
    margin-left: 20px;
    transition: 0.3s;
}

.social-links a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 15px var(--neon-blue);
}

.footer-bottom {
    text-align: center;
    color: #444;
    font-size: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-title {
        font-size: 60px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .wide-item {
        grid-column: span 1;
        flex-direction: column;
        text-align: center;
    }

    .large-item {
        grid-row: span 1;
    }
}

@media (max-width: 768px) {

    .desktop-nav,
    .btn-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .pricing-card {
        width: 100%;
        margin-bottom: 20px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links a,
    .social-links a {
        margin: 0 10px;
    }

    .mobile-menu-overlay.active {
        transform: translateX(0);
    }
}

.mobile-menu-overlay {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 9998;
    transform: translateX(100%);
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.mobile-link {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-family: var(--font-display);
    text-transform: uppercase;
    font-weight: 700;
}

.mobile-link:hover {
    color: var(--neon-pink);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}