/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-background: #0a0f1e;
    --color-surface: #1e293b;
    --color-primary: #0891b2;
    --color-text-primary: #e2e8f0;
    --color-text-headings: #ffffff;
    --color-border: #334155;
    --gold-color: #ffd700;
    --success-color: #00ff88;
    --gradient-primary: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
    --gradient-dark: linear-gradient(135deg, #1e293b 0%, #0a0f1e 100%);
    
    /* Legacy variable mappings for compatibility */
    --primary-color: #0891b2;
    --secondary-color: #06b6d4;
    --dark-bg: #1e293b;
    --darker-bg: #0a0f1e;
    --card-bg: #1e293b;
    --text-light: #ffffff;
    --text-gray: #e2e8f0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--color-background);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--color-surface);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-text-headings);
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--color-text-primary);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--color-primary);
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-selector select {
    background: var(--color-surface);
    color: var(--color-text-headings);
    border: 1px solid var(--color-border);
    padding: 0.5rem;
    border-radius: 5px;
    cursor: pointer;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--color-text-headings);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
    color: var(--color-primary);
}

/* Buttons */
.btn {
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-block;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), #06b6d4);
    color: var(--color-text-headings);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #06b6d4, var(--color-primary));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(8, 145, 178, 0.4);
}

.btn-primary i {
    font-size: 1.2rem;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-text-headings);
}

.btn-trial {
    background: var(--success-color);
    color: var(--color-background);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-trial:hover {
    background: #059669;
    transform: translateY(-2px);
}

.btn-trial i {
    font-size: 1.2rem;
}

.btn-contact {
    width: 100%;
    background: var(--color-primary);
    color: var(--color-text-headings);
    margin: 1rem 0;
    text-align: center;
    text-transform: uppercase;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 1rem 2rem;
}

.btn-contact:hover {
    background: #06b6d4;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(8, 145, 178, 0.4);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 60px;
    text-align: center;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 15, 30, 0.3) 0%, rgba(30, 41, 59, 0.2) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--color-text-primary);
    max-width: 800px;
    margin: 0 auto 2rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Trending Movies Slider */
.trending-movies {
    padding: 40px 0 30px;
    background: var(--color-surface);
    overflow: hidden;
}

.trending-movies h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-primary);
    margin-bottom: 2rem;
}

.movies-slider-wrapper {
    position: relative;
    padding: 0 60px;
}

.movies-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
}

.movies-slider::-webkit-scrollbar {
    display: none;
}

.movie-card {
    flex: 0 0 200px;
    background: var(--color-background);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border: 1px solid var(--color-border);
}

.movie-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 30px rgba(8, 145, 178, 0.3);
    border-color: var(--color-primary);
}

.movie-poster {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.movie-info {
    padding: 1rem;
}

.movie-title {
    font-size: 1rem;
    font-weight: bold;
    color: var(--color-text-headings);
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.movie-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.movie-rating {
    color: var(--gold-color);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.movie-year {
    color: var(--color-text-primary);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-primary);
    color: var(--color-text-headings);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: #06b6d4;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.movies-loading {
    text-align: center;
    padding: 3rem;
    color: var(--color-text-primary);
    font-size: 1.2rem;
}

/* Features Section */
.features {
    padding: 60px 0;
    background: #0A0F1C;
}

.features h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--color-text-headings);
}

.features h2 .highlight {
    background: linear-gradient(90deg, #007AFF, var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features .section-subtitle {
    text-align: center;
    color: #B0B0B0;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(145deg, #101725 0%, #0A0F1C 100%);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    border: 2px solid #007AFF;
    box-shadow: inset 0 0 20px rgba(0, 122, 255, 0.1), 0 8px 32px rgba(0, 0, 0, 0.4);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #007AFF, var(--color-primary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: inset 0 0 30px rgba(0, 122, 255, 0.2), 0 12px 40px rgba(8, 145, 178, 0.3);
}

.feature-icon {
    font-size: 3rem;
    color: #007AFF;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(0, 122, 255, 0.5));
}

.feature-number {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(135deg, #007AFF, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-text-headings);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-subtitle {
    color: var(--color-primary) !important;
    font-weight: 600 !important;
    margin-bottom: 0.8rem !important;
    font-size: 0.95rem !important;
}

.feature-card p {
    color: #B0B0B0;
    line-height: 1.7;
    font-size: 0.95rem;
}

.features-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-cta {
    font-size: 1.1rem;
    padding: 1rem 3rem;
    letter-spacing: 1px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-cta i {
    font-size: 1.4rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Channels Carousel */
.channels-carousel-wrapper {
    margin-top: 3rem;
    overflow: hidden;
}

.channels-carousel-wrapper h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--color-text-headings);
}

.channels-carousel {
    display: flex;
    gap: 1rem;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 1rem 0;
    animation: scroll 30s linear infinite;
    width: max-content;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 0.5rem));
    }
}

.channels-carousel:hover {
    animation-play-state: running; /* Keep running even on hover */
}

.channel-slide {
    flex: 0 0 auto;
    width: 300px;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s;
    border: 2px solid var(--color-border);
}

.channel-slide:hover {
    transform: scale(1.1);
    border-color: var(--color-primary);
}

.channel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Pricing Section */
.pricing {
    padding: 40px 0;
    background: var(--color-background);
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--color-text-primary);
}

.guarantee {
    font-size: 1rem;
    color: var(--color-text-primary);
    margin: 0.3rem 0;
}

.no-fees {
    color: var(--success-color);
    font-weight: bold;
}

.plan-badges {
    margin-top: 0.8rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(8, 145, 178, 0.1);
    border-radius: 20px;
    border: 1px solid var(--color-primary);
    font-size: 0.85rem;
    color: var(--color-primary);
}

.badge.gold {
    border-color: var(--gold-color);
    color: var(--gold-color);
    background: rgba(255, 215, 0, 0.1);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-background) 100%);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--gold-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card.featured {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.15) 0%, var(--color-surface) 100%);
    box-shadow: 0 10px 40px rgba(8, 145, 178, 0.3);
}

.pricing-card.featured::before {
    transform: scaleX(1);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--gold-color);
    color: var(--color-background);
    padding: 0.3rem 2rem;
    font-weight: bold;
    font-size: 0.75rem;
    transform: rotate(45deg);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: 0 15px 40px rgba(8, 145, 178, 0.2);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
    color: var(--color-text-headings);
}

.price {
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.price span {
    font-size: 1rem;
    color: var(--color-text-primary);
    font-weight: normal;
}

.features-list {
    list-style: none;
    margin: 1rem 0;
}

.features-list li {
    padding: 0.4rem 0;
    color: var(--color-text-primary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features-list i {
    color: var(--color-primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.ready-time {
    text-align: center;
    color: var(--color-text-primary);
    font-size: 0.85rem;
    margin-top: 1rem;
    padding: 0.5rem;
    background: rgba(8, 145, 178, 0.1);
    border-radius: 8px;
}

.devices-image {
    margin-top: 1rem;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.devices-image img {
    width: 100%;
    max-width: 200px;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.pricing-card:hover .devices-image img {
    opacity: 1;
}

/* Movies Banner */
.movies-banner {
    padding: 50px 0;
    background: var(--gradient-primary);
    text-align: center;
    min-height: 400px;
}

.movies-banner h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.theater-movies-wrapper {
    position: relative;
    padding: 0 60px;
    margin-top: 2rem;
    min-height: 350px;
}

.theater-movies-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
    min-height: 300px;
}

.theater-movies-slider::-webkit-scrollbar {
    display: none;
}

.movies-loading {
    color: var(--color-text-primary);
    font-size: 1.2rem;
    padding: 3rem;
    text-align: center;
}

/* How It Works */
.how-it-works {
    padding: 60px 0;
    background: #e8e8e8;
}

.how-it-works h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #000;
}

.how-it-works h2 .highlight {
    color: var(--color-primary);
}

.how-it-works .section-subtitle {
    text-align: center;
    color: #333;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.step-number {
    font-size: 4rem;
    font-weight: bold;
    color: #000;
    line-height: 1;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #000;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.step p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Best IPTV Section */
.best-iptv {
    padding: 60px 0;
    background: var(--color-surface);
}

.best-iptv h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.iptv-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.iptv-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.iptv-content p {
    color: var(--color-text-primary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Reviews Section */
.reviews {
    padding: 60px 0;
    background: var(--color-background);
}

.reviews h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.reviews h3 {
    text-align: center;
    color: var(--color-text-primary);
    margin-bottom: 3rem;
}

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    justify-items: center;
}

.review-card {
    background: var(--color-surface);
    border-radius: 15px;
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: transform 0.3s;
    max-width: 100%;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.review-card img {
    width: 100%;
    height: auto;
    display: block;
}

.stars {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-card p {
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.reviewer {
    font-style: italic;
    color: var(--color-primary);
}

/* FAQ Section */
.faq {
    padding: 60px 0;
    background: var(--color-surface);
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-background);
    margin-bottom: 1rem;
    border-radius: 10px;
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(8, 145, 178, 0.1);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--color-text-headings);
}

.faq-toggle {
    color: var(--color-primary);
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p,
.faq-answer ul {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-text-primary);
}

.faq-answer ul {
    list-style-position: inside;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
}

.faq-cta p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: var(--color-background);
    padding: 60px 0 20px;
    border-top: 1px solid var(--color-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--color-text-primary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--color-primary);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.language-footer {
    display: flex;
    gap: 1rem;
}

.language-footer span {
    cursor: pointer;
    transition: color 0.3s;
}

.language-footer span:hover {
    color: var(--color-primary);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-slider {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile Navigation - Perfect Alignment */
@media (max-width: 768px) {
    /* Mobile Grid Layouts - Single Column */
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .reviews-slider {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .navbar {
        position: fixed;
        width: 100%;
        z-index: 9999;
        background: #0A2540 !important;
        height: 60px;
        display: flex;
        align-items: center;
    }
    
    .nav-container {
        width: 100%;
        height: 100%;
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        padding: 0 20px;
        gap: 10px;
    }
    
    /* Left: Logo/Brand Name */
    .logo {
        justify-self: start;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .logo img {
        height: 30px;
        width: auto;
    }
    
    .logo span {
        font-size: 1.1rem;
        font-weight: 700;
        color: white;
        white-space: nowrap;
    }
    
    /* Center: WhatsApp Free Trial */
    .nav-buttons {
        display: flex !important;
        justify-self: center;
        align-items: center;
        gap: 8px;
        margin: 0;
        padding: 0;
    }
    
    .btn-trial {
        display: flex !important;
        align-items: center;
        gap: 8px;
        padding: 8px 16px !important;
        height: 40px;
        background: #25D366 !important;
        border: none !important;
        border-radius: 20px;
        color: white;
        font-weight: 600;
        font-size: 0.95rem;
        box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
        white-space: nowrap;
    }
    
    .btn-trial:hover {
        background: #128C7E !important;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5);
    }
    
    .btn-trial i {
        font-size: 1.3rem;
        margin: 0 !important;
    }
    
    .btn-trial .btn-text {
        display: inline !important;
        color: white;
        font-weight: 600;
    }
    
    /* Right: Hamburger Menu */
    .mobile-menu-btn {
        justify-self: end;
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: transparent;
        border: 2px solid transparent;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-btn:hover {
        border-color: #0891b2;
        background: rgba(8, 145, 178, 0.1);
    }
    
    .mobile-menu-btn i {
        font-size: 1.4rem;
        color: white;
    }
    
    /* Hide desktop nav */
    .nav-links {
        display: none;
    }
    
    /* Mobile menu dropdown */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: #0A2540;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        z-index: 9998;
    }
    
    .nav-links.active li {
        margin: 0.5rem 0;
        text-align: center;
    }
    
    .nav-links.active li a {
        color: white;
        font-size: 1.1rem;
        padding: 10px;
        display: block;
    }

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.pricing-card,
.step,
.review-card {
    animation: fadeIn 0.6s ease-out;
}

/* Extra Small Devices (480px and below) */
@media (max-width: 480px) {
    .hero {
        padding: 80px 0 30px;
        min-height: 350px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .features,
    .trending-movies,
    .pricing,
    .movies-banner,
    .how-it-works,
    .best-iptv,
    .reviews,
    .faq {
        padding: 30px 0;
    }
    
    .trending-movies h2,
    .movies-banner h2,
    .pricing h2,
    .best-iptv h2,
    .reviews h2,
    .faq h2 {
        font-size: 1.5rem;
    }
    
    .features h2,
    .how-it-works h2 {
        font-size: 1.8rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .feature-number,
    .step-number {
        font-size: 1.5rem;
    }
    
    .feature-card h3,
    .step h3 {
        font-size: 1.1rem;
    }
    
    .feature-card,
    .step {
        padding: 2rem 1.5rem;
    }
    
    .btn-cta {
        font-size: 1rem;
        padding: 0.9rem 2rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .channel-slide {
        width: 180px;
        height: 120px;
    }
    
    .movies-slider-wrapper,
    .theater-movies-wrapper {
        padding: 0 30px;
    }
    
    .slider-btn {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .movie-card {
        flex: 0 0 130px;
    }
    
    .movie-poster {
        height: 195px;
    }
    
    .movie-info {
        padding: 0.6rem;
    }
    
    .movie-title {
        font-size: 0.85rem;
    }
    
    .movie-meta {
        font-size: 0.75rem;
    }
    
    .pricing-card {
        padding: 1.2rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 0.8rem;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
    }
    
    .faq-answer {
        padding: 0.8rem;
        font-size: 0.85rem;
    }
}


/* Floating Language Selector */
.floating-language-selector {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.language-toggle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-primary);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(8, 145, 178, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.language-toggle-btn:hover {
    background: #0ea5e9;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(8, 145, 178, 0.6);
}

.language-dropdown {
    position: absolute;
    bottom: 75px;
    right: 0;
    background: rgba(10, 15, 30, 0.95);
    border: 2px solid var(--color-primary);
    border-radius: 15px;
    padding: 10px;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.floating-language-selector.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: block;
    padding: 12px 15px;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
}

.language-option:hover {
    background: var(--color-primary);
    transform: translateX(5px);
}

/* SEO Content Section Styles */
.seo-content {
    background: linear-gradient(to bottom, #f9fafb, #ffffff);
    padding: 4rem 0;
}

.seo-content h1 {
    color: #111827;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.seo-content h2 {
    color: #111827;
    font-size: 2rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.seo-content h3 {
    color: #111827;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.seo-content p {
    color: #374151;
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.seo-content ul,
.seo-content ol {
    color: #374151;
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.seo-content ul li,
.seo-content ol li {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.seo-content strong {
    color: #1f2937;
    font-weight: 600;
}

.seo-content a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.seo-content a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.seo-content .cta-box {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    margin-top: 2.5rem;
}

.seo-content .cta-box h3 {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 1rem;
}

.seo-content .cta-box p {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.seo-content .cta-box a {
    display: inline-block;
    background: #ffffff;
    color: #2563eb;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.seo-content .cta-box a:hover {
    background: #f3f4f6;
    transform: scale(1.05);
    text-decoration: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .seo-content {
        padding: 2rem 0;
    }
    
    .seo-content h1 {
        font-size: 1.875rem;
    }
    
    .seo-content h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }
    
    .seo-content h3 {
        font-size: 1.25rem;
        margin-top: 1.5rem;
    }
    
    .seo-content p {
        font-size: 1rem;
    }
    
    .seo-content ul,
    .seo-content ol {
        padding-left: 1.5rem;
    }
    
    .seo-content .cta-box {
        padding: 1.5rem;
    }
    
    .seo-content .cta-box h3 {
        font-size: 1.5rem;
    }
    
    .seo-content .cta-box a {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .floating-language-selector {
        bottom: 20px;
        right: 20px;
    }
    
    .language-toggle-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .language-dropdown {
        bottom: 65px;
        min-width: 130px;
    }
    
    .language-option {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}
