﻿:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --dark-bg: #0A0E1A;
    --darker-bg: #070A13;
    --card-bg: #141824;
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --border-color: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.language-selector select {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    appearance: none;
    padding-right: 2rem;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
}

.language-selector select:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.language-selector select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.language-selector select option {
    background: var(--card-bg);
    color: var(--text-primary);
    padding: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    flex-direction: column;
    align-items: flex-start;
}

.btn-subtext {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.9;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(5deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, var(--dark-bg) 100%);
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.feature-pill svg {
    color: #4ade80;
}

/* Phone Mockup */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #1a1f2e, #0d111d);
    border-radius: 40px;
    padding: 12px;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
    animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--darker-bg);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.screen-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(102, 126, 234, 0.2) 0%,
            rgba(118, 75, 162, 0.2) 50%,
            rgba(240, 147, 251, 0.2) 100%);
}

.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-slider-track {
    position: relative;
    height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide {
    position: absolute;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

/* TV Mockup for landscape slides */
.tv-mockup {
    position: relative;
    width: 450px;
    max-width: 100%;
    background: linear-gradient(145deg, #1c2333, #0f1319);
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(102, 126, 234, 0.3);
}

.tv-mockup::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: rgba(102, 126, 234, 0.5);
    border-radius: 2px;
}

.tv-screenshot {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* Hero Slider Dots */
.hero-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-dot.active {
    background: var(--primary-gradient);
    width: 28px;
    border-radius: 5px;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Landscape slide adjustments */
.landscape-hero-slide .tv-mockup {
    animation: tvFloat 6s ease-in-out infinite;
}

@keyframes tvFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--darker-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

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

.feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

/* Screenshots Section */
.screenshots {
    padding: 80px 0;
    background: var(--dark-bg);
}

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

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

.screenshot-frame {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(145deg, #1a1f2e, #0d111d);
    border-radius: 30px;
    padding: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-frame:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(102, 126, 234, 0.3);
}

.screenshot-frame img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    display: block;
}

.screenshot-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.screenshot-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* TV & Desktop Landscape Styles */
.tv-desktop-section .screenshots-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.landscape-item .tv-frame {
    max-width: 100%;
    aspect-ratio: 16 / 9;
    padding: 8px;
    background: linear-gradient(145deg, #1c2333, #0f1319);
    border: 2px solid rgba(102, 126, 234, 0.3);
}

.landscape-item .tv-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* Desktop Carousel Slides */
.landscape-slide {
    min-width: calc(50% - 1rem);
}

.carousel-desktop {
    position: relative;
    background: linear-gradient(145deg, #1c2333, #0f1319);
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    border: 2px solid rgba(102, 126, 234, 0.3);
}

.carousel-desktop:hover {
    transform: translateY(-10px);
    border-color: rgba(102, 126, 234, 0.6);
}

.carousel-desktop img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* App Gallery Carousel */
.app-gallery {
    padding: 80px 0;
    background: var(--darker-bg);
    overflow: hidden;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
}

.carousel-slide {
    min-width: calc(33.333% - 1.333rem);
    flex-shrink: 0;
}

.carousel-phone {
    position: relative;
    background: linear-gradient(145deg, #1a1f2e, #0d111d);
    border-radius: 30px;
    padding: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    max-width: 280px;
    margin: 0 auto;
}

.carousel-phone:hover {
    transform: translateY(-10px);
}

.carousel-phone img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    display: block;
}

.carousel-caption {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-gradient);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-btn svg {
    color: white;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--primary-gradient);
    width: 32px;
    border-radius: 6px;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: var(--dark-bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

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

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--darker-bg);
}

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

.pricing-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: #667eea;
}

.pricing-card.featured {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-gradient);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 2rem;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 0.3rem;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
}

.period {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-left: 0.5rem;
}

.save-badge {
    display: inline-block;
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--text-secondary);
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--dark-bg);
}

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

.testimonial-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.stars {
    color: #fbbf24;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--text-primary);
    font-size: 1rem;
}

.testimonial-author span {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--darker-bg);
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 3rem;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #667eea;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    user-select: none;
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-icon {
    font-size: 1.5rem;
    color: #667eea;
    transition: transform 0.3s ease;
    font-weight: 300;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

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

.download-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
}

.download-btn:hover {
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.download-btn div {
    text-align: left;
}

.download-btn small {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.download-btn strong {
    display: block;
    font-size: 1.1rem;
}

.download-btn.apk-download {
    background: var(--primary-gradient);
    border-color: transparent;
}

.download-btn.apk-download:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.download-btn.windows-download {
    background: linear-gradient(135deg, #0078d4 0%, #00a2ed 100%);
    border-color: transparent;
}

.download-btn.windows-download:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 120, 212, 0.5);
}

.download-btn.coming-soon {
    opacity: 0.6;
    cursor: not-allowed;
}

.download-btn.coming-soon:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
}

.download-info {
    margin-top: 2rem;
    text-align: center;
}

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

/* Desktop Experience Section */
.desktop-experience {
    padding: 80px 0;
    background: var(--darker-bg);
}

.desktop-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.desktop-main {
    display: flex;
    justify-content: center;
}

.desktop-frame {
    background: linear-gradient(145deg, #1a1f2e, #0d111d);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    max-width: 900px;
    width: 100%;
}

.desktop-header {
    background: linear-gradient(180deg, #2a2f3e, #1a1f2e);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.window-controls {
    display: flex;
    gap: 8px;
}

.window-controls .control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.window-controls .close {
    background: #ff5f57;
}

.window-controls .minimize {
    background: #febc2e;
}

.window-controls .maximize {
    background: #28c840;
}

.window-title {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
}

.desktop-screenshot {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.desktop-thumbnails {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.desktop-thumb {
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
    background: var(--card-bg);
    padding: 0.5rem;
}

.desktop-thumb:hover {
    border-color: rgba(102, 126, 234, 0.5);
    transform: translateY(-3px);
}

.desktop-thumb.active {
    border-color: #667eea;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.desktop-thumb img {
    width: 120px;
    height: 75px;
    object-fit: cover;
    border-radius: 6px;
}

.desktop-thumb span {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.desktop-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.desktop-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--card-bg);
    border-radius: 50px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.desktop-feature:hover {
    border-color: #667eea;
    transform: translateY(-2px);
}

.desktop-feature svg {
    color: #667eea;
}

.desktop-feature span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .desktop-thumb img {
        width: 80px;
        height: 50px;
    }

    .desktop-features {
        gap: 1rem;
    }

    .desktop-feature {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--text-primary);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-image {
        order: 1;
    }

    .phone-mockup {
        width: 250px;
        height: 500px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-lg {
        width: 100%;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    .download-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .download-btn {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
    }

    .faq-question h4 {
        font-size: 1rem;
    }

    .carousel-slide {
        min-width: 100%;
    }

    .carousel-container {
        padding: 0 50px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .phone-mockup {
        width: 200px;
        height: 400px;
    }

    .carousel-container {
        padding: 0 40px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
    }

    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

/* Accessibility */
:focus-visible {
    outline: 2px solid #667eea;
    outline-offset: 4px;
}

/* RTL (Right-to-Left) Support for Arabic */
[dir="rtl"] {
    direction: rtl;
}

[dir="rtl"] .nav-content {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-links {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-cta {
    flex-direction: row-reverse;
}

[dir="rtl"] .hero-content {
    text-align: right;
}

[dir="rtl"] .hero-buttons {
    flex-direction: row-reverse;
}

[dir="rtl"] .feature-icon {
    margin-left: 0;
    margin-right: auto;
}

[dir="rtl"] .carousel-prev {
    left: auto;
    right: -50px;
}

[dir="rtl"] .carousel-next {
    right: auto;
    left: -50px;
}

[dir="rtl"] .footer-content {
    text-align: right;
}

[dir="rtl"] .footer-section ul {
    text-align: right;
}

[dir="rtl"] .social-links {
    flex-direction: row-reverse;
}

/* Responsive adjustments for language selector */
@media (max-width: 768px) {
    .language-selector select {
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem;
        padding-right: 1.75rem;
    }

    .nav-cta {
        gap: 0.5rem;
    }
}

/* Download Counter Styles */
.download-counter-container {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.download-counter-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.download-counter-box:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.6);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.3);
}

.counter-icon {
    color: #667eea;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.counter-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.counter-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.counter-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

/* Responsive Download Counter */
@media (max-width: 768px) {
    .download-counter-box {
        padding: 1.25rem 2rem;
        gap: 1rem;
    }

    .counter-icon {
        width: 28px;
        height: 28px;
    }

    .counter-label {
        font-size: 0.75rem;
    }

    .counter-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .download-counter-box {
        padding: 1rem 1.5rem;
        gap: 0.75rem;
    }

    .counter-icon {
        width: 24px;
        height: 24px;
    }

    .counter-label {
        font-size: 0.7rem;
    }

    .counter-number {
        font-size: 1.25rem;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0f 0%, #1a1a2e 50%, #0a0a0f 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.how-step {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.how-step:hover {
    transform: translateY(-10px);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.step-icon {
    margin: 30px 0 25px;
    display: inline-flex;
}

.how-step h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.how-step p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.how-step p strong {
    color: #667eea;
    font-weight: 600;
}

/* Compatibility Banner */
.compatibility-banner {
    margin-top: 80px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.compatibility-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 300px;
}

.compatibility-icon {
    flex-shrink: 0;
}

.compatibility-text h4 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.compatibility-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .how-it-works {
        padding: 60px 0;
    }

    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-top: 40px;
    }

    .how-step {
        padding: 50px 25px 35px;
    }

    .how-step h3 {
        font-size: 20px;
    }

    .how-step p {
        font-size: 15px;
    }

    .compatibility-banner {
        padding: 30px 25px;
        flex-direction: column;
        text-align: center;
    }

    .compatibility-content {
        flex-direction: column;
        text-align: center;
    }

    .compatibility-text h4 {
        font-size: 20px;
    }

    .compatibility-text p {
        font-size: 14px;
    }
}


/* Free Trial Section */
.free-trial-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.free-trial-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.free-trial-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.free-trial-text h2 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.trial-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.trial-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trial-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.trial-benefits svg {
    flex-shrink: 0;
}

.free-trial-form-wrapper {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.free-trial-form .form-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.free-trial-form .form-header p {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 25px;
}

.free-trial-form .form-group {
    margin-bottom: 20px;
}

.free-trial-form input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    color: #1a1a2e;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.free-trial-form input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.free-trial-form .form-error {
    display: block;
    color: #ef4444;
    font-size: 13px;
    margin-top: 6px;
    min-height: 18px;
}

.trial-submit-btn {
    width: 100%;
    position: relative;
}

.trial-submit-btn .btn-loader {
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.trial-submit-btn.loading .btn-text {
    opacity: 0;
}

.trial-submit-btn.loading .btn-loader {
    display: block;
}

.trial-submit-btn.loading .btn-loader svg {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.form-disclaimer {
    text-align: center;
    font-size: 13px;
    color: #64748b;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Success State */
.trial-success {
    text-align: center;
    padding: 20px;
}

.success-icon {
    margin-bottom: 20px;
    display: inline-flex;
}

.trial-success h3 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.trial-success p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 10px;
    line-height: 1.6;
}

.trial-success p strong {
    color: #667eea;
}

.success-note {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.1) 0%, rgba(34, 197, 94, 0.1) 100%);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 12px;
    padding: 15px;
    margin: 20px 0;
    font-weight: 500;
    color: #16a34a !important;
}

/* Responsive */
@media (max-width: 968px) {
    .free-trial-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .free-trial-text h2 {
        font-size: 32px;
    }

    .trial-benefits li {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .free-trial-section {
        padding: 60px 0;
    }

    .free-trial-form-wrapper {
        padding: 30px 20px;
    }

    .free-trial-text h2 {
        font-size: 28px;
    }

    .trial-benefits li {
        font-size: 15px;
    }
}


/* Free Trial CTA Banner */
.free-trial-cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border-top: 1px solid rgba(102, 126, 234, 0.2);
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
    position: relative;
    overflow: hidden;
}

.free-trial-cta-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.trial-cta-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.trial-cta-text h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trial-cta-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
}

.trial-quick-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.trial-quick-benefits li {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.trial-cta-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.trial-cta-form-inline {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.trial-cta-form-inline input {
    flex: 1;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    font-size: 15px;
    color: #fff;
    transition: all 0.3s ease;
}

.trial-cta-form-inline input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.trial-cta-form-inline input:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.trial-cta-form-inline button {
    padding: 16px 32px;
    white-space: nowrap;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.trial-cta-form-inline button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.trial-cta-note {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Responsive */
@media (max-width: 968px) {
    .trial-cta-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .trial-cta-text h2 {
        font-size: 26px;
    }

    .trial-quick-benefits {
        justify-content: center;
    }
}

@media (max-width: 480px) {

    /* Updated Free Trial CTA Banner - Purple Theme */
    .free-trial-cta-banner {
        padding: 80px 0;
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
        border-top: 1px solid rgba(102, 126, 234, 0.2);
        border-bottom: 1px solid rgba(102, 126, 234, 0.2);
        position: relative;
        overflow: hidden;
    }

    .free-trial-cta-banner::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .trial-cta-content {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 50px;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    .trial-cta-text h2 {
        font-size: 36px;
        font-weight: 800;
        color: #fff;
        margin-bottom: 15px;
        line-height: 1.2;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .trial-cta-text p {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.95);
        margin-bottom: 25px;
    }

    .trial-quick-benefits {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        gap: 25px;
        flex-wrap: wrap;
    }

    .trial-quick-benefits li {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 600;
    }

    .trial-cta-form {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 35px;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }

    .trial-cta-form-inline {
        display: flex;
        gap: 12px;
        margin-bottom: 15px;
    }

    .trial-cta-form-inline input {
        flex: 1;
        padding: 16px 20px;
        background: rgba(255, 255, 255, 0.05);
        border: 2px solid rgba(102, 126, 234, 0.3);
        border-radius: 12px;
        font-size: 15px;
        color: #fff;
        transition: all 0.3s ease;
    }

    .trial-cta-form-inline input::placeholder {
        color: rgba(255, 255, 255, 0.4);
    }

    .trial-cta-form-inline input:focus {
        outline: none;
        border-color: #667eea;
        background: rgba(255, 255, 255, 0.08);
        box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    }

    .trial-cta-form-inline button {
        padding: 16px 32px;
        white-space: nowrap;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border: none;
        border-radius: 12px;
        color: #fff;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .trial-cta-form-inline button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    }

    .trial-cta-note {
        text-align: center;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.5);
        margin: 0;
    }

    /* Responsive */
    @media (max-width: 968px) {
        .trial-cta-content {
            grid-template-columns: 1fr;
            gap: 35px;
            text-align: center;
        }

        .trial-cta-text h2 {
            font-size: 28px;
        }

        .trial-quick-benefits {
            justify-content: center;
        }
    }

    @media (max-width: 480px) {
        .free-trial-cta-banner {
            padding: 50px 0;
        }

        .trial-cta-form {
            padding: 25px 20px;
        }

        .trial-cta-form-inline {
            flex-direction: column;
            gap: 10px;
        }

        .trial-cta-text h2 {
            font-size: 24px;
        }

        .trial-quick-benefits {
            flex-direction: column;
            gap: 10px;
            align-items: center;
        }
    }
}

/* Mobile Menu */
/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0A0E1A 0%, #141824 100%);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease, visibility 0s 0.3s;
    overflow-y: auto;
    visibility: hidden;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.3s ease;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-header .logo h2 {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
}

.mobile-nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
    color: #667eea;
    padding-left: 10px;
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0A0E1A;
}

.language-selector-mobile {
    margin-bottom: 15px;
}

.language-selector-mobile select {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Show mobile menu button on mobile */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
    }

    .nav-links {
        display: none !important;
    }

    .nav-cta .language-selector {
        display: none !important;
    }

    .nav-cta .btn {
        display: none !important;
    }
}

/* ============================================
   HOMEPAGE OPTIMIZATION STYLES 
   ============================================ */

/* Hero Trust Badge */
.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.trust-stars {
    color: #fbbf24;
    letter-spacing: 2px;
}

/* Hero Trust Strip (Payment Badges) */
.hero-trust-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.trust-item img {
    border-radius: 4px;
}

/* Pulsing CTA Button */
.btn-pulse {
    position: relative;
    animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    }

    50% {
        box-shadow: 0 4px 25px rgba(102, 126, 234, 0.7), 0 0 40px rgba(102, 126, 234, 0.3);
    }
}

.btn-icon {
    font-size: 1rem;
}

/* Comparison Table Section */
.comparison-section {
    padding: 80px 0;
    background: var(--dark-bg);
    position: relative;
    z-index: 10;
}

.comparison-table-wrapper {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table thead tr th:first-child {
    border-top-left-radius: 16px;
}

.comparison-table thead tr th:last-child {
    border-top-right-radius: 16px;
}

.comparison-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 16px;
}

.comparison-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 16px;
}

.comparison-table th {
    background: rgba(102, 126, 234, 0.15);
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table th.highlight-col {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
    color: #fff;
}

.comparison-table td.highlight-col {
    background: rgba(102, 126, 234, 0.05);
}

.comparison-table .check {
    color: #4ade80;
    font-size: 1.3rem;
}

.comparison-table .cross {
    color: #f87171;
    font-size: 1.3rem;
}

.comparison-table .price-highlight {
    color: #4ade80;
    font-weight: 700;
    font-size: 1.3rem;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* Content Preview Section */
.content-preview {
    padding: 80px 0;
    background: var(--darker-bg);
}

.content-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary-gradient);
    border-color: transparent;
    color: white;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.25rem;
}

.content-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 2/3;
    background: var(--card-bg);
    transition: all 0.3s ease;
    cursor: pointer;
}

.content-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.content-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.content-card-overlay h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.content-card-overlay span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.browse-all-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* Responsive for new sections */
@media (max-width: 768px) {
    .hero-trust-strip {
        gap: 0.75rem;
    }

    .trust-item {
        font-size: 0.75rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }

    .content-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 0.75rem;
    }
}

/* Instant Search Section */
.instant-search-section {
    background: linear-gradient(180deg, #0a0a0f 0%, #12121a 50%, #0a0a0f 100%);
    padding: 80px 20px;
    text-align: center;
}

.search-headline {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(135deg, #667eea, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.search-subtext { color: #ffffff;
    font-size: 16px;
    margin-bottom: 32px;
}

.search-container {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.mega-search {
    width: 100%;
    padding: 24px 60px 24px 28px;
    font-size: 18px;
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    background: rgba(26, 26, 36, 0.95);
    color: #fff;
    outline: none;
    transition: all 0.3s;
}

.mega-search:focus {
    border-color: #667eea;
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.3);
}

.mega-search::placeholder {
    color: #6b7280;
}

.search-icon-wrapper {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
}

.search-results-container {
    max-width: 900px;
    margin: 32px auto 0;
    text-align: left;
}

.result-category {
    margin-bottom: 32px;
}

.result-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.result-category-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.result-more-btn {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.result-more-btn:hover {
    text-decoration: underline;
}

.result-items {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.result-card {
    flex-shrink: 0;
    width: 140px;
    background: #1a1a24;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s;
}

.result-card:hover {
    transform: translateY(-4px);
}

.result-poster {
    width: 140px;
    height: 80px;
    background: #0a0a0f;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-poster.tall {
    height: 190px;
}

.result-poster img {
    object-fit: cover;
}

.content-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.content-card-overlay h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.content-card-overlay span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.browse-all-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* Responsive for new sections */
@media (max-width: 768px) {
    .hero-trust-strip {
        gap: 0.75rem;
    }

    .trust-item {
        font-size: 0.75rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }

    .content-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 0.75rem;
    }
}

/* Instant Search Section */
.instant-search-section {
    background: linear-gradient(180deg, #0a0a0f 0%, #12121a 50%, #0a0a0f 100%);
    padding: 80px 20px;
    text-align: center;
}

.search-headline {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(135deg, #667eea, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.search-subtext { color: #ffffff;
    font-size: 16px;
    margin-bottom: 32px;
}

.search-container {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.mega-search {
    width: 100%;
    padding: 24px 60px 24px 28px;
    font-size: 18px;
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    background: rgba(26, 26, 36, 0.95);
    color: #fff;
    outline: none;
    transition: all 0.3s;
}

.mega-search:focus {
    border-color: #667eea;
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.3);
}

.mega-search::placeholder {
    color: #6b7280;
}

.search-icon-wrapper {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
}

.search-results-container {
    max-width: 900px;
    margin: 32px auto 0;
    text-align: left;
}

.result-category {
    margin-bottom: 32px;
}

.result-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.result-category-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.result-more-btn {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.result-more-btn:hover {
    text-decoration: underline;
}

.result-items {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.result-card {
    flex-shrink: 0;
    width: 140px;
    background: #1a1a24;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s;
}

.result-card:hover {
    transform: translateY(-4px);
}

.result-poster {
    width: 140px;
    height: 80px;
    background: #0a0a0f;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-poster.tall {
    height: 190px;
}

.result-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.result-name {
    padding: 10px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.result-meta {
    padding: 0 10px 10px;
    font-size: 10px;
    color: #9ca3af;
}

.no-results {
    padding: 40px;
    text-align: center;
    color: #6b7280;
}

/* Instant Search Mobile Responsive */
@media (max-width: 768px) {
    .instant-search-section {
        padding: 50px 16px;
    }

    .search-headline {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(135deg, #667eea, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

    .search-subtext {
        color: #ffffff !important;
        font-size: 14px;
        margin-bottom: 24px;
    }

    .mega-search {
        padding: 18px 20px;
        font-size: 16px;
        border-radius: 16px;
    }

    .search-results-container {
        margin: 24px auto 0;
    }

    .result-category {
        margin-bottom: 24px;
    }

    .result-category-title {
        font-size: 16px;
    }

    .result-card {
        width: 110px;
    }

    .result-poster {
        width: 110px;
        height: 65px;
    }

    .result-poster.tall {
        height: 150px;
    }

    .result-name {
        font-size: 11px;
        padding: 8px;
    }

    .result-items {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .instant-search-section {
        padding: 40px 12px;
    }

    .search-headline {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(135deg, #667eea, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

    .mega-search {
        padding: 16px 16px;
        font-size: 15px;
    }

    .result-card {
        width: 95px;
    }

    .result-poster {
        width: 95px;
        height: 55px;
    }

    .result-poster.tall {
        height: 130px;
    }
}
/* Mobile Search Section - Homepage */
.mobile-search-section {
    display: none;
    position: sticky;
    top: 70px;
    z-index: 90;
    background: linear-gradient(180deg, #0a0a0f 0%, #12121a 100%);
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-search-wrapper {
    max-width: 100%;
}

.mobile-search-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(26, 26, 36, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: all 0.3s;
}

.mobile-search-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.2);
}

.mobile-search-input::placeholder {
    color: #6b7280;
}

.mobile-search-results {
    padding: 16px 0;
}

.mobile-results-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.mobile-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.mobile-poster-card {
    cursor: pointer;
    transition: transform 0.3s;
}

.mobile-poster-card:active {
    transform: scale(0.95);
}

.mobile-poster-image {
    width: 100%;
    aspect-ratio: 2/3;
    border-radius: 10px;
    background: #1a1a24;
    overflow: hidden;
    position: relative;
}

.mobile-poster-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-poster-rating {
    position: absolute;
    top: 6px;
    right: 6px;
    background: rgba(0, 0, 0, 0.85);
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 3px;
}

.mobile-poster-rating .star {
    color: #fbbf24;
}

.mobile-poster-title {
    margin-top: 8px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mobile-poster-year {
    font-size: 10px;
    color: #9ca3af;
    margin-top: 2px;
}

/* Mobile Search Modal */
.search-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.search-modal-overlay.active {
    display: flex;
}

.search-modal {
    background: #1a1a24;
    border-radius: 24px;
    padding: 28px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    animation: modalSlideUp 0.3s ease;
    position: relative;
}

@keyframes modalSlideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.search-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 24px;
    cursor: pointer;
}

.search-modal-poster {
    width: 120px;
    height: 180px;
    border-radius: 12px;
    margin: 0 auto 16px;
    overflow: hidden;
    background: #0a0a0f;
}

.search-modal-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-modal-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #fff;
}

.search-modal-info {
    color: #9ca3af;
    font-size: 14px;
    margin-bottom: 20px;
}

.search-modal-subtitle {
    color: #9ca3af;
    margin-bottom: 20px;
    font-size: 14px;
}

.search-watch-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.search-watch-option {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    background: #0a0a0f;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
    text-decoration: none;
    color: #fff;
}

.search-watch-option:hover {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.search-option-icon {
    font-size: 32px;
    margin-right: 14px;
    flex-shrink: 0;
}

.search-option-content {
    text-align: left;
    flex: 1;
}

.search-option-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
}

.search-option-desc {
    color: #9ca3af;
    font-size: 11px;
}

.search-app-links {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.search-app-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    background: #1a1a24;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    transition: background 0.2s;
}

.search-app-link:hover {
    background: #667eea;
}

/* Show mobile search only on mobile */
@media (max-width: 768px) {
    .mobile-search-section {
        display: block;
    }
    
    /* Hide desktop search section on mobile */
    .instant-search-section {
        display: none;
    }
}

/* Mobile Search Headline */
.mobile-search-headline { font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.mobile-search-headline .gradient-text {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Mobile Results Rows */
.mobile-results-row {
    margin-bottom: 24px;
}

.mobile-results-row-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.mobile-results-row-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.mobile-results-row-more {
    color: #667eea;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.mobile-results-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.mobile-results-scroll::-webkit-scrollbar {
    display: none;
}

.mobile-poster-card-scroll {
    flex-shrink: 0;
    width: 110px;
    cursor: pointer;
}

.mobile-poster-image-scroll {
    width: 110px;
    height: 165px;
    border-radius: 10px;
    background: #1a1a24;
    overflow: hidden;
    position: relative;
}

.mobile-poster-image-scroll img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Channel card style */
.mobile-channel-card {
    flex-shrink: 0;
    width: 100px;
    cursor: pointer;
    text-align: center;
}

.mobile-channel-logo {
    width: 100px;
    height: 60px;
    border-radius: 10px;
    background: #1a1a24;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-channel-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.mobile-channel-name {
    margin-top: 6px;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Rotating Text Animation */
.rotating-text-wrapper {
    display: inline-block;
    position: relative;
    min-width: 120px;
    text-align: left;
}

.rotating-text {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Plan Selection Modal */
.plan-selection-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 20px;
}

.plan-selection-overlay.active {
    display: flex;
}

.plan-selection-modal {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 20px;
    padding: 30px;
    max-width: 600px;
    width: 100%;
    position: relative;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.plan-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    opacity: 0.7;
}

.plan-modal-close:hover {
    opacity: 1;
}

.plan-modal-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.plan-modal-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
}

.plan-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 500px) {
    .plan-options {
        grid-template-columns: 1fr;
    }
}

.plan-card {
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.plan-card:hover {
    border-color: #667eea;
    transform: translateY(-2px);
}

.plan-card.featured {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.plan-popular {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.plan-card .plan-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 10px 0 8px;
    text-align: center;
}

.plan-card .plan-price {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.plan-card .plan-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.plan-features li {
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    padding: 4px 0;
}

.plan-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-btn:hover {
    background: rgba(255,255,255,0.2);
}

.plan-btn.featured {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.plan-btn.featured:hover {
    opacity: 0.9;
}
