/*
Theme Name: IPTV Pro Theme V3 - Gold & Black Edition
Theme URI: https://yoursite.com
Description: Premium VIP-Theme für IPTV-Dienste mit luxuriösem Gold & Schwarz Design, Glassmorphism-Effekten und Pinterest-Style Masonry Layout. Optimiert für den deutschen Markt mit SEO-Keywords: beste iptv anbieter, iptv provider, iptv 4k anbieter, legales iptv, deutsche sender.
Version: 3.1.0-DE-GOLD
Author: Your Name
Author URI: https://yoursite.com
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: iptv-pro
Tags: business, ecommerce, subscription, responsive, dark-theme, modern, deutschland, germany, german, iptv, streaming, gold, black, glassmorphism, premium, vip

IPTV Pro Theme V3 - Gold & Black Edition, Copyright 2025
*/

/* ==========================================================================
   BASE STYLES - MODERN DARK THEME
   ========================================================================== */

:root {
    /* Gold & Black VIP Theme */
    --primary-gradient: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    --secondary-gradient: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    --accent-gradient: linear-gradient(135deg, #c9a227 0%, #d4af37 100%);
    --dark-bg: #000000;
    --dark-card: #0d0d0d;
    --dark-card-hover: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --accent-gold: #d4af37;
    --accent-gold-light: #f4d03f;
    --accent-gold-dark: #b8941f;

    /* Glassmorphism Effects */
    --glass-bg: rgba(13, 13, 13, 0.7);
    --glass-border: rgba(212, 175, 55, 0.2);
    --glass-blur: blur(20px);
}

/* Prevent horizontal scroll on all sections */
section {
    max-width: 100%;
}

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

html {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--dark-bg);
    width: 100%;
    position: relative;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-gold-light);
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 64px;
    font-weight: 800;
}

h2 {
    font-size: 48px;
    font-weight: 700;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 24px;
}

p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ==========================================================================
   HEADER - CLEAN & MODERN
   ========================================================================== */

.site-header {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(212, 175, 55, 0.1);
    position: sticky;
    top: 0;
    z-index: 99999;
    padding: 20px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Logo */
.site-logo-wrapper {
    flex-shrink: 0;
}

.site-logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
}

.site-logo img,
.custom-logo {
    max-height: 45px;
    width: auto;
    display: block;
}

/* Navigation Menu */
.main-navigation {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    align-items: center;
}

.primary-menu li {
    margin: 0;
    padding: 0;
}

.primary-menu a {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: block;
}

.primary-menu a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

/* CTA Button - CLEAN, NO GLOW */
.header-cta {
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.cta-button {
    background: var(--primary-gradient);
    color: #000000;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    background: var(--secondary-gradient);
}

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

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

/* ==========================================================================
   HERO SECTION - IMMERSIVE
   ========================================================================== */

.hero-section {
    background: var(--dark-bg);
    position: relative;
    padding: 120px 0 80px;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 100;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.hero-section h1 {
    color: var(--text-primary);
    font-size: 72px;
    margin-bottom: 24px;
    line-height: 1.1;
}

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

.hero-section p {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--text-secondary);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-gradient);
    color: #000000;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 10;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.6);
    background: var(--secondary-gradient);
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    color: var(--accent-gold);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.hero-cta-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

/* ==========================================================================
   CHANNEL LOGOS SECTION - MODERN
   ========================================================================== */

.channel-logos-section {
    background: var(--dark-bg);
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.channel-logos-section h3 {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
}

.channel-logos-carousel {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logos-track {
    display: flex;
    gap: 40px;
    animation: scroll 40s linear infinite;
    width: max-content;
}

.channel-logo-item {
    flex-shrink: 0;
}

.channel-logo-box {
    width: 160px;
    height: 90px;
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 20px;
}

.channel-logo-box:hover {
    background: var(--dark-card-hover);
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.channel-logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: filter 0.3s ease;
}

.channel-logo-box:hover img {
    filter: grayscale(0%) opacity(1);
}

.channel-name {
    font-weight: 700;
    font-size: 16px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================================================
   MOVIES MASONRY GRID - PINTEREST STYLE
   ========================================================================== */

.movies-section {
    background: var(--dark-bg);
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    text-align: center;
}

.section-title h2 {
    font-size: 42px;
    margin-bottom: 10px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    font-size: 18px;
    color: var(--text-secondary);
}

.movies-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 60px;
}

.movies-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    width: 100%;
}

.movie-card {
    flex: 0 0 280px;
    position: relative;
    cursor: pointer;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
}

.movie-poster {
    width: 100%;
    height: 420px;
    position: relative;
    border-radius: 16px 16px 0 0;
    background: var(--dark-card);
    overflow: hidden;
}

.movie-card:hover {
    transform: translateY(-10px);
    z-index: 10;
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.movie-poster img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 16px 16px 0 0;
    display: block;
}

.movie-card:hover .movie-poster img {
    transform: scale(1.1);
}

.movie-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.movie-card:hover .movie-overlay {
    transform: translateY(0);
}

.movie-info {
    padding: 20px;
    text-align: center;
}

.movie-info h4 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700;
}

.movie-info p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.movie-placeholder {
    width: 100%;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    font-size: 80px;
    border-radius: 16px 16px 0 0;
}

.movie-category {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: var(--accent-gold);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
    border: 1px solid var(--glass-border);
}

.movie-play-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: 24px;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.movie-card:hover .movie-play-btn {
    background: var(--text-primary);
    transform: scale(1.15);
}

/* ==========================================================================
   FEATURES GRID - MODERN CARDS
   ========================================================================== */

.features-section {
    background: var(--dark-bg);
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

/* Specific 3-column grids for desktop */
.how-it-works-grid,
.pricing-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
    .how-it-works-grid,
    .pricing-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .how-it-works-grid,
    .pricing-benefits-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 24px;
    transition: all 0.4s ease;
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Testimonial Images - Constrained Size */
.testimonial-slide .feature-card img {
    max-width: 150px;
    max-height: 150px;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto 15px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

/* ==========================================================================
   PRICING - MODERN CARDS
   ========================================================================== */

.pricing-section {
    background: var(--dark-bg);
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.pricing-grid-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
    align-items: stretch;
}

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 2px solid var(--glass-border);
    border-radius: 24px;
    padding: 0;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing-card:hover::before {
    opacity: 0.08;
}

.pricing-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.pricing-card.featured {
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: var(--text-primary);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 20px;
    margin: 0;
    padding: 20px;
    background: var(--primary-gradient);
    color: #000000;
    position: relative;
    z-index: 1;
    border-radius: 22px 22px 0 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 800;
}

.price {
    font-size: 56px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 30px 0 20px;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.price-period {
    font-size: 16px;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin: 0;
    padding: 20px 30px;
    text-align: left;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: none;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.pricing-features li:before {
    content: "✓";
    color: #10b981;
    font-weight: 700;
    margin-right: 12px;
    font-size: 18px;
}

.pricing-button {
    display: block;
    width: calc(100% - 40px);
    background: var(--primary-gradient);
    color: #000000;
    padding: 16px 30px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 15px;
    margin: auto 20px 30px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
    background: var(--secondary-gradient);
}

/* ==========================================================================
   FOOTER - MODERN DARK
   ========================================================================== */

.site-footer {
    background: var(--dark-card);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-widget h3,
.footer-widget h2,
.footer-widget .widget-title {
    color: var(--text-primary);
    margin-bottom: 24px;
    font-size: 20px;
    font-weight: 700;
    text-transform: none;
    line-height: 1.3;
}

.footer-widget ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.footer-widget ul li {
    margin-bottom: 12px;
    padding-left: 0;
}

.footer-widget a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-widget a:hover {
    color: var(--accent-gold-light);
}

/* WordPress Default Widgets */
.footer-widget select {
    width: 100%;
    padding: 10px 15px;
    background: var(--dark-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 14px;
}

.footer-widget .widgettitle {
    color: var(--text-primary);
    margin-bottom: 24px;
    font-size: 20px;
    font-weight: 700;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 14px;
}

/* ==========================================================================
   WHATSAPP FLOAT - MODERN
   ========================================================================== */

/* ==========================================================================
   TESTIMONIALS CAROUSEL
   ========================================================================== */

.testimonials-carousel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.testimonials-carousel {
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    align-items: stretch;
}

.testimonial-slide {
    min-width: calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    margin: 0 10px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.testimonial-slide .feature-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 300px;
    max-height: none;
}

.testimonial-slide .feature-card p {
    flex: 1;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.9);
    color: #000;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.carousel-arrow:hover {
    background: rgba(244, 208, 63, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.carousel-arrow.prev {
    left: 10px;
}

.carousel-arrow.next {
    right: 10px;
}

@media (max-width: 1024px) {
    .testimonial-slide {
        min-width: calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .testimonial-slide {
        min-width: calc(100% - 20px);
        max-width: calc(100% - 20px);
    }

    .testimonials-carousel-wrapper {
        padding: 0 60px;
    }

    .testimonial-slide .feature-card {
        min-height: 250px;
    }
}

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 50px rgba(37, 211, 102, 0.6);
    color: #FFF;
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.section {
    padding: 100px 0;
}

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

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.bg-dark {
    background-color: var(--dark-bg);
}

.bg-dark-card {
    background-color: var(--dark-card);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 36px;
    }

    .hero-section h1 {
        font-size: 52px;
    }

    .movies-slider-container {
        padding: 0 50px;
    }

    .movie-card {
        flex: 0 0 250px;
    }

    .movie-card {
        margin-bottom: 15px;
    }

    .pricing-grid-four {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .primary-menu {
        gap: 15px;
    }

    .primary-menu a {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero-section {
        padding: 80px 0 60px;
    }

    .hero-section h1 {
        font-size: 40px;
    }

    .hero-section p {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .hero-cta,
    .hero-cta-secondary {
        width: 100%;
        justify-content: center;
        font-size: 16px;
        padding: 16px 30px;
    }

    .section-header {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .movies-slider-container {
        padding: 0 40px;
    }

    .movie-card {
        flex: 0 0 200px;
    }

    .movie-card {
        margin-bottom: 10px;
    }

    .header-container {
        gap: 20px;
    }

    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0a0a0f;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: none;
        padding: 20px 0;
        z-index: 99998;
    }

    .main-navigation.active {
        display: block;
    }

    .primary-menu {
        flex-direction: column;
        gap: 5px;
        padding: 0 20px;
    }

    .primary-menu a {
        padding: 12px 20px;
        display: block;
    }

    .menu-toggle {
        display: flex;
    }

    .header-cta {
        margin-left: auto;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 13px;
    }

    .features-grid,
    .pricing-grid-four {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card {
        min-height: auto;
    }

    .pricing-card h3 {
        font-size: 18px;
        padding: 18px;
    }

    .channel-logo-box {
        width: 120px;
        height: 70px;
    }
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

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

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

.fade-in-up {
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Optimize animations for smooth performance */
.feature-card,
.movie-card,
.pricing-card,
.testimonial-slide,
.section-title {
    opacity: 0;
    transform: translateY(40px);
    will-change: transform, opacity;
    transition: all 0.3s ease;
}

.feature-card.fade-in-up,
.movie-card.fade-in-up,
.pricing-card.fade-in-up,
.testimonial-slide.fade-in-up,
.section-title.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure pricing grid items animate */
.pricing-grid-four {
    opacity: 1;
}
