/* --- variables.css --- */
/* ============================================
   CSS VARIABLES - SINGLE SOURCE OF TRUTH
   ============================================ */

:root {
    /* Colors */
    --color-primary: #1f2937;
    --color-secondary: #14b8a6;
    --color-accent: #f59e0b;
    --color-success: #22c55e;

    /* Backgrounds */
    --color-background: #0f1218;
    --color-dark-bg: #141923;
    --color-darker-bg: #0f1218;
    --color-light-bg: #f5f5f5;
    --color-white: #ffffff;

    /* Text Colors */
    --color-text-dark: #333333;
    --color-text-light: #f5f5f5;
    --color-text-lighter: #cccccc;

    /* Borders */
    --color-border-dark: #444444;
    --color-border-light: #e0e0e0;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --font-accent: 'Poppins', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;

    /* Layout */
    --container-max-width: 1200px;
    --border-radius: 8px;
    --border-radius-lg: 15px;
    --transition-speed: 0.3s;
    --box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);

    /* Mobile */
    --mobile-padding: 1rem;
    --mobile-margin: 0.5rem;
    --touch-target-size: 44px;

    /* Fluid Typography */
    --font-size-xs: clamp(1.4rem, 0.5vw + 1.1rem, 1.6rem);
    --font-size-sm: clamp(1.6rem, 0.8vw + 1.2rem, 1.8rem);
    --font-size-base: clamp(1.8rem, 1vw + 1.3rem, 2rem);
    --font-size-md: clamp(2rem, 1.5vw + 1.3rem, 2.6rem);
    --font-size-lg: clamp(2.6rem, 2vw + 1.6rem, 3.4rem);
    --font-size-xl: clamp(3.4rem, 3vw + 1.6rem, 4.7rem);
    --font-size-xxl: clamp(4.2rem, 4vw + 1.6rem, 6.2rem);
}


/* --- fluid-typography.css --- */
/* Global Fluid Typography & Spacing */

/* Base fluid font size */
html {
    font-size: clamp(14px, 0.875rem + 0.25vw, 16px);
}

body {
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
    line-height: 1.6;
}

/* Headings */
h1, .h1 {
    font-size: clamp(2.5rem, 2rem + 2.5vw, 5rem);
    line-height: 1.2;
}

h2, .h2 {
    font-size: clamp(2rem, 1.5rem + 2vw, 3.5rem);
    line-height: 1.3;
}

h3, .h3 {
    font-size: clamp(1.5rem, 1.25rem + 1.25vw, 2.5rem);
    line-height: 1.4;
}

h4, .h4 {
    font-size: clamp(1.25rem, 1.125rem + 0.625vw, 1.75rem);
}

h5, .h5 {
    font-size: clamp(1.125rem, 1rem + 0.625vw, 1.5rem);
}

h6, .h6 {
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
}

/* Paragraphs */
p {
    font-size: clamp(0.9375rem, 0.875rem + 0.3125vw, 1.125rem);
    line-height: 1.6;
}

/* Container */
.container {
    max-width: clamp(1200px, 90vw, 1600px);
    padding: 0 clamp(1rem, 2vw, 3rem);
}

/* Section spacing */
section {
    padding: clamp(2rem, 1.5rem + 2.5vw, 5rem) 0;
}

/* Header */
.site-header {
    padding: clamp(1rem, 1.5vw, 2rem) 0;
}

.site-branding img {
    max-height: clamp(40px, 3vw + 30px, 80px);
}

.site-brand-text {
    font-size: clamp(1.25rem, 1rem + 1vw, 2rem);
}

.main-navigation a {
    font-size: clamp(0.875rem, 0.8rem + 0.375vw, 1.125rem);
    padding: clamp(0.5rem, 0.75vw, 1rem) clamp(0.75rem, 1vw, 1.5rem);
}

/* Buttons */
.button, .btn {
    font-size: clamp(0.9375rem, 0.875rem + 0.3125vw, 1.125rem);
    padding: clamp(0.75rem, 1vw, 1.25rem) clamp(1.5rem, 2vw, 2.5rem);
}

/* Cards */
.card, .benefit-card, .testimonial-card, .pricing-plan {
    padding: clamp(1.5rem, 1rem + 2vw, 3rem);
    border-radius: clamp(8px, 1vw, 16px);
}

/* Icons */
.icon, .benefit-icon, .feature-icon {
    font-size: clamp(2.5rem, 2rem + 2vw, 4rem);
}

/* Stats */
.stat-number {
    font-size: clamp(2rem, 1.5rem + 2.5vw, 4rem);
}

.stat-label {
    font-size: clamp(0.875rem, 0.8rem + 0.375vw, 1.125rem);
}

/* Grid gaps */
.grid, .benefits-grid, .features-grid, .pricing-grid, .testimonials-grid {
    gap: clamp(1rem, 0.5rem + 2vw, 2.5rem);
}

/* Hero sections */
.hero-section, .welcome-hero-section {
    padding: clamp(3rem, 5vw, 8rem) 0 clamp(2rem, 3vw, 5rem);
}

.hero-title {
    font-size: clamp(2.5rem, 2rem + 3vw, 6rem);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 1rem + 0.625vw, 1.75rem);
}

/* Section titles */
.section-title {
    font-size: clamp(2rem, 1.5rem + 2vw, 3.5rem);
    margin-bottom: clamp(1.5rem, 2vw, 3rem);
}

.section-subtitle {
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
}

/* Movie/Channel items */
.movie-item img, .channel-item img {
    width: 100%;
    height: auto;
    max-width: clamp(150px, 10vw + 100px, 300px);
}

.movie-title {
    font-size: clamp(0.875rem, 0.8rem + 0.375vw, 1.125rem);
}

/* Device icons */
.device-icon {
    font-size: clamp(3rem, 2.5rem + 2vw, 5rem);
    width: clamp(60px, 5vw + 50px, 100px);
    height: clamp(60px, 5vw + 50px, 100px);
}

/* Pricing plans */
.plan-name {
    font-size: clamp(1.25rem, 1.125rem + 0.625vw, 1.75rem);
}

.plan-price {
    font-size: clamp(2.5rem, 2rem + 2vw, 4rem);
}

.plan-features li {
    font-size: clamp(0.875rem, 0.8rem + 0.375vw, 1.125rem);
    padding: clamp(0.5rem, 0.75vw, 1rem) 0;
}

/* Testimonials */
.testimonial-text {
    font-size: clamp(0.9375rem, 0.875rem + 0.3125vw, 1.125rem);
}

.customer-name {
    font-size: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
}

/* FAQ */
.faq-question {
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
}

.faq-answer {
    font-size: clamp(0.9375rem, 0.875rem + 0.3125vw, 1.125rem);
}

/* Footer */
.site-footer {
    padding: clamp(2rem, 3vw, 4rem) 0;
}

.footer-widget h3 {
    font-size: clamp(1.125rem, 1rem + 0.625vw, 1.5rem);
}

.footer-widget li, .footer-widget p {
    font-size: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
}

/* Forms */
input, textarea, select {
    font-size: clamp(0.9375rem, 0.875rem + 0.3125vw, 1.125rem);
    padding: clamp(0.75rem, 1vw, 1.25rem);
}

label {
    font-size: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
}

/* Badges */
.badge, .trust-badge, .popular-badge {
    font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    padding: clamp(0.25rem, 0.5vw, 0.5rem) clamp(0.5rem, 0.75vw, 1rem);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 clamp(0.75rem, 2vw, 1.5rem);
    }
}


/* --- style.css --- */
/*
Theme Name: best4iptv Premium Theme
Theme URI: https://www.best4iptv.net/
Author: best4iptv Team
Author URI: https://www.best4iptv.net
Description: A modern and professional WordPress theme for best4iptv Premium IPTV services.
Version: 1.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: iptv-modern-theme
Tags: iptv, woocommerce, modern, responsive, custom-colors, custom-menu, featured-images, translation-ready
*/

/* Variables */
:root {
    --color-dark-bg: #141923;
    --color-darker-bg: #0f1218;
    --color-primary: #1f2937;
    --color-light-bg: #f5f5f5;
    --color-white: #ffffff;
    --color-secondary: #3b82f6;
    --color-accent: #f59e0b;

    --color-text-dark: #333333;
    /* Dark text for light backgrounds */
    --color-text-light: #e2e8f0;
    /* Light text for dark backgrounds */
    --color-text-lighter: #94a3b8;
    /* Even lighter text for secondary on dark */

    --color-border-dark: rgba(255, 255, 255, 0.1);
    /* Dark border for elements on dark bg */
    --color-border-light: #e0e0e0;
    /* Light border for elements on light bg */

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', 'Roboto', sans-serif;
    --font-accent: 'Poppins', sans-serif;

    --transition-speed: 0.3s;
    --border-radius: 8px;
    --box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
    --carousel-duration: 45s;
    /* Softer, more modern shadow */

    /* Mobile-specific variables */
    --mobile-padding: 1rem;
    --mobile-margin: 0.5rem;
    --touch-target-size: 44px;
}

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

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1.8rem;
    line-height: 1.7;
    color: var(--color-text-light);
    /* Default body text color on dark background */
    background: var(--color-darker-bg);
    /* Main body background color */
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0f172a;
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #f8fafc;
    letter-spacing: -0.5px;
    /* Headings white by default on dark backgrounds */
}

h1 {
    font-size: 5.2rem;
}

h2 {
    font-size: 4rem;
}

h3 {
    font-size: 2.7rem;
}

h4 {
    font-size: 2.5rem;
}

h5 {
    font-size: 2.1rem;
}

h6 {
    font-size: 1.9rem;
}

p {
    margin-bottom: 1.8rem;
    color: var(--color-text-light);
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

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

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1.5rem;
}

.col {
    padding: 0 1.5rem;
    flex: 1;
}

/* Header */
header#masthead.site-header {
    background: rgba(15, 23, 42, 0.85);
    /* Darker, more modern blue-gray */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.6rem 0;
    position: relative;
    z-index: 100;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    transition: all 0.3s ease;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-branding img {
    max-height: 70px;
    width: 70px;
    border-radius: 50%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.site-brand-text {
    font-size: 1.8rem;
    font-weight: 700;
    margin-left: 1rem;
    vertical-align: middle;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

#masthead .site-branding .site-brand-text span:nth-child(1) {
    color: var(--color-secondary);
    /* Sky blue */
}

#masthead .site-branding .site-brand-text span:nth-child(2) {
    color: var(--color-accent);
    /* Amber */
}

#masthead .site-branding .site-brand-text span:nth-child(3) {
    color: #f8fafc;
    /* Slate 50 */
}

.site-brand-text span:nth-child(4) {
    display: none;
    /* Hide tagline on logo for cleaner look */
}

.site-brand-text:hover {
    opacity: 0.9;
}

.site-title {
    font-size: 2.4rem;
    margin: 0;
    margin-left: 1rem;
}

.site-title a {
    color: var(--color-white);
    /* White site title */
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    display: flex;
    /* Always display flex on desktop */
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    margin: 0 0.5rem;
}

.main-navigation a {
    color: var(--color-text-light);
    /* Light text for navigation links */
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
    white-space: nowrap;
    /* Prevent menu items from wrapping */
    border-radius: 6px;
    transition: all 0.2s ease;
    font-size: 1.4rem;
}

.main-navigation a:after {
    display: none;
    /* Remove underline effect */
}

.main-navigation a:hover:after,
.main-navigation .current-menu-item a:after {
    width: 0;
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}

/* Fix for Language Switcher pushing header height */
.header-translation-wrapper {
    display: flex !important;
    align-items: center !important;
    height: 40px !important; /* Fixed height */
    max-height: 40px !important;
    overflow: visible !important;
    position: relative !important;
    margin-left: 10px; transform: scale(0.85); transform-origin: right center;
}

/* Ensure the GTranslate widget itself doesn't expand the container */
.header-translation-wrapper .gtranslate_wrapper,
.header-translation-wrapper #google_translate_element,
.header-translation-wrapper .gt_container {
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    position: static !important; /* Keep it in the flex flow but don't let it grow */
}

/* Force the dropdown/menu to be absolute and float over content */
.header-translation-wrapper .gt_menu,
.header-translation-wrapper .gt_selector + div,
.header-translation-wrapper ul.gt_menu,
.header-translation-wrapper .gt_dropdown {
    position: absolute !important;
    top: 100% !important; /* Place it right below the 40px header */
    right: 0 !important;
    left: auto !important;
    height: auto !important;
    max-height: 400px !important;
    overflow-y: auto !important;
    z-index: 9999 !important;
    background: #fff !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2) !important;
}

.menu-toggle {
    display: none;
    /* Hidden by default on desktop */
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    z-index: 101;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.hamburger-line {
    width: 36px;
    height: 1.5px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.menu-toggle:hover .hamburger-line {
    background-color: var(--color-accent);
}

/* Active state animation */
.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Buttons */
.button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: var(--border-radius);
    font-family: var(--font-accent);
    font-weight: 600;
    text-align: center;
    transition: all var(--transition-speed) ease;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button:active {
    transform: scale(0.98);
    /* Micro-interaction click effect */
}

.button-primary {
    background: var(--color-accent);
    color: var(--color-white);
    /* White text on accent button */
    border: 2px solid var(--color-accent);
}

.button-primary:hover {
    background: darken(var(--color-accent), 10%);
    /* Darker accent */
    border-color: darken(var(--color-accent), 10%);
}

.button-secondary {
    background: transparent;
    color: var(--color-secondary);
    /* Blue text */
    border: 2px solid var(--color-secondary);
    margin-left: 1.5rem;
}

.button-secondary:hover {
    background: var(--color-secondary);
    color: var(--color-white);
    /* White text on blue hover */
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    overflow: hidden;
    padding-top: 80px;
    background: var(--color-primary);
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to bottom, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0.4) 50%, var(--color-dark-bg) 100%),
                      url('../../images/famille.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 0;
}

@media (max-width: 768px) {
    .hero-section::before {
        background-attachment: scroll; /* Fixed background is slow on mobile */
        background-image: 
            linear-gradient(to bottom, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.5) 100%),
            url('../../images/famille.webp');
    }
    .hero-section {
        min-height: 60vh;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

section.hero-section .hero-title {
    font-size: 6rem;
    margin-bottom: 2rem;
    color: #fff;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, #fff, #cbd5e1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

section.hero-section .hero-subtitle {
    font-size: 2rem;
    margin-bottom: 3rem;
    opacity: 0.8;
    color: #fff;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Global Movies Section */
.global-movies-section {
    padding: 4rem 0;
    background: transparent;
    /* Darker background for distinction */
}

.global-movies-section .container {
    overflow: hidden;
    padding: 0;
    max-width: 100%;
    margin: 0;
}

.movies-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    white-space: nowrap;
    padding: 2rem 0;
    direction: ltr;
    width: 100%;
}

.movies-carousel::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome, Safari, Opera */
}

.movies-grid {
    display: inline-flex;
    gap: 2rem;
    padding: 0 2rem;
    direction: ltr;
    animation: scrollRTL var(--carousel-duration) linear infinite;
}

.movie-item {
    flex: 0 0 auto;
    width: 250px;
    background: var(--color-darker-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    text-align: center;
    transition: transform var(--transition-speed) ease;
    border: 1px solid var(--color-border-dark);
    display: flex;
    flex-direction: column;
}

.movie-item:hover {
    transform: translateY(-10px);
}

.movie-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    min-height: 350px;
    max-height: 350px;
}

.movie-title {
    font-size: 2rem;
    color: var(--color-white);
    /* White movie title */
    margin: 1.5rem 0;
    padding: 0 1rem;
}

/* Support Section */
.support-section {
    padding: 3rem 0;
    background: var(--color-dark-bg);
    /* Changed to dark background */
    text-align: center;
}

.support-section .section-title {
    color: var(--color-white);
    /* White title on dark background */
}

.support-box {
    background: var(--color-primary);
    /* Dark blue background for the box */
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border-dark);
}

.support-icon {
    font-size: 5rem;
    color: var(--color-secondary);
    margin-bottom: 2rem;
}

.support-title {
    font-size: 2.8rem;
    color: var(--color-white);
    /* White text for title */
    margin-bottom: 1.5rem;
}

.support-description {
    font-size: 1.6rem;
    color: var(--color-text-light);
    /* Light text for description */
    line-height: 1.8;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: var(--color-dark-bg);
    /* Changed to dark background */
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
    font-size: 4rem;
    color: var(--color-white);
    /* White title on dark background */
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 2px;
}

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

.feature-item {
    background: var(--color-primary);
    /* Dark blue background for feature cards */
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed) ease;
    border: 1px solid var(--color-border-dark);
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 5rem;
    color: var(--color-secondary);
    margin-bottom: 2rem;
}

.feature-title {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    /* White text for feature title */
}

.feature-description {
    font-size: 1.6rem;
    color: var(--color-text-light);
    /* Light text for feature description */
    opacity: 0.8;
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
    background: var(--color-dark-bg);
    /* Dark background */
    text-align: center;
}

.pricing-section .section-title {
    color: var(--color-white);
    /* White title on dark background */
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 5rem;
}

.toggle-label {
    font-size: 1.8rem;
    color: var(--color-text-light);
    /* Light text for toggle labels */
    font-weight: 500;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-primary);
    /* Darker background for the slider track */
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: var(--color-white);
    /* White circle for the slider */
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--color-secondary);
}

input:checked+.slider:before {
    transform: translateX(26px);
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    max-width: 100%;
    margin: 5rem auto 0;
}

@media (min-width: 768px) {
    .pricing-grid {
        flex-wrap: wrap;
    }
}

@media (min-width: 992px) {
    .pricing-grid {
        flex-wrap: wrap;
    }

    .pricing-plan {
        flex: 0 0 auto;
        width: auto;
    }

    /* Last two items will wrap to second row and be centered */
    .pricing-grid .pricing-plan.plan-index-4,
    .pricing-grid .pricing-plan.plan-index-5 {
        flex: 0 0 auto;
        width: auto;
    }
}

.pricing-plan {
    background: var(--color-darker-bg);
    padding: 4rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed) ease, border var(--transition-speed) ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    max-width: 380px;
    height: 100%;
    min-height: 650px;
    margin: 0 auto;
}

.pricing-plan.featured {
    border-color: var(--color-accent);
    /* transform: scale(1.05); Removed scaling */
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.15);
    /* Enhanced shadow for featured */
    z-index: 1;
    position: relative;
}

.pricing-plan:hover {
    transform: translateY(-10px);
}

.pricing-plan.featured:hover {
    transform: translateY(-10px);
    /* Same hover effect for all */
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 0.5rem 2rem;
    font-size: 1.4rem;
    font-weight: bold;
    transform: rotate(45deg) translate(25%, -25%);
    transform-origin: 100% 0;
    width: 150px;
    text-align: center;
}

.plan-name {
    font-size: 3rem;
    color: var(--color-white);
    /* White plan name */
    margin-bottom: 2rem;
}

.plan-price {
    font-size: 5rem;
    color: var(--color-accent);
    font-weight: 700;
    margin-bottom: 2rem;
}

.plan-price span {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-text-lighter);
    /* Lighter text for price unit */
}

.plan-features {
    list-style: none;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.plan-features li {
    font-size: 1.6rem;
    color: var(--color-text-light);
    /* Light text for features */
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border-dark);
}

.plan-features li:last-child {
    border-bottom: none;
}

/* How It Works Section */
.how-it-works-section {
    padding: 4rem 0;
    background: var(--color-dark-bg);
    /* Changed to dark background */
    text-align: center;
}

.how-it-works-section .section-title {
    margin-bottom: 7rem;
    color: var(--color-white);
    /* White text for title */
}

.steps-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 220px;
    max-width: 300px;
    margin: 0 10px;
}

.step-title {
    margin-bottom: 1rem;
    font-size: 2.2rem;
    color: var(--color-accent);
    font-weight: 700;
}

.step-description {
    font-size: 1.6rem;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 0;
    margin-top: 0;
    text-align: center;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    background: var(--color-dark-bg);
    /* Dark background */
}

.testimonials-section .section-title {
    color: var(--color-white);
    /* White title on dark background */
}

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

.testimonial-item {
    background: var(--color-primary);
    /* Dark blue background for testimonials */
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
    padding-top: 5rem;
    border: 1px solid var(--color-border-dark);
}

.testimonial-item::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 4rem;
    color: var(--color-accent);
    position: absolute;
    top: 2rem;
    left: 2rem;
    opacity: 0.3;
}

.testimonial-content {
    font-style: italic;
    color: var(--color-text-light);
    /* Light text for content */
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--color-white);
    /* White text for author */
}

.author-name {
    font-weight: 600;
    font-size: 1.8rem;
}

.author-title {
    font-size: 1.4rem;
    opacity: 0.7;
    color: var(--color-text-lighter);
    /* Lighter text for author title */
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: var(--color-dark-bg);
    /* Dark background */
    text-align: center;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 5rem;
    /* Space below title */
}

.faq-item {
    background: var(--color-primary);
    /* Dark blue background for FAQ items */
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--color-border-dark);
}

.faq-question {
    padding: 2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--color-white);
    /* White text for FAQ question */
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 2rem;
    transition: background-color var(--transition-speed) ease;
}

.faq-question:hover {
    background-color: var(--color-darker-bg);
    /* Slightly darker on hover */
}

.faq-question .icon {
    font-size: 1.8rem;
    color: var(--color-secondary);
    transition: transform var(--transition-speed) ease;
}

.faq-answer {
    padding: 0 2.5rem 2rem;
    color: var(--color-text-light);
    font-size: 1.6rem;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed) ease-out, opacity var(--transition-speed) ease-out;
    text-align: left !important;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    transition: max-height var(--transition-speed) ease-in, opacity var(--transition-speed) ease-in;
}

/* Call to Action Section */
.cta-section {
    padding: 8rem 0;
    background: var(--color-primary);
    /* Dark blue background */
    text-align: center;
    color: var(--color-white);
    /* White text */
}

.cta-title {
    font-size: 4.2rem;
    margin-bottom: 2rem;
    color: var(--color-white);
}

.cta-description {
    font-size: 2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    color: var(--color-text-lighter);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.site-footer {
    background: var(--color-primary);
    /* Dark blue footer */
    padding: 6rem 0 3rem;
    color: var(--color-text-light);
    font-size: 1.6rem;
    border-top: 1px solid var(--color-border-dark);
}

.site-footer .container {
    display: flex;
    flex-direction: column;
}

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

.footer-widget {
    text-align: left;
}

.footer-widget h3 {
    font-size: 2.2rem;
    color: var(--color-white);
    /* White widget titles */
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--color-accent);
}

.footer-widget p {
    color: var(--color-text-light);
    font-size: 1.6rem;
    line-height: 1.8;
}

.footer-widget ul li a {
    color: var(--color-text-light);
    font-size: 1.6rem;
    line-height: 1.8;
}

.footer-widget ul li {
    margin-bottom: 1rem;
}

.footer-widget ul li a:hover {
    color: var(--color-secondary);
}

.footer-widget.contact-info p i {
    margin-right: 10px;
    color: var(--color-secondary);
}

.social-icons {
    margin-top: 2rem;
    display: flex;
    gap: 15px;
}

.social-icons a {
    font-size: 2rem;
    color: var(--color-white);
    /* White social icons */
    transition: color var(--transition-speed) ease;
}

.social-icons a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    border-top: 1px solid var(--color-border-dark);
    padding-top: 2rem;
    text-align: center;
    font-size: 1.4rem;
    color: var(--color-text-light);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    html {
        font-size: 58%;
    }

    .container {
        padding: 0 1.5rem;
    }

    .hero-section {
        height: 80vh;
        padding: 2rem 0;
    }

    .movies-grid {
        gap: 1.5rem;
    }

    .movie-item {
        width: 220px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 60%;
    }

    .container {
        padding: 0 1rem;
    }

    .site-header {
        padding: 1.5rem 0;
    }

    .site-header .container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 1rem;
    }

    .site-branding {
        flex: 1;
    }

    .site-branding img {
        max-height: 40px;
    }

    .site-brand-text {
        font-size: 2.2rem;
        margin-left: 1rem;
    }

    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-primary);
        box-shadow: var(--box-shadow);
        border-top: 1px solid var(--color-border-dark);
        display: none;
        flex-direction: column;
        padding: 1.5rem 0;
        z-index: 999;
    }

    .main-navigation.toggled {
        display: flex;
    }

    .main-navigation ul {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .main-navigation li {
        margin: 0;
        border-bottom: 1px solid var(--color-border-dark);
    }

    .main-navigation li:last-child {
        border-bottom: none;
    }

    .main-navigation a {
        display: block;
        padding: 1.8rem 2rem;
        color: var(--color-white);
        font-size: 1.8rem;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-section {
        height: 70vh;
        padding: 1rem;
    }

    .hero-title {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .button {
        width: 100%;
        max-width: 300px;
        text-align: center;
        min-height: 50px;
        padding: 1.5rem 2rem;
    }

    .button-secondary {
        margin-left: 0;
    }

    .movies-carousel {
        padding: 1rem 0;
    }

    .movies-grid {
        gap: 1rem;
        padding: 0 1rem;
    }

    .movie-item {
        width: 180px;
    }

    .movie-item img {
        height: 250px;
    }

    .movie-title {
        font-size: 1.6rem;
        margin: 1rem 0;
    }

    .features-grid,
    .pricing-grid,
    .testimonials-grid,
    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .feature-item,
    .pricing-plan,
    .testimonial-item {
        padding: 2.5rem 2rem;
        margin-bottom: 1rem;
    }

    .form-section {
        margin-bottom: 2rem;
    }

    .form-group {
        margin-bottom: 1.8rem;
    }

    .how-it-works-section .steps-grid {
        flex-direction: column;
        gap: 3rem;
        padding: 0 1rem;
    }

    .how-it-works-section .steps-grid::before {
        display: none;
    }

    .step-item {
        max-width: 100%;
        margin: 0;
        padding: 2.5rem 1.8rem;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 15px;
        transition: all 0.3s ease;
    }

    .step-item:hover {
        transform: translateY(-5px);
        border-color: var(--color-accent);
        box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
    }

    .step-title {
        color: var(--color-accent);
        font-size: 2.4rem;
        margin-bottom: 1.2rem;
    }

    .step-description {
        font-size: 1.7rem;
    }

    .faq-question {
        font-size: 1.6rem;
        padding: 1.8rem;
    }

    .faq-answer {
        padding: 0 1.8rem 1.8rem;
    }

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

    .cta-description {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 3rem;
        margin-bottom: 3rem;
    }

    .support-box,
    .subscription-form-container {
        padding: 2rem;
        margin: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 62%;
    }

    .container {
        padding: 0 0.5rem;
    }

    .site-header {
        padding: 1rem 0;
    }

    .site-branding img {
        max-height: 35px;
    }

    .site-brand-text {
        font-size: 1.8rem;
        margin-left: 0.5rem;
    }

    .hero-section {
        height: 60vh;
    }

    .hero-title {
        font-size: 3rem;
        line-height: 1.1;
    }

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

    .button {
        padding: 1rem 2rem;
        font-size: 1.4rem;
    }

    .movies-grid {
        padding: 0 0.5rem;
    }

    .movie-item {
        width: 150px;
    }

    .movie-item img {
        height: 200px;
    }

    .movie-title {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .feature-item,
    .pricing-plan,
    .testimonial-item {
        padding: 1.5rem;
    }

    .feature-icon {
        font-size: 4rem;
    }

    .feature-title {
        font-size: 2rem;
    }

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

    .faq-answer {
        padding: 0 1rem 1rem;
        font-size: 1.4rem;
    }

    .cta-title {
        font-size: 2.4rem;
    }

    .support-box {
        padding: 1.5rem;
    }

    .support-icon {
        font-size: 4rem;
    }

    .support-title {
        font-size: 2.2rem;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {

    .button,
    .menu-toggle,
    .faq-question {
        min-height: 48px;
        min-width: 48px;
        touch-action: manipulation;
    }

    .main-navigation a {
        padding: 1.5rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .movie-item:hover {
        transform: none;
    }

    .feature-item:hover,
    .pricing-plan:hover,
    .testimonial-item:hover {
        transform: none;
    }

    /* Prevent zoom on input focus for iOS */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    select,
    textarea {
        font-size: 16px;
    }
}

/* RTL Support */
body.rtl {
    direction: rtl;
    text-align: right;
    /* Default text alignment for RTL, will override where needed */
}

.rtl .container {
    text-align: right;
    /* Align content to right within container for RTL */
}

.rtl h1,
.rtl h2,
.rtl h3,
.rtl h4,
.rtl h5,
.rtl h6,
.rtl p,
.rtl li,
.rtl .section-title,
.rtl .hero-subtitle,
.rtl .cta-title,
.rtl .cta-description,
.rtl .testimonial-content,
.rtl .author-name,
.rtl .author-title,
.rtl .feature-title,
.rtl .feature-description,
.rtl .step-title,
.rtl .step-description,
.rtl .plan-name,
.rtl .plan-price,
.rtl .plan-features li,
.rtl .support-title,
.rtl .support-description {
    text-align: left;
    /* Override specific elements to left-align in RTL */
}

.rtl .site-title a {
    text-align: right;
    /* Adjust if logo is on left */
}

.rtl .main-navigation ul {
    direction: rtl;
}

.rtl .main-navigation li {
    margin: 0 0 0 1.5rem;
    /* Adjust margins for RTL menu items */
}

.rtl .main-navigation li:last-child {
    margin-left: 0;
    /* Remove margin for the last item in RTL */
}

.rtl .main-navigation a:after {
    left: auto;
    right: 0;
}

.rtl .menu-toggle {
    margin-left: auto;
    /* Push toggle to the left in RTL */
}

.rtl .button-secondary {
    margin-right: 1.5rem;
    /* Adjust margin for buttons in RTL */
    margin-left: 0;
}

.rtl .hero-content {
    text-align: right;
}

.rtl .testimonials-grid {
    text-align: right;
    /* Ensure grid items are aligned right in RTL */
}

.rtl .testimonial-item {
    text-align: right;
    /* Ensure testimonial item text is right-aligned in RTL */
}

.rtl .testimonial-item::before {
    left: auto;
    right: 15px;
}

.rtl .testimonial-author {
    flex-direction: row-reverse;
    /* Reverse direction for author info in RTL */
    text-align: right;
    /* Align author text to the right */
}

.rtl .faq-question {
    justify-content: flex-start;
    /* Align content to the start (left) in RTL */
    text-align: left;
    /* Keep text-align for potential inherited text */
}

.rtl .faq-question-text {
    direction: ltr;
    /* Ensure the question text itself is LTR to fix question mark */
    margin-right: auto;
    /* Push the text to the left and icon to the right */
    margin-left: 0;
    /* Reset left margin */
}

.rtl .faq-question .icon {
    left: auto;
    right: 15px;
    /* Adjust icon position for RTL */
}

.rtl .faq-answer {
    text-align: left;
    /* Ensure FAQ answer text is left-aligned in RTL */
}

.rtl .cta-section .container {
    text-align: right;
    /* Ensure CTA content is aligned right in RTL */
}

.rtl .pricing-toggle .toggle-label.active,
.rtl .pricing-toggle .toggle-label:hover {
    color: var(--color-primary);
    /* Keep text color consistent */
}

.rtl .pricing-grid {
    text-align: right;
}

.rtl .plan-features li {
    text-align: right;
}

.rtl .steps-grid {
    flex-direction: row;
    /* Force LTR order for steps in RTL */
    justify-content: space-between;
    text-align: center;
    /* Center the grid container itself */
}

.rtl .step-item {
    text-align: center;
    /* Center align step content */
}

.rtl .step-number {
    margin-left: 0;
    margin-right: 0;
    /* Reset margins to allow centering */
}

.rtl .steps-grid::before {
    left: 5%;
    /* Ensure the line starts from the left */
    right: 5%;
    /* Ensure the line extends to the right */
    /* No specific right adjustment needed, let global apply */
}

.rtl .footer-widgets {
    text-align: right;
    /* Align footer widgets right */
}

.rtl .footer-widget h3::after {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    /* Center the underline */
}

.rtl .social-icons {
    justify-content: flex-end;
    /* Align social icons to the right */
}

@media (max-width: 768px) {
    body.rtl .main-navigation ul {
        align-items: flex-end;
    }
}

/* ============================================
   ANIMATIONS - SINGLE SOURCE OF TRUTH
   ============================================ */

/* Fade In */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Slide Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scrolling Animations */
@keyframes scrollRTL {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRTLWelcome {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Bounce Animation */
@keyframes bounce {

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

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Pulse Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(40, 167, 69, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

@keyframes pulse-banner {
    0% {
        background: linear-gradient(45deg, #f59e0b, #d97706);
    }

    50% {
        background: linear-gradient(45deg, #d97706, #f59e0b);
    }

    100% {
        background: linear-gradient(45deg, #f59e0b, #d97706);
    }
}

@keyframes pulse-cta {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Shine Animation */
@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #333;
    /* Dark track */
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: #888;
    /* Gray thumb */
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
    /* Darker gray on hover */
}

.rtl .section-title,
.rtl .hero-title,
.rtl .hero-subtitle,
.rtl .cta-title,
.rtl .cta-description {
    text-align: center;
    /* Center align these titles/descriptions in RTL */
}

.rtl .testimonial-content,
.rtl .author-name,
.rtl .author-title,
.rtl .feature-title,
.rtl .feature-description,
.rtl .step-title,
.rtl .step-description,
.rtl .plan-name,
.rtl .plan-price,
.rtl .plan-features li,
.rtl .support-title,
.rtl .support-description {
    text-align: left;
    /* Override specific elements to left-align in RTL */
}

.rtl .footer-widget {
    text-align: center;
    /* Center align the footer widget content in RTL */
}

.rtl .footer-widget h3 {
    text-align: center;
    /* Force center alignment for footer widget headings in RTL */
}

.rtl .footer-widget h3::after {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    /* Center the underline */
}

/* Ensure the overall footer widget content is also centered in RTL */
.rtl .footer-widget p,
.rtl .footer-widget ul {
    text-align: center;
}

.rtl .footer-widget ul li {
    text-align: center;
    /* Center list items as well */
}

/* RTL Overrides for Footer Widgets - Ensure centering */
body.rtl .footer-widget {
    text-align: center;
    /* Force center alignment for the entire widget content */
}

body.rtl .footer-widget h3 {
    text-align: center;
    /* Force center alignment for footer widget headings */
}

body.rtl .footer-widget h3::after {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    /* Center the underline relative to the heading */
}

body.rtl .footer-widget p,
body.rtl .footer-widget ul li,
body.rtl .footer-widget ul li a {
    text-align: center;
    /* Ensure all text within footer widget is centered */
}

body.rtl .social-icons {
    justify-content: center;
    /* Center social icons in RTL footer */
}

/* RTL Navigation Fixes */
/* RTL Navigation Fixes */
body.rtl .main-navigation {
    display: flex !important;
    align-items: center;
}

/* Style for Subscription Form */
.subscription-form-container {
    background-color: var(--color-darker-bg);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 600px;
    margin: 4rem auto;
    color: var(--color-text-light);
}

.subscription-form-container h2 {
    color: var(--color-white);
    text-align: center;
    margin-bottom: 2.5rem;
}

.subscription-form-container label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.subscription-form-container input[type="text"],
.subscription-form-container input[type="email"],
.subscription-form-container select {
    width: 100%;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid var(--color-border-dark);
    border-radius: var(--border-radius);
    background-color: #333;
    color: var(--color-text-light);
    font-size: 1.6rem;
}

.subscription-form-container input[type="text"]:focus,
.subscription-form-container input[type="email"]:focus,
.subscription-form-container select:focus {
    border-color: var(--color-secondary);
    outline: none;
}

.subscription-form-container select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23cccccc%22%20d%3D%22M287%2C114.7L146.2%2C255.5L5.4%2C114.7H287z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    background-size: 1.2rem;
    padding-right: 3rem;
    /* Make space for the arrow */
}

.subscription-form-container .button-primary {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.8rem;
    text-transform: uppercase;
    font-weight: 600;
}

/* RTL adjustments for the form */
.rtl .subscription-form-container {
    text-align: right;
    /* Adjust form alignment for RTL */
}

.rtl .subscription-form-container input,
.rtl .subscription-form-container select {
    text-align: right;
}

.rtl .subscription-form-container select {
    background-position: left 1.5rem center;
    /* Adjust dropdown arrow for RTL */
    padding-left: 3rem;
    padding-right: 1.5rem;
}

/* Overrides for 'Our Packages' footer widget in RTL to ensure centering */
.rtl .footer-widget.our-packages {
    text-align: center;
}

.rtl .footer-widget.our-packages h3 {
    text-align: center;
}

.rtl .footer-widget.our-packages h3::after {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
}

.rtl .footer-widget.our-packages ul {
    list-style-position: inside;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
}

.rtl .footer-widget.our-packages ul li {
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* --- Services Guide Page Styles --- */
.services-guide {
    padding: 40px 0;
    direction: ltr;
    text-align: left;
}

.guide-header {
    text-align: center;
    margin-bottom: 40px;
}

.guide-header h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #fff;
}

.guide-header h1 span,
.guide-header h1 a {
    background: none;
    color: inherit;
}

.guide-header .lead {
    font-size: 1.2em;
    color: #666;
    text-align: center;
}

.guide-sections {
    text-align: left;
}

.guide-section {
    margin-bottom: 40px;
    background: var(--color-primary);
    color: #f5f5f5;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.guide-section h2 {
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.08);
    text-align: left;
}

.section-intro {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: left;
}

.guide-content h3 {
    color: var(--color-secondary);
    margin: 25px 0 15px;
    font-size: 1.3em;
    text-align: left;
    background: none;
}

.guide-content p,
.guide-content li {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left;
}

.step-item {
    margin-bottom: 25px;
}

.step-item h3 {
    color: var(--color-secondary);
    margin-bottom: 10px;
    text-align: left;
    background: none;
}

.device-setup {
    margin-bottom: 30px;
}

.device-setup h3 {
    color: #fff;
    margin-bottom: 15px;
    text-align: left;
}

.device-setup ol {
    padding-left: 20px;
}

.device-setup li {
    margin-bottom: 10px;
    color: #fff;
    line-height: 1.6;
    text-align: left;
}

.device-setup strong {
    color: #444;
}

.troubleshooting-item {
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.04);
    color: #f5f5f5;
    border-radius: 5px;
    text-align: left;
}

.troubleshooting-item h4 {
    color: var(--color-accent);
    margin-bottom: 10px;
    text-align: left;
}

.troubleshooting-item p {
    margin-bottom: 0;
    text-align: left;
}

.support-options {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.btn {
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--color-accent);
    color: #fff;
}

.btn-secondary {
    background: var(--color-secondary);
    color: #fff;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Force LTR and Left alignment for RTL body on this page */
body.rtl .services-guide {
    direction: ltr;
    text-align: left;
}

body.rtl .services-guide h1,
body.rtl .services-guide h2,
body.rtl .services-guide h3,
body.rtl .services-guide h4,
body.rtl .services-guide h5,
body.rtl .services-guide h6,
body.rtl .services-guide p,
body.rtl .services-guide li {
    text-align: left;
}

body.rtl .guide-header {
    text-align: center;
}

body.rtl .guide-header h1 {
    text-align: center;
}

body.rtl .guide-header .lead {
    text-align: center;
    /* Ensure lead text is centered in RTL */
}

body.rtl .guide-sections {
    text-align: left !important;
    /* Ensure sections themselves align left in RTL */
}

body.rtl .support-options {
    justify-content: flex-start !important;
}

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

    .support-options {
        flex-direction: column;
        align-items: flex-start !important;
    }

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

    .guide-header h1 {
        font-size: 2em;
        text-align: center !important;
        /* Center on small screens */
    }

    body.rtl .guide-header h1 {
        text-align: center !important;
        /* Center on small screens in RTL */
    }
}

/* Form Messages */
.success,
.error {
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    font-weight: 500;
}

.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Contact Page Styles */
.contact-page {
    padding: 4rem 0;
    background: var(--color-dark-bg);
    min-height: 80vh;
}

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

.contact-header h1 {
    color: var(--color-white);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.contact-header .lead {
    color: var(--color-text-light);
    font-size: 1.8rem;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: start;
}

.contact-form-section,
.contact-info-section {
    background: var(--color-primary);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form-section h2,
.contact-info-section h2 {
    color: var(--color-white);
    margin-bottom: 2rem;
    font-size: 2.4rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    color: var(--color-text-light);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid var(--color-border-dark);
    border-radius: var(--border-radius);
    background: #333;
    color: var(--color-text-light);
    font-size: 1.6rem;
    transition: border-color var(--transition-speed);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-secondary);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: var(--color-darker-bg);
    border-radius: var(--border-radius);
}

.contact-info-item i {
    font-size: 2.4rem;
    color: var(--color-secondary);
    margin-right: 1.5rem;
    margin-top: 0.5rem;
}

.contact-info-item h3 {
    color: var(--color-white);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.contact-info-item p {
    color: var(--color-text-light);
    margin: 0 0 1rem 0;
}

.contact-info-item .button {
    margin-top: 1rem;
    display: inline-block;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-section,
    .contact-info-section {
        padding: 2rem;
    }

    .contact-header h1 {
        font-size: 2.8rem;
    }
}

/* Pricing Toggle Active State */
.toggle-label.active {
    color: var(--color-secondary);
    font-weight: 600;
}

.toggle-label {
    transition: color var(--transition-speed) ease;
}

/* Updated Pricing Grid for 5 Plans */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 5rem;
}

@media (min-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Checkout Page Styles */
.checkout-page {
    padding: 4rem 0;
    background: var(--color-dark-bg);
    min-height: 80vh;
}

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

.checkout-header h1 {
    color: var(--color-white);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.checkout-header .lead {
    color: var(--color-text-light);
    font-size: 1.8rem;
}

.checkout-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.checkout-form-section {
    background: var(--color-primary);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-section {
    margin-bottom: 3rem;
}

.form-section h3 {
    color: var(--color-white);
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.plan-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.plan-option {
    cursor: pointer;
}

.plan-option input[type="radio"] {
    display: none;
}

.plan-card {
    background: var(--color-darker-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 2px solid transparent;
    transition: all var(--transition-speed);
    position: relative;
}

.plan-card.popular .badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.plan-option input[type="radio"]:checked+.plan-card {
    border-color: var(--color-secondary);
    background: var(--color-primary);
}

.plan-card h4 {
    color: var(--color-white);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.plan-card .price {
    color: var(--color-secondary);
    font-size: 2rem;
    font-weight: 600;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.payment-option {
    cursor: pointer;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-card {
    background: var(--color-darker-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 2px solid transparent;
    transition: all var(--transition-speed);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.payment-option input[type="radio"]:checked+.payment-card {
    border-color: var(--color-secondary);
    background: var(--color-primary);
}

.payment-card i {
    font-size: 3rem;
    color: var(--color-secondary);
}

.payment-card span {
    color: var(--color-white);
    font-weight: 500;
}

.checkout-btn {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.8rem;
    margin-top: 2rem;
}

.order-summary {
    background: var(--color-primary);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.order-summary h3 {
    color: var(--color-white);
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.selected-plan {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border-dark);
}

.selected-plan h4 {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

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

.plan-name {
    color: var(--color-white);
    font-weight: 500;
}

.plan-price {
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 1.8rem;
}

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

.features-list h4 {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.features-list ul {
    list-style: none;
    padding: 0;
}

.features-list li {
    color: var(--color-text-light);
    padding: 0.5rem 0;
    font-size: 1.4rem;
}

.features-list li:before {
    content: "✓";
    color: var(--color-secondary);
    font-weight: bold;
    margin-right: 1rem;
}

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

.total strong {
    color: var(--color-white);
    font-size: 2rem;
}

#total-price {
    color: var(--color-secondary);
}

@media (max-width: 768px) {
    .checkout-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .plan-options {
        grid-template-columns: 1fr;
    }

    .payment-options {
        grid-template-columns: 1fr;
    }

    .order-summary {
        position: static;
    }
}

/* PayPal Integration Styles */
#paypal-button-container {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--color-darker-bg);
    border-radius: var(--border-radius);
    border: 2px solid var(--color-secondary);
}

.payment-option input[type="radio"]:checked+.payment-card {
    border-color: var(--color-secondary);
    background: var(--color-primary);
}

#manual-checkout-btn {
    transition: all var(--transition-speed);
}

/* Thank You Page Styles */
.thank-you-page {
    padding: 6rem 0;
    background: var(--color-dark-bg);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    text-align: center;
    background: var(--color-primary);
    padding: 4rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    font-size: 6rem;
    color: #28a745;
    margin-bottom: 2rem;
}

.thank-you-content h1 {
    color: var(--color-white);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.thank-you-content .lead {
    color: var(--color-text-light);
    font-size: 1.8rem;
    margin-bottom: 3rem;
}

.next-steps {
    background: var(--color-darker-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
}

.next-steps h3 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    color: var(--color-text-light);
    padding: 0.8rem 0;
    font-size: 1.6rem;
}

.next-steps li:before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    margin-right: 1rem;
}

.action-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

@media (max-width: 768px) {
    .action-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .thank-you-content {
        padding: 3rem 2rem;
    }
}

/* WhatsApp Payment Styles */
.whatsapp-payment {
    margin-bottom: 2rem;
}

.whatsapp-card {
    background: var(--color-darker-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 2px solid #25D366;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.whatsapp-card i {
    font-size: 4rem;
    color: #25D366;
}

.payment-info h4 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.payment-info p {
    color: var(--color-text-light);
    margin: 0;
    font-size: 1.4rem;
}

#whatsapp-order-btn {
    background: #25D366;
    border-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.8rem;
}

#whatsapp-order-btn:hover {
    background: #128C7E;
    border-color: #128C7E;
}

#whatsapp-order-btn i {
    font-size: 2rem;
}

/* Logo Styles */
.site-logo {
    display: flex;
    align-items: center;
}

.site-logo .custom-logo {
    max-height: 60px;
    width: auto;
    margin-right: 1rem;
}

.site-branding {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .site-logo .custom-logo {
        max-height: 45px;
    }
}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {

    /* Reduce transitions on mobile for better performance - but keep carousel animations */
    *:not(.movies-grid):not(.channels-grid):not(.channels-scroll):not(.leagues-scroll) {
        transition-duration: 0.2s !important;
    }

    /* Optimize images for mobile */
    img {
        max-width: 100%;
        height: auto;
        image-rendering: optimizeSpeed;
    }

    /* Improve scroll performance */
    .movies-carousel {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .movies-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        width: max-content;
    }

    .movie-item {
        flex-shrink: 0;
        display: block;
    }

    /* Better touch targets */
    button,
    .button,
    a,
    input[type="submit"],
    input[type="button"] {
        min-height: var(--touch-target-size);
        min-width: var(--touch-target-size);
        touch-action: manipulation;
    }

    /* Prevent zoom on input focus */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    select,
    textarea {
        font-size: 16px;
        /* Prevents zoom on iOS */
    }

    /* Optimize form layouts */
    .subscription-form-container,
    .contact-form-section,
    .checkout-form-section {
        padding: var(--mobile-padding);
        margin: var(--mobile-margin);
    }

    /* Better spacing for mobile */
    .hero-content,
    .feature-item,
    .pricing-plan,
    .testimonial-item {
        padding: var(--mobile-padding);
    }

    /* Optimize grid layouts */
    .features-grid,
    .pricing-grid,
    .testimonials-grid {
        gap: var(--mobile-margin);
    }
}

/* Tablet-specific optimizations */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .hero-section {
        height: 85vh;
    }

    .movies-grid {
        gap: 1.5rem;
    }

    .movie-item {
        width: 200px;
    }

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

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

    /* Reset centering for tablet - let grid handle it */
    .pricing-grid .pricing-plan:nth-child(4),
    .pricing-grid .pricing-plan:nth-child(5) {
        grid-column: auto;
        justify-self: center;
        margin: 0;
    }

    .how-it-works-section .steps-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    .step-item {
        flex: 0 1 45%;
        margin-bottom: 2rem;
    }
}

/* Landscape phone optimizations */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        height: 100vh;
        padding: 0.5rem;
    }

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

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

    .site-header {
        padding: 1rem 0;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .hero-section::before {
        background-image: url('../../images/famille.webp');
        /* Use high-res image if available */
    }
}

/* Accessibility improvements for mobile */
@media (max-width: 768px) {

    /* Larger text for better readability */
    .faq-question,
    .main-navigation a {
        font-size: 1.8rem;
        line-height: 1.4;
    }

    /* Better contrast for small screens */
    .hero-title,
    .hero-subtitle {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }

    /* Focus indicators */
    button:focus,
    .button:focus,
    a:focus,
    input:focus,
    select:focus,
    textarea:focus {
        outline: 3px solid var(--color-secondary);
        outline-offset: 2px;
    }

    /* Enhanced contrast for text on dark backgrounds */
    .form-group label {
        font-weight: 600;
        color: var(--color-white);
    }

    .form-section h3 {
        font-weight: 700;
        color: var(--color-white);
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    /* Ensure sufficient contrast for links */
    a {
        text-decoration: underline;
    }

    /* Better readability for pricing cards */
    .plan-name {
        color: var(--color-white);
        font-weight: 700;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .plan-price {
        color: #FFD700;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    /* Feature descriptions with better contrast */
    .feature-description,
    .support-description {
        color: var(--color-text-light);
        font-weight: 500;
    }
}

/* Respect user's motion preferences - but keep carousel animations */
@media (prefers-reduced-motion: reduce) {
    *:not(.movies-grid):not(.channels-grid):not(.channels-scroll):not(.leagues-scroll) {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .movies-carousel {
        scroll-behavior: auto;
    }
}

/* Dark mode support for mobile */
@media (prefers-color-scheme: dark) and (max-width: 768px) {

    /* Additional dark mode optimizations for mobile if needed */
    .site-header {
        background: var(--color-darker-bg) !important;
    }
}

/* Welcome Page Styles */
.welcome-page {
    padding: 6rem 0;
    background: var(--color-dark-bg);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.welcome-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.welcome-headline {
    font-size: 4.5rem;
    color: var(--color-white);
    margin-bottom: 3rem;
    line-height: 1.2;
    font-weight: 700;
}

.welcome-image {
    margin: 3rem 0;
}

.welcome-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.welcome-text {
    font-size: 2rem;
    color: var(--color-text-light);
    margin-bottom: 4rem;
    line-height: 1.6;
}

.welcome-cta {
    margin-top: 4rem;
}

.welcome-button {
    font-size: 2rem;
    padding: 2rem 4rem;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: var(--color-white);
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    display: inline-block;
    transition: all var(--transition-speed) ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.welcome-button:hover {
    background: linear-gradient(135deg, #218838, #1e7e34);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.5);
    color: var(--color-white);
}

.social-proof {
    font-size: 1.4rem;
    color: var(--color-text-lighter);
    margin-top: 1.5rem;
    font-style: italic;
}

.welcome-faq {
    margin-top: 5rem;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.welcome-faq .faq-item {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--color-primary);
    border-radius: var(--border-radius);
}

.welcome-faq h3 {
    color: var(--color-secondary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.welcome-faq p {
    color: var(--color-text-light);
    font-size: 1.6rem;
    margin: 0;
}

.welcome-subtitle {
    font-size: 2rem;
    color: var(--color-text-light);
    margin-bottom: 4rem;
    text-align: center;
}

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

.benefit-card {
    background: var(--color-primary);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed) ease;
    border: 1px solid var(--color-border-dark);
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: block;
}

.benefit-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.benefit-desc {
    color: var(--color-text-light);
    line-height: 1.6;
    font-size: 1.6rem;
}

.cta-section {
    background: var(--color-darker-bg);
    border-radius: var(--border-radius);
    padding: 4rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--color-border-dark);
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--color-white);
}

.cta-subtitle {
    font-size: 1.8rem;
    color: var(--color-text-light);
    margin-bottom: 3rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 1.7rem;
}

.guarantee {
    background: var(--color-primary);
    border-radius: var(--border-radius);
    padding: 3rem;
    margin-top: 3rem;
    text-align: center;
    border: 2px dashed var(--color-secondary);
}

.guarantee-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.guarantee-text {
    color: var(--color-text-light);
    font-size: 1.6rem;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .trust-badges {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cta-section {
        padding: 3rem 2rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .welcome-headline {
        font-size: 3.5rem;
        margin-bottom: 2.5rem;
    }

    .welcome-text {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .welcome-subtitle {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }

    .welcome-button {
        font-size: 1.8rem;
        padding: 1.8rem 3.5rem;
    }
}

@media (max-width: 480px) {
    .welcome-headline {
        font-size: 2.5rem;
    }

    .welcome-text {
        font-size: 1.6rem;
    }

    .welcome-button {
        font-size: 1.6rem;
        padding: 1.2rem 2rem;
        width: 100%;
    }
}

.menu-toggle {
    display: none;
}

.main-navigation .menu {
    display: flex;
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block !important;
        position: relative !important;
        z-index: 9999 !important;
        width: auto !important;
        height: auto !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .main-navigation .menu {
        display: none !important;
    }

    .main-navigation.toggled .menu {
        display: flex !important;
        flex-direction: column;
    }
}


/* Floating WhatsApp Button */
.floating-whatsapp-main {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
}

/* Bounce animation defined globally above */

.floating-whatsapp-main:hover {
    background: #128c7e;
    color: white;
}

/* Enhanced Hero Animations - Using global animations */
.hero-title {
    animation: slideInDown 1s ease-out;
}

.hero-subtitle {
    animation: slideInUp 1s ease-out 0.3s both;
}

/* Header Improvements */
.site-header {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid rgba(14, 165, 233, 0.3);
}

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

.site-branding {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.site-branding img {
    max-height: 45px;
    width: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-secondary);
}


.main-navigation .menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.main-navigation .menu li {
    margin: 0;
}

.main-navigation .menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.main-navigation .menu a:hover {
    background: linear-gradient(45deg, var(--color-secondary), var(--color-accent));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.35);
}

/* Hero Section Enhancements */
.highlight-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    animation: slideInUp 1s ease-out 0.4s both;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #FFD700;
    display: block;
}

/* Movie Cards Enhancement */
.movie-card,
.channel-card,
.content-card {
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 15px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
}

.movie-card:hover,
.channel-card:hover,
.content-card:hover {
    transform: translateY(-10px) !important;
    border-color: var(--color-accent) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5) !important;
}

.movie-card img,
.channel-card img,
.content-card img,
.movie-item img {
    width: 100% !important;
    height: 350px !important;
    min-height: 350px !important;
    max-height: 350px !important;
    object-fit: cover !important;
    display: block !important;
}

.movie-title,
.channel-title,
.content-title {
    padding: 1.5rem !important;
    font-size: 1.8rem !important;
    color: var(--color-white) !important;
    text-align: center !important;
    font-weight: 600 !important;
}

.stat-label {
    font-size: 1rem;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
    opacity: 0.9;
    animation: slideInUp 1s ease-out 0.6s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}



/* Enhanced Pricing Cards */
.pricing-plan {
    position: relative;
    overflow: hidden;
    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);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pricing-plan.featured {
    border: 2px solid var(--color-accent);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(40, 167, 69, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.pricing-plan:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.pricing-plan.featured:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(40, 167, 69, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.plan-name {
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

.plan-price {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    margin-bottom: 2rem;
}

.pricing-plan.featured .plan-price {
    background: linear-gradient(135deg, #fff, var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.plan-features li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.plan-features li:hover {
    padding-left: 0.5rem;
    color: var(--color-accent);
}

.plan-features li:last-child {
    border-bottom: none;
}

.pricing-plan .button {
    margin-top: auto;
    padding: 1.5rem 3rem;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.pricing-plan .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
}

.pricing-plan .button::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;
}

.pricing-plan .button:hover::before {
    left: 100%;
}

.pricing-plan::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
    pointer-events: none;
}

.pricing-plan:hover::before {
    animation: shine 0.8s ease-in-out;
}

/* Shine animation defined globally above */

/* Pulse Effect for CTA - Using global animation */
.pulse-effect {
    animation: pulse 2s infinite;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .highlight-stats {
        flex-direction: column;
        gap: 1rem;
        margin: 2rem 0;
    }

    .stat-item {
        min-width: auto;
        padding: 1rem;
    }

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

    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }

    .trust-item {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
}

/* Comparison Section Styles — Dark Premium Theme */
.comparison-section {
    padding: 6rem 0;
    background: var(--color-darker-bg);
    position: relative;
    overflow: hidden;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(245, 158, 11, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(20, 184, 166, 0.04) 0%, transparent 50%);
    z-index: 0;
}

.comparison-section .container {
    position: relative;
    z-index: 2;
}

.comparison-section .section-title {
    text-align: center;
    font-size: 3.5rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.comparison-section .section-subtitle {
    text-align: center;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4rem;
}

.comparison-table {
    max-width: 950px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.15), rgba(245, 158, 11, 0.1));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-header>div {
    padding: 2rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.9);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-header>div:first-child {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.comparison-header>div:last-child {
    border-right: none;
    color: rgba(255, 255, 255, 0.4);
}

.service-badge {
    position: relative;
    background: linear-gradient(135deg, var(--color-accent), #f59e0b);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 1.4rem;
    color: #000;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.service-badge::after {
    content: '👑';
    position: absolute;
    top: -12px;
    right: -12px;
    font-size: 1.6rem;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.comparison-row:hover {
    background: rgba(255, 255, 255, 0.03);
}

.comparison-row:last-child {
    border-bottom: none;
}

.feature-cell {
    padding: 1.8rem 2rem;
    font-weight: 600;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-cell i {
    color: var(--color-accent);
    font-size: 1.3rem;
    width: 20px;
    text-align: center;
}

.our-service-cell {
    padding: 1.8rem 2rem;
    text-align: center;
    background: rgba(16, 185, 129, 0.06);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.cable-cell {
    padding: 1.8rem 2rem;
    text-align: center;
    background: rgba(239, 68, 68, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.price-highlight {
    font-size: 2.5rem;
    font-weight: 800;
    color: #10b981;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.price-bad {
    font-size: 2rem;
    font-weight: 700;
    color: #ef4444;
    opacity: 0.8;
}

.feature-good {
    font-size: 1.5rem;
    font-weight: 600;
    color: #10b981;
}

.feature-bad {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ef4444;
    opacity: 0.7;
}

.check-icon {
    font-size: 1.4rem;
    color: #10b981;
}

.cross-icon {
    font-size: 1.4rem;
    color: #ef4444;
    opacity: 0.5;
}

.comparison-cta {
    text-align: center;
    margin-top: 3rem;
}

.comparison-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--color-accent), #f59e0b);
    color: #000;
    padding: 1.5rem 3.5rem;
    font-size: 1.6rem;
    font-weight: 800;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.25);
}

.comparison-button:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.35);
    color: #000;
}

/* Comparison Mobile Responsive */
@media (max-width: 768px) {
    .comparison-section {
        padding: 4rem 0;
    }

    .comparison-table {
        margin: 0 1rem;
        border-radius: 16px;
    }

    .comparison-header {
        display: none;
    }

    .comparison-row {
        display: flex;
        flex-direction: column;
        margin-bottom: 1rem;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .comparison-row:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    .feature-cell {
        background: rgba(255, 255, 255, 0.05);
        justify-content: center;
        text-align: center;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 1.2rem;
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--color-white);
    }

    .our-service-cell,
    .cable-cell {
        border-right: none;
        padding: 1.5rem;
        position: relative;
    }

    .our-service-cell::before {
        content: 'Best4IPTV';
        display: block;
        font-size: 1.1rem;
        font-weight: 700;
        color: #10b981;
        margin-bottom: 0.3rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .cable-cell::before {
        content: 'Cable TV';
        display: block;
        font-size: 1.1rem;
        font-weight: 700;
        color: #ef4444;
        margin-bottom: 0.3rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        opacity: 0.7;
    }

    .comparison-section .section-title {
        font-size: 2.5rem;
    }

    .comparison-section .section-subtitle {
        font-size: 1.4rem;
        margin-bottom: 3rem;
    }

    .comparison-button {
        padding: 1.2rem 2.5rem;
        font-size: 1.4rem;
    }
}

/* Countdown Timer Styles */
.special-offer-banner {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 0.6rem;
    margin: -4rem -4rem 1rem -4rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    animation: pulse-banner 2s infinite;
}

/* Pulse banner animation defined globally above */

.original-price {
    font-size: 1.4rem;
    color: #999;
    text-decoration: line-through;
    margin-top: 0.5rem;
}

.countdown-container {
    margin: 1rem 0 1.5rem 0;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.12);
    border-radius: 15px;
    border: 2px dashed #3b82f6;
}

.countdown-text {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 0.8rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
}

.countdown-item {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 0.8rem;
    border-radius: 10px;
    text-align: center;
    min-width: 50px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.countdown-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
}

.countdown-label {
    display: block;
    font-size: 0.9rem;
    margin-top: 0.2rem;
    opacity: 0.9;
}

.countdown-cta {
    background: linear-gradient(45deg, #10b981, #059669) !important;
    animation: pulse-cta 2s infinite;
    font-size: 1.6rem !important;
    padding: 1.5rem 2rem !important;
}

/* Pulse CTA animation defined globally above */

.countdown-cta:hover {
    background: linear-gradient(45deg, #059669, #10b981) !important;
    transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .countdown-timer {
        gap: 0.5rem;
    }

    .countdown-item {
        min-width: 50px;
        padding: 0.8rem;
    }

    .countdown-number {
        font-size: 1.6rem;
    }

    .countdown-label {
        font-size: 0.9rem;
    }

    .special-offer-banner {
        font-size: 1.2rem;
        padding: 0.6rem;
    }
}

/* Hero Section Background Optimized */

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.75);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title,
.hero-subtitle {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
    }
}

/* More Info Button */
.more-info-button {
    background: transparent !important;
    color: var(--color-white) !important;
    border: 2px solid var(--color-white) !important;
    margin-top: 1.5rem !important;
    padding: 1.5rem 3rem !important;
    font-size: 1.8rem !important;
    transition: all 0.3s ease !important;
}

.more-info-button:hover {
    background: var(--color-white) !important;
    color: var(--color-primary) !important;
    transform: translateY(-2px) !important;
}

/* Features Strip Grid */
.features-strip-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem !important;
}

@media (max-width: 768px) {
    .features-strip-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
}

/* Leagues Scroll */
.leagues-scroll {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: max-content !important;
    animation: scrollRTL 30s linear infinite !important;
    gap: 2rem !important;
}

/* Channels Grid Welcome */
.channels-grid-welcome {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: max-content !important;
    animation: scrollRTLWelcome 30s linear infinite !important;
    gap: 2rem !important;
}

/* scrollRTLWelcome animation defined globally above */

/* Welcome Page New Sections */
.stats-section {
    margin: 4rem 0;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #28a745;
    display: block;
}

.stat-label {
    font-size: 1.2rem;
    margin-top: 0.5rem;
    color: var(--color-white);
}

.sports-leagues,
.compatible-devices {
    margin: 4rem 0;
    text-align: center;
}

.sports-leagues h3,
.compatible-devices h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--color-white);
}

.leagues-grid,
.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.league-item,
.device-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.league-item:hover,
.device-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.device-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.device-icon {
    font-size: 4rem;
    line-height: 1;
}

.testimonials-section,
.faq-section {
    margin: 4rem 0;
    text-align: center;
}

.testimonials-section h3,
.faq-section h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--color-white);
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stars {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.customer-name {
    font-weight: 600;
    color: #28a745;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: left;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-item h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #28a745;
}

.faq-item p {
    font-size: 1.3rem;
    color: var(--color-white);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

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

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

    .league-item,
    .device-item {
        padding: 2rem 1.5rem;
        font-size: 1.4rem;
        border-radius: 12px;
    }

    .device-icon {
        font-size: 3.5rem;
        margin-bottom: 0.5rem;
    }

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

    .sports-leagues h3,
    .compatible-devices h3,
    .testimonials-section h3,
    .faq-section h3 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
}

/* Power Block Section */
.power-block-section {
    margin: 6rem 0;
    text-align: center;
}

.power-block-section .section-title,
.testimonials-section .section-title,
.faq-section .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Section spacing improvements */
.benefits-grid {
    margin-bottom: 6rem;
}

.testimonials-section {
    margin: 6rem 0;
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.faq-section {
    margin: 6rem 0 4rem;
    text-align: center;
}

.faq-section .section-title {
    margin-bottom: 2rem;
}

@media (max-width: 768px) {

    .power-block-section .section-title,
    .testimonials-section .section-title,
    .faq-section .section-title {
        font-size: 2.2rem;
    }

    .power-block-section,
    .testimonials-section,
    .faq-section {
        margin: 4rem 0;
    }
}

/* Trial Info Text */
.trial-info {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 1rem 0;
    font-weight: 500;
    text-align: center;
}

@media (max-width: 768px) {
    .trial-info {
        font-size: 1.2rem;
    }
}

/* Trial Success Message */
.trial-success-message {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.trial-success-message .success-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
}

.trial-success-message h2 {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 2rem;
    font-weight: 700;
}

.trial-success-message p {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.trial-success-message .help-text {
    font-size: 1.4rem;
    color: #666;
    margin: 2rem 0 1rem;
}

.whatsapp-btn {
    background: #25d366;
    color: white;
    padding: 1.5rem 3rem;
    font-size: 1.6rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    margin-top: 1rem;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
    color: white;
}

@media (max-width: 768px) {
    .trial-success-message {
        padding: 3rem 1.5rem;
    }

    .trial-success-message h2 {
        font-size: 2.5rem;
    }

    .trial-success-message p {
        font-size: 1.4rem;
    }
}

/* Close Success Button */
.close-success-btn {
    background: #6c757d;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.4rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.close-success-btn:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

/* Mobile Order Summary First */
@media (max-width: 768px) {
    .checkout-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .order-summary {
        order: -1;
        margin-bottom: 0;
        position: static;
    }

    .checkout-form-section {
        order: 0;
    }

    .checkout-form {
        padding: 0;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        box-sizing: border-box;
        font-size: 16px;
        padding: 1.5rem;
    }

    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .payment-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .checkout-btn {
        width: 100%;
        padding: 1.8rem 2rem;
        min-height: 52px;
        font-size: 1.8rem;
        margin-top: 2rem;
    }
}

/* Fix Button Click Issues */
.pricing-plan .button {
    position: relative;
    z-index: 10;
    pointer-events: auto;
    display: inline-block;
    text-decoration: none;
}

.pricing-plan {
    position: relative;
    overflow: visible;
}

.countdown-container {
    pointer-events: none;
}

.countdown-container * {
    pointer-events: none;
}

/* Ensure buttons are clickable on mobile */
@media (max-width: 768px) {
    .pricing-plan .button {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        min-height: 48px;
        padding: 1.5rem 2rem;
    }
}

/* Mobile Checkout Improvements */
@media (max-width: 768px) {
    .checkout-content {
        padding: 0 1rem;
    }

    .order-summary,
    .checkout-form-section {
        width: 100%;
        margin: 0 0 2rem 0;
        padding: 2rem 1.5rem;
    }

    .checkout-form {
        padding: 0;
    }

    .form-group input {
        width: 100%;
        box-sizing: border-box;
    }

    .form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .payment-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Main Page Right Side Fix */
@media (min-width: 769px) {
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .pricing-grid {
        justify-content: center;
        max-width: 100%;
    }

    .hero-section .container,
    .features-section .container,
    .pricing-section .container {
        width: 100%;
        max-width: 1200px;
    }
}

/* Mobile-First Homepage Optimization */
@media (max-width: 768px) {

    /* Hero Section */
    .hero-section {
        padding: 4rem 0 3rem;
        text-align: center;
    }

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

    .hero-subtitle {
        font-size: 1.6rem;
        line-height: 1.4;
        margin-bottom: 2rem;
    }

    .hero-cta .button {
        width: 90%;
        max-width: 300px;
        padding: 1.8rem 2rem;
        font-size: 1.8rem;
        margin: 0 auto;
        display: block;
    }

    /* Features Section */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .feature-card {
        padding: 2.5rem 2rem;
        text-align: center;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

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

    .feature-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .feature-desc {
        font-size: 1.4rem;
        line-height: 1.5;
    }

    /* Pricing Section */
    .pricing-section {
        padding: 4rem 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 1rem;
        max-width: 500px;
    }

    /* Reset centering for mobile */
    .pricing-grid .pricing-plan:nth-child(4),
    .pricing-grid .pricing-plan:nth-child(5) {
        grid-column: auto;
        justify-self: center;
        margin: 0;
    }

    .pricing-plan {
        padding: 2.5rem 2rem;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        position: relative;
        overflow: hidden;
    }

    .pricing-plan.featured {
        transform: scale(1.02);
        border: 3px solid var(--color-primary);
    }

    .plan-name {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .plan-price {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 2rem;
    }

    .plan-features {
        margin-bottom: 2.5rem;
    }

    .plan-features li {
        font-size: 1.4rem;
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .pricing-plan .button {
        width: 100%;
        padding: 1.8rem 2rem;
        font-size: 1.7rem;
        font-weight: 700;
        border-radius: 50px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* Special Offers */
    .special-offer-banner {
        margin-bottom: 1.5rem;
        padding: 1rem;
        background: linear-gradient(45deg, #f59e0b, #d97706);
        border-radius: 10px;
        animation: pulse 2s infinite;
    }

    .offer-text {
        font-size: 1.3rem;
        font-weight: 700;
        color: white;
    }

    /* Countdown Timer */
    .countdown-container {
        margin: 1.5rem 0;
        padding: 1.5rem;
        background: rgba(0, 0, 0, 0.1);
        border-radius: 10px;
    }

    .countdown-timer {
        display: flex;
        justify-content: center;
        gap: 1rem;
    }

    .countdown-item {
        text-align: center;
        background: rgba(255, 255, 255, 0.1);
        padding: 1rem 0.8rem;
        border-radius: 8px;
        min-width: 60px;
    }

    .countdown-number {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--color-primary);
    }

    .countdown-label {
        font-size: 1rem;
        margin-top: 0.5rem;
    }

    /* Section Spacing */
    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 3rem;
        line-height: 1.2;
    }

    /* Container */
    .container {
        padding: 0 1.5rem;
        max-width: 100%;
    }

    /* Buttons Hover Effects */
    .button:active {
        transform: scale(0.98);
    }

    /* Smooth Animations */
    * {
        transition: all 0.3s ease;
    }

    /* Trust Badges */
    .trust-badges {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        margin: 2rem 0;
    }

    .trust-badge {
        background: rgba(255, 255, 255, 0.1);
        padding: 1rem 1.5rem;
        border-radius: 25px;
        font-size: 1.3rem;
        text-align: center;
        backdrop-filter: blur(10px);
    }
}

/* How It Works Mobile Optimization */
@media (max-width: 768px) {
    .how-it-works-section {
        padding: 4rem 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    }

    .how-it-works-grid {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
        padding: 0 1rem;
    }

    .how-it-works-step {
        background: rgba(255, 255, 255, 0.1);
        padding: 2.5rem 2rem;
        border-radius: 20px;
        text-align: center;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        position: relative;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .step-number {
        background: linear-gradient(45deg, var(--color-primary), #20c997);
        color: white;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        font-weight: 700;
        margin: 0 auto 1.5rem;
        box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
    }

    .step-title {
        font-size: 2rem;
        font-weight: 700;
        color: var(--color-white);
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .step-description {
        font-size: 1.4rem;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.5;
        margin: 0;
    }

    /* Connection Lines Between Steps */
    .how-it-works-step:not(:last-child)::after {
        content: '↓';
        position: absolute;
        bottom: -2rem;
        left: 50%;
        transform: translateX(-50%);
        font-size: 2rem;
        color: var(--color-primary);
        background: rgba(0, 0, 0, 0.3);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(10px);
    }

    /* Hover Effect */
    .how-it-works-step:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }

    .how-it-works-step:hover .step-number {
        transform: scale(1.1);
    }
}

/* Fix Desktop Button Issues */
@media (min-width: 769px) {
    .pricing-plan .button {
        position: relative;
        z-index: 100;
        pointer-events: auto;
        display: block;
        text-decoration: none;
        cursor: pointer;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }

    .pricing-plan {
        position: relative;
        z-index: 1;
    }

    .pricing-plan .countdown-container,
    .pricing-plan .special-offer-banner,
    .pricing-plan .popular-badge {
        pointer-events: none;
        z-index: 1;
    }

    .pricing-plan .countdown-container *,
    .pricing-plan .special-offer-banner *,
    .pricing-plan .popular-badge * {
        pointer-events: none;
    }

    /* Ensure buttons are above all other elements */
    .button-primary,
    .button-secondary {
        z-index: 999 !important;
        position: relative !important;
    }

    /* Remove any conflicting styles */
    .pricing-plan .button:hover {
        text-decoration: none;
    }
}

@media only screen and (min-width: 769px) {
    .menu-toggle {
        display: none;
    }

    .main-navigation .menu {
        display: flex;
    }
}

/* Global Channels Section */
.global-channels-section {
    text-align: center;
    padding: 60px 0;
}

.global-channels-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.global-channels-section .section-subtitle {
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 40px;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    justify-content: center;
}

.channel-item {
    background-color: #222;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.channel-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.channel-item span {
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff;
}

/* Added for Channel Carousel */
.channels-carousel {
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    white-space: nowrap;
    padding: 2rem 0;
    width: 100%;
}

.channels-carousel::-webkit-scrollbar {
    display: none;
}

.channels-grid {
    display: inline-flex;
    gap: 2rem;
    padding: 0 2rem;
    animation: scroll-rtl 30s linear infinite;
}

@media (max-width: 768px) {
    .channels-grid {
        animation: scroll-rtl 60s linear infinite;
    }
}

.welcome-cta {
    text-align: center;
    margin: 40px 0;
}

.trial-info {
    margin-top: 10px;
}

.pricing-grid {
    align-items: stretch;
}

.pricing-plan {
    display: flex;
    flex-direction: column;
}

.plan-features {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.countdown-container {
    margin: 1.5rem 0 1rem;
}

.mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff4b2b, #ff416c);
    color: #fff;
    padding: 0.8rem 1.2rem;
    z-index: 9999;
    display: none;
}

.mobile-sticky-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.mobile-sticky-cta__text {
    font-size: 1.3rem;
    line-height: 1.4;
    flex: 1;
}

.button.button-primary {
    padding: 0.9rem 1.4rem;
    font-size: 1.3rem;
    white-space: nowrap;
}

.mobile-sticky-cta__close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    padding: 0 0.5rem;
    cursor: pointer;
}

.hidden {
    display: none !important;
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
    }
}

@media (min-width: 769px) {
    .mobile-sticky-cta {
        display: none !important;
    }
}

.pricing-guarantee-box {
    margin-top: 3rem;
    padding: 1.8rem 2rem;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 1.4rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

/* ============================================
   TV CHANNELS SECTION WITH SCROLLING LOGO IMAGES
   ============================================ */

.tv-channels-section {
    padding: 4rem 0;
    background: var(--color-dark-bg);
    overflow: hidden;
}

.tv-channels-section .section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.tv-channels-section .section-subtitle {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 4rem;
    font-size: 1.8rem;
}

.container-full {
    width: 100%;
    max-width: 100%;
}

.channels-scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2rem 0;
    position: relative;
}

.channels-scroll-wrapper::before,
.channels-scroll-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.channels-scroll-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--color-dark-bg), transparent);
}

.channels-scroll-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--color-dark-bg), transparent);
}

.channels-scroll {
    display: flex;
    gap: 3rem;
    animation: scrollRTL var(--carousel-duration) linear infinite !important;
    width: fit-content;
}

.channels-scroll:hover {
    animation-play-state: paused;
}

/* scrollRTL animation defined globally above */

.channel-logo-item {
    flex-shrink: 0;
    width: 220px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.channel-logo-item:hover {
    transform: scale(1.08);
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(245, 158, 11, 0.25);
    background: rgba(255, 255, 255, 0.1);
}

.channel-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1);
    transition: all 0.3s ease;
}

.channel-logo-item:hover img {
    filter: brightness(1.1);
    transform: scale(1.05);
}

/* ============================================
   FOOTBALL LEAGUES SECTION WITH LOGO IMAGES
   ============================================ */

.football-leagues-section {
    padding: 4rem 0;
    background: var(--color-darker-bg);
}

.football-leagues-section .section-subtitle {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 4rem;
    font-size: 1.8rem;
}

.leagues-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.league-logo-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.league-logo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
}

.league-logo-card:hover::before {
    opacity: 1;
    top: 100%;
    left: 100%;
}

.league-logo-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--color-accent);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(40, 167, 69, 0.3);
}

.league-logo-card.featured {
    border-color: #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.05) 100%);
}

.league-logo-img {
    width: 140px;
    height: 140px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
}

.league-logo-img img[src=""],
.league-logo-img img:not([src]) {
    display: none;
}

.league-logo-img:has(img[src=""]):before,
.league-logo-img:has(img:not([src])):before {
    content: '⚽';
    font-size: 5rem;
    opacity: 0.3;
}

.league-logo-card:hover .league-logo-img {
    transform: rotateY(360deg) scale(1.1);
}

.league-logo-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 1rem;
}

/* Placeholder badges for leagues without logos */
.placeholder-badge {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: #fff;
}

.bundesliga-placeholder {
    background: linear-gradient(135deg, #d20515, #a00000);
}

.ligue1-placeholder {
    background: linear-gradient(135deg, #dae025, #b8c61e);
}

.ligue1-placeholder .placeholder-badge {
    color: #000;
}

.league-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.league-location {
    font-size: 1.4rem;
    color: var(--color-text-light);
    opacity: 0.8;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .channels-scroll {
        animation: scrollRTL 30s linear infinite !important;
        gap: 2rem;
    }

    .channel-logo-item {
        width: 180px;
        height: 110px;
        padding: 1rem;
    }

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

    .league-logo-img {
        width: 110px;
        height: 110px;
    }

    .channel-logo-item {
        flex-shrink: 0;
        width: 220px;
        height: 140px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        padding: 1.5rem;
        transition: all 0.3s ease;
        cursor: pointer;
        overflow: hidden;
    }

    .channel-logo-item:hover {
        transform: scale(1.08);
        border-color: var(--color-accent);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(14, 165, 233, 0.3);
        background: rgba(255, 255, 255, 0.1);
    }

    .channel-logo-item img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        filter: brightness(1);
        transition: all 0.3s ease;
    }

    .channel-logo-item:hover img {
        filter: brightness(1.1);
        transform: scale(1.05);
    }

    /* ============================================
   FOOTBALL LEAGUES SECTION WITH SCROLLING
   ============================================ */

    .football-leagues-section {
        padding: 4rem 0;
        background: var(--color-darker-bg);
        overflow: hidden;
        /* Prevent horizontal scrollbar on body */
    }

    .football-leagues-section .section-subtitle {
        text-align: center;
        color: var(--color-text-light);
        margin-bottom: 4rem;
        font-size: 1.8rem;
    }

    /* Scrolling Wrapper */
    .leagues-scroll-wrapper {
        overflow: hidden;
        padding: 2rem 0;
        position: relative;
        margin-top: 2rem;
        width: 100%;
    }

    .leagues-scroll-wrapper::before,
    .leagues-scroll-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        width: 150px;
        height: 100%;
        z-index: 2;
        pointer-events: none;
    }

    .leagues-scroll-wrapper::before {
        left: 0;
        background: linear-gradient(to right, var(--color-darker-bg), transparent);
    }

    .leagues-scroll-wrapper::after {
        right: 0;
        background: linear-gradient(to left, var(--color-darker-bg), transparent);
    }

    /* Scrolling Container */
    .leagues-scroll {
        display: flex !important;
        /* Force flex */
        gap: 3rem;
        animation: scrollRTL 30s linear infinite;
        width: max-content;
        /* Ensure it fits all items */
    }

    .leagues-scroll:hover {
        animation-play-state: paused;
    }

    /* League Card Styling */
    .football-leagues-section .league-logo-card {
        flex-shrink: 0;
        width: 260px;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
        backdrop-filter: blur(15px);
        border: 2px solid rgba(255, 255, 255, 0.15);
        border-radius: 20px;
        padding: 3rem 2rem;
        text-align: center;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .football-leagues-section .league-logo-card:hover {
        transform: translateY(-10px) scale(1.02);
        border-color: var(--color-accent);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(40, 167, 69, 0.3);
    }

    .football-leagues-section .league-logo-card.featured {
        border-color: #ffd700;
        background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.05) 100%);
    }

    /* League Image */
    .football-leagues-section .league-logo-img {
        width: 140px;
        height: 140px;
        margin: 0 auto 2rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 3px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.05);
    }

    .football-leagues-section .league-logo-card:hover .league-logo-img {
        transform: rotateY(360deg) scale(1.1);
    }

    .football-leagues-section .league-logo-img img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        padding: 1rem;
    }

    /* Text Styling */
    .league-title {
        font-size: 2rem;
        font-weight: 700;
        color: var(--color-white);
        margin-bottom: 0.5rem;
    }

    .league-location {
        font-size: 1.4rem;
        color: var(--color-text-light);
        opacity: 0.8;
        margin: 0;
    }

    /* Placeholders */
    .placeholder-badge {
        font-size: 2.5rem;
        font-weight: 900;
        letter-spacing: 2px;
        color: #fff;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .leagues-scroll {
            gap: 2rem;
            animation-duration: 30s;
        }

        .football-leagues-section .league-logo-card {
            width: 200px;
            padding: 2rem 1rem;
        }

        .football-leagues-section .league-logo-img {
            width: 100px;
            height: 100px;
        }

        .league-title {
            font-size: 1.8rem;
        }
    }
}

/* Animation for welcome channels carousel - Using global scrollRTL */

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
    color: white;
    font-size: 2rem;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-float i {
        font-size: 1.8rem;
    }
}

/* Checkout Actions & WhatsApp Button */
.checkout-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.button-whatsapp {
    background: #25d366;
    color: white;
    border: none;
}

.button-whatsapp:hover {
    background: #128c7e;
    color: white;
    transform: translateY(-2px);
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--color-text-lighter);
    font-size: 1.2rem;
    font-weight: 600;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--color-border-dark);
}

.divider:not(:empty)::before {
    margin-right: 1.5rem;
}

.divider:not(:empty)::after {
    margin-left: 1.5rem;
}

.payment-alert {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    font-size: 1.3rem;
    line-height: 1.5;
}

.payment-alert.warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-left: 4px solid #f59e0b;
}

.payment-alert .alert-icon {
    color: #f59e0b;
    font-size: 1.8rem;
    margin-top: 0.2rem;
}

.payment-alert .alert-content strong {
    display: block;
    color: #f59e0b;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.payment-alert .alert-content p {
    margin: 0;
    color: var(--color-text-light);
}

/* Force CSS Reload - Version 1.2 */


/* --- components.css --- */
/* ============================================
   UNIFIED COMPONENTS CSS
   ============================================ */

/* CSS Variables - Single Source of Truth */
:root {
    /* Colors */
    --color-primary: #1f2937;
    --color-secondary: #14b8a6;
    --color-accent: #f59e0b;
    --color-success: #22c55e;

    /* Backgrounds */
    --color-background: #0f1218;
    --color-dark-bg: #141923;
    --color-darker-bg: #0f1218;
    --color-white: #ffffff;

    /* Text */
    --color-text-dark: #333333;
    --color-text-light: #f5f5f5;
    --color-text-lighter: #cccccc;

    /* Borders */
    --color-border-dark: #444444;
    --color-border-light: #e0e0e0;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --font-accent: 'Poppins', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;

    /* Layout */
    --container-max-width: 1200px;
    --border-radius: 8px;
    --border-radius-lg: 15px;
    --transition-speed: 0.3s;
    --box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);

    /* Breakpoints */
    --bp-mobile: 768px;
    --bp-tablet: 1024px;
    --bp-desktop: 1200px;
}

/* Base Button Component */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius);
    font-family: var(--font-accent);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    cursor: pointer;
    border: 2px solid transparent;
    min-height: 44px;
    font-size: 1.6rem;
    line-height: 1.2;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
    background: linear-gradient(135deg, var(--color-accent) 0%, #fbbf24 100%);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #d97706 0%, #fbbf24 100%);
    border-color: transparent;
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.45);
}

.btn-secondary {
    background: transparent;
    color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.btn-secondary:hover {
    background: var(--color-secondary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

/* Base Card Component */
.card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    transition: all var(--transition-speed) ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.card-hover:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
    background: rgba(30, 41, 59, 0.9);
}

.card-featured {
    border-color: #f59e0b;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
}

/* Section Components */
.section {
    padding: var(--spacing-xxl) 0;
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 2px;
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--spacing-lg);
}

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

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

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Animation Utilities */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.slide-up {
    animation: slideUp 1s ease-out;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(245, 158, 11, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}

/* Scrolling Animation is defined in style.css (canonical location) */

.scroll-container {
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
}

.scroll-container::before,
.scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.scroll-container::before {
    left: 0;
    background: linear-gradient(to right, var(--color-background), transparent);
}

.scroll-container::after {
    right: 0;
    background: linear-gradient(to left, var(--color-background), transparent);
}

.scroll-content {
    display: flex;
    gap: 3rem;
    animation: scrollRTL 30s linear infinite;
    width: max-content;
}

.scroll-content:hover {
    animation-play-state: paused;
}

/* Responsive Utilities */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
        padding: var(--spacing-md) var(--spacing-lg);
    }

    .container {
        padding: 0 1rem;
    }
}

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


/* --- home-page-sections.css --- */
/* ============================================
   HOME PAGE SECTIONS - FEATURES & LEAGUES
   ============================================ */

/* ============================================
   FEATURES STRIP STYLING
   ============================================ */

.features-strip {
    position: relative;
    z-index: 10;
    margin-top: -4rem;
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.features-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    background: rgba(30, 30, 40, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.feature-strip-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-strip-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.feature-icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    border-radius: 12px;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.2rem 0;
}

.feature-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.3;
}

/* ============================================
   FOOTBALL LEAGUES SCROLLING ANIMATION
   ============================================ */

.football-leagues-section {
    padding: 4rem 0;
    background: var(--color-darker-bg);
    overflow: hidden;
}

.football-leagues-section .section-subtitle {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 4rem;
    font-size: 2rem;
}

/* Scrolling Wrapper */
.leagues-scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 2rem 0;
    position: relative;
    margin-top: 2rem;
    width: 100%;
}

.leagues-scroll-wrapper::before,
.leagues-scroll-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.leagues-scroll-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--color-darker-bg), transparent);
}

.leagues-scroll-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--color-darker-bg), transparent);
}

/* Scrolling Container */
.leagues-scroll {
    display: flex !important;
    gap: 3rem;
    animation: scrollRTL var(--carousel-duration) linear infinite !important;
    width: max-content;
}

.leagues-scroll:hover {
    animation-play-state: paused;
}

/* League Card Styling */
.football-leagues-section .league-logo-card {
    flex-shrink: 0;
    width: 260px;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.football-leagues-section .league-logo-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--color-accent);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(40, 167, 69, 0.3);
}

.football-leagues-section .league-logo-card.featured {
    border-color: #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.05) 100%);
}

/* League Image */
.football-leagues-section .league-logo-img {
    width: 140px;
    height: 140px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.football-leagues-section .league-logo-card:hover .league-logo-img {
    transform: rotateY(360deg) scale(1.1);
}

.football-leagues-section .league-logo-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 1rem;
}

/* Text Styling */
.league-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.league-location {
    font-size: 1.5rem;
    color: var(--color-text-light);
    opacity: 0.8;
    margin: 0;
}

/* Placeholders */
.placeholder-badge {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: #fff;
}

.bundesliga-placeholder {
    background: linear-gradient(135deg, #d20515, #a00000);
}

.ligue1-placeholder {
    background: linear-gradient(135deg, #dae025, #b8c61e);
}

.ligue1-placeholder .placeholder-badge {
    color: #000;
}

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

@media (max-width: 1024px) {
    .features-strip-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .features-strip {
        margin-top: 1rem;
        padding: 0 0.5rem;
    }

    .features-strip-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        padding: 1rem;
    }

    .feature-strip-item {
        padding: 0.8rem 0.5rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .feature-icon-wrapper {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin: 0 auto;
    }

    .feature-content h3 {
        font-size: 0.9rem;
        margin-bottom: 0.1rem;
    }

    .feature-content p {
        font-size: 0.75rem;
    }

    /* Leagues */
    .leagues-scroll {
        gap: 2rem;
        animation-duration: var(--carousel-duration) !important;
    }

    .football-leagues-section .league-logo-card {
        width: 200px;
        padding: 2rem 1rem;
    }
}

@media (max-width: 600px) {
    .features-strip {
        margin-top: 1rem;
        padding: 0 0.5rem;
    }

    .features-strip-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding: 1rem;
    }
}


/* --- home-page-styles.css --- */
/* Homepage Specific Styles extracted from front-page.php */

/* Movies & Channels Sections */
.global-movies-section,
.global-channels-section,
.football-leagues-section,
.tv-channels-section {
    padding: 4rem 0;
    overflow: hidden;
    background: transparent;
}

.movies-carousel,
.channels-carousel,
.leagues-scroll-wrapper,
.channels-scroll-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    margin-top: 2rem;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.movies-carousel::before,
.movies-carousel::after,
.channels-carousel::before,
.channels-carousel::after,
.leagues-scroll-wrapper::before,
.leagues-scroll-wrapper::after,
.channels-scroll-wrapper::before,
.channels-scroll-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.movies-carousel::before,
.channels-carousel::before,
.leagues-scroll-wrapper::before,
.channels-scroll-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--color-background), transparent);
}

.movies-carousel::after,
.channels-carousel::after,
.leagues-scroll-wrapper::after,
.channels-scroll-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--color-background), transparent);
}

.movies-grid,
.channels-grid,
.leagues-scroll,
.channels-scroll {
    display: flex;
    gap: 2rem;
    width: max-content;
}

.movies-grid {
    animation: scrollRTL var(--carousel-duration) linear infinite;
}

.movies-grid:hover,
.channels-grid:hover,
.leagues-scroll:hover,
.channels-scroll:hover {
    animation-play-state: paused;
}

/* Channel Logos */
.channel-logo-item {
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    scroll-snap-align: center;
}

.league-logo-card {
    background: rgba(30, 30, 40, 0.5);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    scroll-snap-align: center;
}

.league-logo-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    background: rgba(40, 40, 50, 0.8);
}

.league-logo-img {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.league-logo-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.league-title {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: white;
}

.league-location {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

/* Placeholder Badge */
.placeholder-badge {
    width: 60px;
    height: 60px;
    background: var(--color-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto;
}

/* Animation Keyframes are defined in style.css (canonical location) */

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--color-background), var(--color-darker-bg));
}

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

.step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    backdrop-filter: blur(10px);
}

.step-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

.step-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: var(--font-size-xxl);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
}

.step-title {
    font-size: var(--font-size-md);
    margin-bottom: 1rem;
    color: white;
}

.step-description {
    color: var(--color-text-light);
    font-size: var(--font-size-sm);
    line-height: 1.7;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 5rem 0;
    background: var(--color-background);
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-question {
    padding: 1.5rem;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.faq-question .icon {
    color: var(--color-accent);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--color-text-light);
    font-size: var(--font-size-sm);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
    /* Arbitrary large height */
}

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

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(to top, var(--color-background), var(--color-darker-bg));
}

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

.testimonial-card {
    background: rgba(30, 30, 40, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.testimonial-content {
    color: var(--color-text-light);
    font-style: italic;
    margin-bottom: 2rem;
    flex-grow: 1;
    font-size: var(--font-size-sm);
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-accent);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-title {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Movies & Channels specific items */
.movie-item {
    scroll-snap-align: center;
    min-width: 200px;
    max-width: 200px;
}

.movie-item img {
    width: 200px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}


/* --- installation-guide.css --- */
/* ============================================
   INSTALLATION GUIDE STYLING
   ============================================ */

.installation-guide-header {
    background: linear-gradient(135deg, var(--color-darker-bg) 0%, var(--color-dark-bg) 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-subtitle {
    font-size: 1.8rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.guide-container {
    padding: 4rem 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Device Tabs */
.device-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-light);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.6rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.tab-btn i {
    font-size: 2rem;
}

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

.tab-btn.active {
    background: var(--color-accent);
    color: white;
    border-color: var(--color-accent);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.35);
}

/* Guide Content */
.guide-content {
    background: rgba(30, 30, 40, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    min-height: 400px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

/* TV Grid Layout */
.tv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.tv-column {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.tv-column:hover {
    transform: translateY(-5px);
    border-color: var(--color-secondary);
}

.tv-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tv-header i {
    font-size: 3rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.tv-header h2 {
    font-size: 2.2rem;
    margin: 0 0 0.5rem 0;
    border: none;
    padding: 0;
}

.tv-brands {
    display: block;
    color: var(--color-text-light);
    font-size: 1.4rem;
}

.tv-desc {
    font-size: 1.6rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.step-text h3 {
    font-size: 1.8rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.step-text p {
    font-size: 1.6rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-text strong {
    color: var(--color-accent);
}

.step-image {
    margin-top: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
}

.step-image img {
    width: 100%;
    height: auto;
    display: block;
}

.step-text ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
    color: var(--color-text-light);
}

.step-text li {
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }

    .page-subtitle {
        font-size: 1.6rem;
    }

    .tab-btn {
        padding: 1rem 1.5rem;
        font-size: 1.4rem;
    }

    .tab-btn i {
        font-size: 1.6rem;
    }

    .guide-content {
        padding: 2rem 1.5rem;
    }

    .tab-content h2 {
        font-size: 2.2rem;
    }

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

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

    .tv-brands {
        font-size: 1.3rem;
    }

    .tv-desc {
        font-size: 1.5rem;
    }

    .step-text h3 {
        font-size: 1.7rem;
    }

    .step-text p {
        font-size: 1.5rem;
    }

    .step-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1.4rem;
    }
}


/* --- welcome-page-fullwidth.css --- */
/* Welcome Page Full Width Override */

/* إلغاء جميع قيود العرض */
body.page-template-page-welcome,
body.page-template-page-welcome #page,
body.page-template-page-welcome #primary,
body.page-template-page-welcome .site-main,
body.page-template-page-welcome article,
body.page-template-page-welcome .welcome-page,
body.page-template-page-welcome .welcome-content,
body.page-template-page-welcome .container,
body.page-template-page-welcome .row,
.welcome-page,
.welcome-page .welcome-content,
.welcome-page .container,
.welcome-page .row,
.welcome-main {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
}

/* إضافة padding للمحتوى */
/* إضافة padding للمحتوى */
body.page-template-page-welcome .benefits-grid,
body.page-template-page-welcome .testimonials-section,
body.page-template-page-welcome .faq-section,
body.page-template-page-welcome .compatible-devices,
body.page-template-page-welcome .sports-leagues,
body.page-template-page-welcome .welcome-cta,
body.page-template-page-welcome .cta-section,
body.page-template-page-welcome .power-block-section,
body.page-template-page-welcome .section-title,
.welcome-page .benefits-grid,
.welcome-page .testimonials-section,
.welcome-page .faq-section,
.welcome-page .compatible-devices,
.welcome-page .sports-leagues,
.welcome-page .welcome-cta,
.welcome-page .cta-section,
.welcome-page .power-block-section,
.welcome-page .section-title {
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

/* Stats Section بعرض كامل */
/* Stats Section بعرض كامل */
body.page-template-page-welcome .stats-section,
.welcome-page .stats-section {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 4rem 2rem;
    box-sizing: border-box;
}

body.page-template-page-welcome .stats-grid,
.welcome-page .stats-grid {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0 2rem;
    box-sizing: border-box;
}

/* Hero Section */
/* Hero Section */
body.page-template-page-welcome .welcome-hero-section,
.welcome-page .welcome-hero-section {
    width: 100%;
    max-width: 100%;
    padding: 6rem 2rem 4rem;
    margin: 0;
    box-sizing: border-box;
}

/* Benefit Cards */
/* Benefit Cards */
body.page-template-page-welcome .benefit-card,
body.page-template-page-welcome .testimonial-card,
body.page-template-page-welcome .faq-item,
.welcome-page .benefit-card,
.welcome-page .testimonial-card,
.welcome-page .faq-item {
    box-sizing: border-box;
}

/* Benefits Grid - 3 columns */
/* Benefits Grid - 3 columns */
body.page-template-page-welcome .benefits-grid,
.welcome-page .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Responsive */
@media (max-width: 1200px) {
    body.page-template-page-welcome .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body.page-template-page-welcome .benefits-grid {
        grid-template-columns: 1fr;
    }

    body.page-template-page-welcome .benefits-grid,
    body.page-template-page-welcome .testimonials-section,
    body.page-template-page-welcome .faq-section,
    body.page-template-page-welcome .compatible-devices,
    body.page-template-page-welcome .sports-leagues,
    body.page-template-page-welcome .welcome-cta,
    body.page-template-page-welcome .cta-section,
    body.page-template-page-welcome .power-block-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    body.page-template-page-welcome .stats-section {
        padding: 3rem 1rem;
    }

    body.page-template-page-welcome .stats-grid {
        padding: 0 1rem;
    }

    body.page-template-page-welcome .welcome-hero-section {
        padding: 4rem 1rem 3rem;
    }
}


/* --- welcome-page-styles.css --- */
/* Welcome Page Styles - Consolidated */
.welcome-page {
    background-color: var(--color-background);
    color: var(--color-text);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.welcome-content {
    width: 100%;
    max-width: 100%;
}

/* Hero Section */
.welcome-hero-section {
    text-align: center;
    padding: 6rem 2rem 4rem;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.8) 0%, var(--color-background) 100%);
    width: 100%;
}

.welcome-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.welcome-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
    max-width: 100%;
    padding: 0 2rem;
}

.benefit-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(30, 41, 59, 0.8);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.benefit-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #f8fafc;
    font-weight: 700;
}

.benefit-desc {
    font-size: 1.05rem;
    color: #cbd5e1;
    line-height: 1.7;
}

/* CTA Section */
.welcome-cta {
    text-align: center;
    margin: 4rem 0;
    padding: 0 2rem;
}

.welcome-button {
    font-size: 1.2rem;
    padding: 1rem 3rem;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #fbbf24 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 30px -10px rgba(14, 165, 233, 0.5);
    transition: all 0.3s ease;
}

.welcome-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(14, 165, 233, 0.6);
}

.trial-info {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(90deg, rgba(30, 41, 59, 0.3) 0%, rgba(30, 41, 59, 0.5) 50%, rgba(30, 41, 59, 0.3) 100%);
    backdrop-filter: blur(5px);
    padding: 4rem 2rem;
    margin: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.15rem;
    color: #cbd5e1;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Compatible Devices */
.compatible-devices {
    text-align: center;
    margin: 5rem 0;
    padding: 0 2rem;
}

.compatible-devices h3 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.devices-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.device-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.device-icon {
    font-size: 5rem;
    background: rgba(30, 41, 59, 0.6);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.device-item:hover .device-icon {
    background: linear-gradient(135deg, var(--color-accent) 0%, #fbbf24 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(14, 165, 233, 0.3);
}

.device-label {
    font-size: 1.1rem;
    color: var(--color-text-light);
    font-weight: 500;
}

/* Sports Leagues */
.sports-leagues {
    margin: 5rem 0;
    text-align: center;
    padding: 0 2rem;
}

.sports-leagues h3 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.leagues-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.league-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.league-item:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-3px);
}

/* Testimonials */
.testimonials-section {
    margin: 5rem 0;
    padding: 0 2rem;
}

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

.testimonial-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.05);
    font-family: serif;
}

.stars {
    color: #ffd700;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.customer-name {
    margin-top: 1.5rem;
    font-weight: 600;
    color: #e2e8f0;
}

.customer-role {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.trust-badge {
    background: rgba(16, 185, 129, 0.1);
    color: #2ecc71;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Guarantee */
.guarantee {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(30, 41, 59, 0.3) 100%);
    backdrop-filter: blur(5px);
    padding: 2.5rem;
    border-radius: 12px;
    max-width: 600px;
    margin: 3rem auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
}

.guarantee-title {
    color: var(--color-accent);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.guarantee-text {
    color: #cbd5e1;
    line-height: 1.6;
}

/* FAQ */
.faq-section {
    margin: 5rem 0;
    padding: 0 2rem;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 100%;
}

.faq-item {
    background: rgba(30, 30, 40, 0.4);
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(30, 30, 40, 0.6);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding-bottom: 0;
    color: var(--color-accent);
    font-weight: 600;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.faq-question i {
    transition: transform 0.3s ease;
    font-size: 0.9em;
    color: var(--color-accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease;
    margin-top: 0;
    opacity: 0.8;
    color: #cbd5e1;
    font-size: 1.05rem;
}

.faq-item.active .faq-question {
    color: var(--color-accent);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    margin-top: 1rem;
    line-height: 1.6;
}

/* Movies & Channels Sections */
.global-movies-section,
.global-channels-section {
    padding: 4rem 0;
    overflow: hidden;
    background: transparent;
}

.movies-carousel,
.channels-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.movies-carousel::before,
.movies-carousel::after,
.channels-carousel::before,
.channels-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.movies-carousel::before,
.channels-carousel::before {
    left: 0;
    background: linear-gradient(to right, var(--color-background), transparent);
}

.movies-carousel::after,
.channels-carousel::after {
    right: 0;
    background: linear-gradient(to left, var(--color-background), transparent);
}

.movie-item {
    min-width: 200px;
    max-width: 200px;
    width: 200px;
    height: 300px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 10px;
    background: #000;
}

.movie-item img {
    width: 100% !important;
    height: 100% !important;
    min-height: 300px !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.movie-title {
    font-size: 1.1rem;
    margin-top: 0.8rem;
    text-align: center;
    color: var(--color-text);
    font-weight: 600;
}

.channel-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 50px;
    white-space: nowrap;
    font-weight: 600;
    color: var(--color-text);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Pulse Animation for CTA */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.pulse-button {
    animation: pulse-glow 2s infinite;
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid,
    .testimonials-section,
    .faq-section,
    .compatible-devices,
    .sports-leagues,
    .welcome-cta {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .welcome-hero-section {
        padding: 4rem 1rem 3rem;
    }

    .benefit-icon {
        font-size: 2.5rem;
    }

    .compatible-devices h3,
    .sports-leagues h3 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .device-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }

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

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

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }

    .benefits-grid,
    .testimonials-section,
    .faq-section,
    .compatible-devices,
    .sports-leagues,
    .welcome-cta {
        padding: 0 1rem;
    }

    .stats-section {
        padding: 3rem 1rem;
    }
}

@media (max-width: 480px) {

    .compatible-devices h3,
    .sports-leagues h3 {
        font-size: 1.5rem;
    }

    .device-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

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

    .devices-grid,
    .leagues-grid {
        gap: 1.5rem;
    }

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


/* --- welcome-v2.css --- */
/* Welcome V2 - Full Width Page */

/* Fluid Typography & Spacing */
:root {
    --fluid-min-width: 320;
    --fluid-max-width: 1920;
    --fluid-screen: 100vw;
    --fluid-bp: calc((var(--fluid-screen) - var(--fluid-min-width) / 16 * 1rem) / (var(--fluid-max-width) - var(--fluid-min-width)));
}

/* Fluid font sizes */
body.page-template-page-welcome-v2 {
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
}

body.page-template-page-welcome-v2 .welcome-headline {
    font-size: clamp(2.5rem, 2rem + 2.5vw, 5rem);
    line-height: 1.2;
}

body.page-template-page-welcome-v2 .welcome-subtitle {
    font-size: clamp(1.125rem, 1rem + 0.625vw, 1.5rem);
}

body.page-template-page-welcome-v2 .section-title {
    font-size: clamp(2rem, 1.5rem + 2vw, 3.5rem);
}

body.page-template-page-welcome-v2 .benefit-title,
body.page-template-page-welcome-v2 h3 {
    font-size: clamp(1.25rem, 1.125rem + 0.625vw, 1.75rem);
}

body.page-template-page-welcome-v2 .benefit-desc,
body.page-template-page-welcome-v2 p {
    font-size: clamp(1.1rem, 1.0rem + 0.45vw, 1.7rem);
    line-height: 1.6;
}

body.page-template-page-welcome-v2 .benefit-icon {
    font-size: clamp(2.5rem, 2rem + 2vw, 4rem);
}

body.page-template-page-welcome-v2 .stat-number {
    font-size: clamp(2rem, 1.5rem + 2.5vw, 4rem);
}

body.page-template-page-welcome-v2 .device-icon {
    font-size: clamp(3rem, 2.5rem + 2vw, 5rem);
}

/* Fluid spacing */
body.page-template-page-welcome-v2 section {
    padding: clamp(2rem, 1.5rem + 2.5vw, 5rem) 0;
}

body.page-template-page-welcome-v2 .welcome-v2-container {
    padding: 0 clamp(1rem, 0.5rem + 2.5vw, 3rem);
}

body.page-template-page-welcome-v2 .benefits-grid,
body.page-template-page-welcome-v2 .testimonials-grid,
body.page-template-page-welcome-v2 .stats-grid {
    gap: clamp(1rem, 0.5rem + 2vw, 2.5rem);
}

body.page-template-page-welcome-v2 .benefit-card,
body.page-template-page-welcome-v2 .testimonial-card {
    padding: clamp(1.5rem, 1rem + 2vw, 3rem);
}

/* Fluid images */
body.page-template-page-welcome-v2 .movie-item img {
    width: 100%;
    height: auto;
    max-width: clamp(150px, 10vw + 100px, 300px);
}

/* Reset all containers */
body.page-template-page-welcome-v2 #page,
body.page-template-page-welcome-v2 .site-main,
body.page-template-page-welcome-v2 article {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Custom container */
.welcome-v2-container {
    max-width: clamp(1200px, 90vw, 1600px);
    margin: 0 auto;
    padding: 0 clamp(1rem, 2vw, 3rem);
}

/* Hero */
.welcome-v2-hero {
    padding: clamp(3rem, 5vw, 6rem) 0 clamp(2rem, 3vw, 4rem);
    text-align: center;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.8) 0%, var(--color-background) 100%);
}

/* Benefits */
.welcome-v2-benefits {
    padding: clamp(2rem, 4vw, 5rem) 0;
}

.welcome-v2-benefits .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: clamp(1rem, 2vw, 2.5rem);
}

/* CTA */
.welcome-v2-cta {
    padding: 3rem 0;
    text-align: center;
}

/* Stats */
.welcome-v2-stats {
    padding: clamp(2rem, 4vw, 5rem) 0;
}

.welcome-v2-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: clamp(1rem, 2vw, 2.5rem);
    text-align: center;
}

/* Devices & Sports */
.welcome-v2-devices,
.welcome-v2-sports {
    padding: 4rem 0;
    text-align: center;
}

.welcome-v2-devices .devices-grid,
.welcome-v2-sports .leagues-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

/* Testimonials */
.welcome-v2-testimonials {
    padding: clamp(2rem, 4vw, 5rem) 0;
}

.welcome-v2-testimonials .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: clamp(1rem, 2vw, 2.5rem);
    margin-top: clamp(1.5rem, 2vw, 3rem);
}

/* Final CTA */
.welcome-v2-final-cta {
    padding: 4rem 0;
    text-align: center;
}

.welcome-v2-final-cta .trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

/* FAQ */
.welcome-v2-faq {
    padding: clamp(2rem, 4vw, 5rem) 0;
}

.welcome-v2-faq .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
    gap: clamp(1rem, 2vw, 2.5rem);
    margin-top: clamp(1.5rem, 2vw, 3rem);
}

/* How It Works Section */
.how-it-works-section {
    background: var(--color-darker-bg);
    padding: 5rem 0;
}

.how-it-works-section .section-title {
    text-align: center;
    color: var(--color-white);
    margin-bottom: 4rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.step-item {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.step-item:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.step-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.step-description {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1200px) {
    .welcome-v2-benefits .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Footer Override - Consistent Font Size */
body.page-template-page-welcome-v2 .footer-widget p,
body.page-template-page-welcome-v2 .footer-widget ul li a {
    font-size: 1.6rem !important;
}

@media (max-width: 768px) {
    .welcome-v2-container {
        padding: 0 1rem;
    }

    .welcome-v2-benefits .benefits-grid,
    .welcome-v2-testimonials .testimonials-grid,
    .welcome-v2-faq .faq-grid {
        grid-template-columns: 1fr;
    }

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

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

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .step-title {
        font-size: 1.8rem;
    }

    .step-description {
        font-size: 1.4rem;
    }
}



.seo-text-content h3 { font-size: 1.75rem !important; margin-bottom: 1.25rem !important; font-weight: 700 !important; }
.seo-text-content p { font-size: 1.15rem !important; line-height: 1.8 !important; color: #d1d5db !important; }

.faq-question { font-size: 1.75rem !important; }
.faq-question-text { font-size: 1.75rem !important; }

header.site-header { padding: 5px 0 !important; min-height: 60px !important; }
header.site-header .container { padding: 5px 0 !important; }

.movies-grid:hover { animation-play-state: running !important; }
.marquee-container:hover .marquee-track { animation-play-state: running !important; }

/* Step Cards Layout */
.devices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}
@media (max-width: 768px) {
    .devices-grid {
        grid-template-columns: 1fr;
    }
}
.device-column {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
}
.device-column-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
}
.device-column-icon {
    font-size: 2rem;
    color: #10b981;
    margin-bottom: 15px;
}
.device-column-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
}
.device-column-subtitle {
    font-size: 0.9rem;
    color: #9ca3af;
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 25px;
    position: relative;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}
.step-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.05);
}
.step-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 50px;
    height: 50px;
    background: #8b5cf6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}
.step-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    padding-right: 30px; /* space for badge */
}
.step-card-text {
    font-size: 1.6rem;
    color: #d1d5db;
    line-height: 1.6;
}
.step-card-text strong {
    color: #f9a826;
}
.step-btn-link {
    display: inline-block;
    color: #10b981;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
}
.step-btn-link:hover {
    color: #059669;
}
.step-img-box {
    margin-top: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}
.step-box-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 1.5rem;
}

.step-card { height: auto !important; text-align: left !important; }
.device-column-header { text-align: center !important; }

/* Checkout Page Layout */
.checkout-page {
    padding: 140px 20px 80px 20px;
    background-color: #111827; /* Dark bg */
    min-height: 100vh;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.checkout-header {
    text-align: center;
    margin-bottom: 50px;
}

.checkout-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.checkout-header p {
    font-size: 1.8rem;
    color: #d1d5db;
}

.checkout-container {
    width: 100%;
    box-sizing: border-box;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Left Column - Form */
.checkout-left {
    flex: 1;
    min-width: 0;
}

.checkout-section {
    margin-bottom: 40px;
}

.checkout-section h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 25px;
}

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

.form-group label {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.form-control {
    width: 100%;
    padding: 15px;
    background-color: #1f2937;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 1.6rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-control:focus {
    border-color: #10b981;
}

/* Payment Method Box */
.payment-method-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    background-color: rgba(16, 185, 129, 0.05);
    border: 1px solid #10b981;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 20px;
    min-width: 200px;
}

.payment-method-icon {
    width: 40px;
    height: 40px;
    background-color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: #fff;
    font-size: 1.8rem;
}

.payment-method-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}

/* Warning Box */
.warning-box {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    max-width: 400px;
}

.warning-box-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f59e0b;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.6rem;
}

.warning-box p {
    color: #d1d5db;
    font-size: 2.0rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.warning-box strong {
    color: #f59e0b;
}

/* Buttons */
.btn-crypto {
    width: 100%;
    padding: 18px;
    background-color: #f59e0b;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.6rem;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.2s ease;
}

.btn-crypto:hover {
    background-color: #d97706;
}

.checkout-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.checkout-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: rgba(255,255,255,0.1);
    z-index: 1;
}

.checkout-divider span {
    background-color: #111827;
    padding: 0 15px;
    color: #9ca3af;
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.btn-whatsapp-full {
    width: 100%;
    padding: 18px;
    background-color: #10b981;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.6rem;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.btn-whatsapp-full:hover {
    background-color: #059669;
}

/* Right Column - Order Summary */
.checkout-right {
    width: 380px;
    flex-shrink: 0;
}

.order-summary-box {
    background-color: #1f2937;
    border-radius: 12px;
    padding: 30px;
    position: sticky;
    top: 100px;
}

.order-summary-box h2 {
    font-size: 2.0rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #fff;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
}

.summary-item-label {
    font-size: 1.6rem;
    color: #d1d5db;
    font-weight: 600;
}

.summary-plan-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
}

.summary-price {
    font-size: 2rem;
    font-weight: 800;
    color: #f59e0b;
}

.summary-divider {
    height: 1px;
    background-color: rgba(255,255,255,0.1);
    margin: 25px 0;
}

.summary-features {
    margin-bottom: 25px;
}

.summary-features h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.summary-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.summary-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d1d5db;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.summary-features li i {
    color: #10b981;
}

.summary-total {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    font-size: 2.0rem;
    font-weight: 800;
}

.summary-total .total-price {
    color: #10b981;
}

/* Responsive */
@media (max-width: 992px) {
    .checkout-container {
    width: 100%;
    box-sizing: border-box;
        flex-direction: column;
    }
    
    .checkout-right {
        width: 100%;
    }
}

/* Renew Page Layout */
.renew-page {
    padding: 80px 20px;
    background-color: #111827; /* Dark bg */
    min-height: calc(100vh - 100px);
    color: #fff;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.renew-header {
    text-align: center;
    margin-bottom: 40px;
}

.renew-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.renew-header p {
    font-size: 1.6rem;
    color: #9ca3af;
}

.renew-container {
    background-color: #1f2937;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 40px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.renew-form-group {
    margin-bottom: 25px;
}

.renew-form-group label {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.renew-input-wrapper {
    position: relative;
}

.renew-form-control {
    width: 100%;
    padding: 16px;
    background-color: #111827;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 1.6rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.renew-form-control:focus {
    border-color: #f9a826;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    cursor: pointer;
    font-size: 1.6rem;
    transition: color 0.2s ease;
}

.password-toggle:hover {
    color: #fff;
}

select.renew-form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
    cursor: pointer;
}

.renew-payment-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
}

.renew-payment-radio {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #9ca3af;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    position: relative;
    background-color: #111827;
}

.renew-payment-radio:checked {
    border-color: #d1d5db;
}

.renew-payment-radio:checked::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: #d1d5db;
    border-radius: 50%;
}

.renew-payment-label {
    font-size: 1.8rem;
    color: #fff;
    cursor: pointer;
}

.btn-renew-submit {
    width: 100%;
    padding: 18px;
    background-color: #f9a826;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.8rem;
    font-weight: 800;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.2s ease;
}

.btn-renew-submit:hover {
    background-color: #e59416;
}

/* Contact Page Layout */
.contact-page {
    padding: 80px 20px;
    background-color: #111827; /* Dark bg */
    min-height: calc(100vh - 100px);
    color: #fff;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.contact-header p {
    font-size: 1.8rem;
    color: #f3f4f6;
}

.contact-container {
    background-color: #1f2937;
    border-radius: 12px;
    padding: 40px 30px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.contact-container h2 {
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
}

.contact-card {
    background-color: #111827;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    font-size: 1.8rem;
    color: #10b981; /* Green icon color */
    margin-top: 5px;
}

.contact-page .contact-info {
    flex: 1;
}

.contact-page .contact-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.contact-page .contact-info p {
    font-size: 1.6rem;
    color: #e5e7eb;
    margin-bottom: 15px;
}

.contact-page .contact-info p:last-child {
    margin-bottom: 0;
}

.btn-contact-email {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f59e0b;
    color: #fff;
    border-radius: 6px;
    font-weight: 800;
    font-size: 2.0rem;
    text-transform: uppercase;
    transition: background-color 0.2s;
}

.btn-contact-email:hover {
    background-color: #d97706;
}

.btn-contact-whatsapp {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    color: #10b981;
    border: 1px solid #10b981;
    border-radius: 6px;
    font-weight: 800;
    font-size: 2.0rem;
    text-transform: uppercase;
    transition: all 0.2s;
}

.btn-contact-whatsapp:hover {
    background-color: rgba(16, 185, 129, 0.1);
}

/* Privacy Policy Page Layout */
.privacy-page {
    padding: 80px 20px;
    background-color: #111827; /* Dark bg */
    min-height: calc(100vh - 100px);
    color: #fff;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.privacy-header {
    text-align: center;
    margin-bottom: 40px;
}

.privacy-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.privacy-header p {
    font-size: 1.8rem;
    color: #f59e0b;
}

.privacy-container {
    background-color: #1f2937;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 40px 50px;
    width: 100%;
    max-width: 900px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.privacy-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f59e0b; /* Orange headings */
    margin-top: 40px;
    margin-bottom: 20px;
}

.privacy-content h2:first-child {
    margin-top: 0;
}

.privacy-content p {
    font-size: 1.6rem;
    color: #e5e7eb;
    line-height: 1.7;
    margin-bottom: 20px;
}

.privacy-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.privacy-content li {
    font-size: 1.6rem;
    color: #e5e7eb;
    line-height: 1.7;
    margin-bottom: 10px;
}

.privacy-content li strong {
    color: #fff;
    font-weight: 800;
}

/* About Us Page Layout */
.about-page {
    padding: 80px 20px;
    background-color: #111827; /* Dark bg */
    min-height: calc(100vh - 100px);
    color: #fff;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
}

.about-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.about-header h1 span {
    color: #f59e0b;
}

.about-header p {
    font-size: 1.8rem;
    color: #d1d5db;
}

/* Mission & Vision Grid */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1000px;
    margin-bottom: 60px;
}

.mv-card {
    background-color: #1f2937;
    border-radius: 12px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.mv-card h2 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 2.2rem;
    font-weight: 800;
    color: #f59e0b; /* Orange */
    margin-bottom: 20px;
}

.mv-card p {
    font-size: 1.6rem;
    line-height: 1.6;
    color: #e5e7eb;
}

/* Why Choose Us Grid */
.about-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}

.why-choose-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1000px;
    margin-bottom: 60px;
}

.wcu-card {
    background-color: #1f2937;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.wcu-icon {
    font-size: 2.5rem;
    color: #10b981; /* Green */
    margin-bottom: 20px;
}

.wcu-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
}

.wcu-card p {
    font-size: 1.6rem;
    color: #d1d5db;
    line-height: 1.5;
}

/* CTA Banner */
.cta-banner {
    background-color: #f59e0b;
    border-radius: 12px;
    padding: 50px;
    text-align: center;
    width: 100%;
    max-width: 1000px;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.cta-banner h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.cta-banner p {
    font-size: 1.8rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.btn-cta-white {
    display: inline-block;
    padding: 18px 40px;
    background-color: #fff;
    color: #f59e0b;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.6rem;
    text-transform: uppercase;
    text-decoration: none;
    width: 100%;
    max-width: 400px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-cta-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* 404 Not Found Page Layout */
.not-found-page {
    padding: 120px 20px;
    background-color: #111827; /* Dark bg */
    min-height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.not-found-error {
    font-size: 8rem;
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px #f59e0b;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(245, 158, 11, 0.3);
}

.not-found-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.not-found-desc {
    font-size: 1.6rem;
    color: #d1d5db;
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-return-home {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background-color: #10b981;
    color: #fff;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.4rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.2);
}

.btn-return-home:hover {
    background-color: #059669;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

/* Blog Page Layout */
.blog-page {
    padding: 80px 20px 120px 20px;
    background-color: #111827; /* Dark bg */
    min-height: calc(100vh - 100px);
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.blog-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blog-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.blog-title span {
    color: #f59e0b;
}

.blog-subtitle {
    font-size: 1.6rem;
    color: #d1d5db;
    line-height: 1.6;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.blog-card {
    background-color: #1f2937;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(245, 158, 11, 0.3);
}

.blog-img-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background-color: #374151; /* placeholder color */
}

.blog-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-container img {
    transform: scale(1.05);
}

.blog-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #f59e0b;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 2;
}

.blog-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    font-size: 1.3rem;
    color: #9ca3af;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-meta i {
    color: #10b981;
}

.blog-card-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
    color: #f59e0b;
}

.blog-card-excerpt {
    font-size: 1.5rem;
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #10b981;
    font-weight: 800;
    font-size: 1.4rem;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-read-more {
    gap: 12px;
}

/* Single Article Page Layout */
.article-page {
    padding: 80px 20px 120px 20px;
    background-color: #111827; /* Dark bg */
    min-height: calc(100vh - 100px);
    color: #e5e7eb;
    font-family: 'Inter', sans-serif;
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
}

.article-header {
    text-align: center;
    margin-bottom: 50px;
}

.article-badge {
    display: inline-block;
    background-color: #f59e0b;
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.article-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 25px;
}

.article-meta {
    font-size: 1.3rem;
    color: #9ca3af;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-hero-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.article-content {
    font-size: 1.6rem;
    line-height: 1.8;
}

.article-content p {
    font-size: 1.25rem;
    margin-bottom: 25px;
}

.article-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #f59e0b;
    margin-top: 50px;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255,255,255,0.05);
    padding-bottom: 15px;
}

.article-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #f59e0b;
    margin-top: 40px;
    margin-bottom: 15px;
}

.article-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 30px;
}

.article-content li {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.article-content strong {
    color: #fff;
    font-weight: 800;
}

.article-cta {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 25px 30px;
    margin: 40px 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.article-cta p {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
}

.article-cta-icon {
    font-size: 2.5rem;
    color: #10b981;
}

.article-cta a {
    color: #10b981;
    text-decoration: underline;
}

.article-cta-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #f59e0b;
    color: #fff;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    transition: background 0.3s;
    font-size: 1.4rem;
}

.article-cta-btn:hover {
    background-color: #d97706;
}

@media (max-width: 768px) {
    .article-title {
        font-size: 2.5rem;
    }
    .article-content {
        font-size: 1.4rem;
    }
    .article-content h2 {
        font-size: 2rem;
    }
    .article-cta {
        flex-direction: column;
        text-align: center;
    }
}


/* Restored League Logo Item Styles */
.league-logo-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 140px;
    transition: all 0.3s ease;
}
.league-logo-item:hover, .league-logo-item.highlighted {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-5px);
}
.league-logo-item .league-icon {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.league-logo-item .league-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 50%;
}
.league-logo-item .league-name {
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    text-align: center;
}
.league-logo-item .league-country {
    font-size: 0.8rem;
    color: #888;
    text-align: center;
    margin-top: -8px;
}
