/*
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: #222222;
    /* Main dark background for sections */
    --color-darker-bg: #0f172a;
    /* Slightly darker dark for cards on dark bg */
    --color-primary: #1e293b;
    /* Dark blue for header, footer, cards on light bg */
    --color-light-bg: #f5f5f5;
    /* Light background for sections */
    --color-white: #ffffff;
    /* White for text on dark backgrounds, card backgrounds on light */
    --color-secondary: #007bff;
    /* Blue for links/accents */
    --color-accent: #ef4444;
    /* Red for primary actions */

    --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);
    /* 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.6rem;
    line-height: 1.7;
    color: var(--color-text-light);
    /* Default body text color on dark background */
    background: #0f172a;
    /* 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: 5rem;
}

h2 {
    font-size: 3.8rem;
}

h3 {
    font-size: 2.5rem;
}

h4 {
    font-size: 2.4rem;
}

h5 {
    font-size: 2rem;
}

h6 {
    font-size: 1.8rem;
}

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 */
.site-header {
    background: rgba(15, 23, 42, 0.85) !important;
    /* Darker, more modern blue-gray */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.2rem 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: 90px;
    width: 90px;
    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);
}

.site-brand-text span:nth-child(1) {
    color: #38bdf8 !important;
    /* Sky blue */
}

.site-brand-text span:nth-child(2) {
    color: #fbbf24 !important;
    /* Amber */
}

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

.site-brand-text span:nth-child(4) {
    display: inline-block;
    /* Show tagline */
    font-size: 0.8rem;
    /* Smaller font size */
    opacity: 0.8;
    margin-left: 5px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

.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 1.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.5rem;
}

.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);
}

.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 red button */
    border: 2px solid var(--color-accent);
}

.button-primary:hover {
    background: darken(var(--color-accent), 10%);
    /* Darker red */
    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;
    /* Account for fixed header */
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('assets/images/aflam.jpg') no-repeat center center/cover;
    background:
        linear-gradient(to bottom, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.7) 50%, var(--color-dark-bg) 100%),
        url('assets/images/aflam.jpg') no-repeat center center/cover;
    z-index: 0;
}

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

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

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 3rem;
    opacity: 0.8;
    color: #fff !important;
    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: #1a1a1a;
    /* Darker background for distinction */
}

.global-movies-section .container {
    overflow: hidden;
    /* Hide scrollbar for cleaner look if not needed */
    padding: 0;
    /* Remove horizontal padding from container to allow full-width carousel */
}

.movies-carousel {
    overflow: 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 18s linear infinite;
}

.movie-item {
    flex: 0 0 auto;
    /* Prevent items from growing/shrinking and set base width */
    width: 250px;
    /* Adjust as needed */
    background: var(--color-darker-bg);
    /* Darker background for movie cards */
    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);
}

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

.movie-item img {
    width: 100%;
    height: 350px;
    /* Fixed height for movie posters */
    object-fit: cover;
    display: block;
}

.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: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 5rem auto 0;
    justify-content: center;
}

/* Remove desktop-specific grid positioning to allow responsive layout */
.pricing-grid .pricing-plan:nth-child(1),
.pricing-grid .pricing-plan:nth-child(2),
.pricing-grid .pricing-plan:nth-child(3),
.pricing-grid .pricing-plan:nth-child(4),
.pricing-grid .pricing-plan:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
}

.pricing-grid .pricing-plan:nth-child(4),
.pricing-grid .pricing-plan:nth-child(5) {
    grid-column: auto;
    justify-self: auto;
    width: auto;
    max-width: 380px;
}

/* Fix for 2-row layout centering */
.pricing-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    max-width: 1200px !important;
    /* Reduced from 1400px to force wrap */
    margin: 5rem auto 0 !important;
    gap: 2rem !important;
}

.pricing-plan {
    flex: 0 0 calc(33.333% - 2rem) !important;
    width: 100% !important;
    /* Ensure it takes space */
    max-width: 360px !important;
    /* Slightly reduced to ensure 3 fit comfortably */
    min-width: 300px !important;
    /* Prevent too much shrinking */
    margin: 0 !important;
}

/* Fix missing icons */
.plan-features li {
    position: relative;
    padding-left: 35px !important;
    /* Increased padding */
    list-style: none;
    text-align: left;
    margin-bottom: 0.8rem;
    display: flex !important;
    /* Ensure proper alignment */
    align-items: center !important;
}

.plan-features li::before {
    content: '\f00c';
    /* FontAwesome checkmark */
    font-family: "Font Awesome 6 Free" !important;
    /* Updated to FA 6 */
    font-weight: 900 !important;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    /* Vertically center */
    color: var(--color-secondary);
    font-size: 1.1rem !important;
    width: 25px !important;
    /* Fixed width for icon area */
    text-align: center;
}

/* Force FontAwesome 6 Families */
.fas,
.fa-solid {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
}

.fab,
.fa-brands {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400;
}

.far,
.fa-regular {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 400;
}

@media (max-width: 1200px) {
    .pricing-plan {
        flex: 0 0 calc(50% - 2rem);
    }
}

.pricing-plan {
    background: var(--color-darker-bg);
    /* Darker background for pricing plans */
    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;
    /* Maximum width for better proportions */
}

.pricing-plan.featured {
    border-color: var(--color-accent);
    /* transform: scale(1.05); Removed scaling */
    box-shadow: 0 15px 40px rgba(220, 53, 69, 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: #007bff;
    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,
.footer-widget ul li a {
    color: var(--color-text-light);
    /* Light text for footer content */
    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(220, 53, 69, 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 !important;
    }
}

/* 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;
    }
}

/* Dark Mode Toggle (if implemented later) */
.dark-mode-toggle {
    /* Add styles for a dark mode toggle button */
}

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

    to {
        opacity: 1;
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

/* 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;
    /* Ensure these specific elements are left-aligned 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 !important;
    /* Force center for the entire packages widget */
}

.rtl .footer-widget.our-packages h3 {
    text-align: center !important;
    /* Force center for heading */
}

.rtl .footer-widget.our-packages h3::after {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    /* Force center for underline */
}

.rtl .footer-widget.our-packages ul {
    list-style-position: inside !important;
    /* Helps center bullets with text-align */
    text-align: center !important;
    /* Force center for the list */
    padding-left: 0 !important;
    /* Remove any left padding that might push bullets */
    padding-right: 0 !important;
    /* Remove any right padding */
}

.rtl .footer-widget.our-packages ul li {
    text-align: center !important;
    /* Force center for list items */
    display: block !important;
    /* Ensure li behaves as block for text-align to work on its content */
    margin-left: auto !important;
    /* Attempt to center if li is inline-block */
    margin-right: auto !important;
}

/* --- Services Guide Page Styles --- */
.services-guide {
    padding: 40px 0;
    direction: ltr !important;
    /* Force Left-to-Right direction */
    text-align: left !important;
    /* Force Left Alignment for all content */
}

.guide-header {
    text-align: center !important;
    /* Ensure header content is centered */
    margin-bottom: 40px;
}

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

.guide-header h1 span,
.guide-header h1 a {
    background: none !important;
    /* Remove any background from nested elements */
    color: inherit !important;
    /* Ensure nested elements inherit the main title color */
}

.guide-header .lead {
    font-size: 1.2em;
    color: #666 !important;
    text-align: center !important;
    /* Ensure this lead text is centered */
}

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

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

.guide-section h2 {
    color: #fff !important;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #223355 !important;
    text-align: left !important;
}

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

.guide-content h3 {
    color: #007bff !important;
    margin: 25px 0 15px;
    font-size: 1.3em;
    text-align: left !important;
    background: none !important;
}

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

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

.step-item h3 {
    color: #007bff !important;
    margin-bottom: 10px;
    text-align: left !important;
    background: none !important;
}

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

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

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

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

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

.troubleshooting-item {
    margin-bottom: 25px;
    padding: 15px;
    background: #223355 !important;
    color: #f5f5f5 !important;
    border-radius: 5px;
    text-align: left !important;
}

.troubleshooting-item h4 {
    color: #dc3545 !important;
    margin-bottom: 10px;
    text-align: left !important;
}

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

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

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

.btn-primary {
    background: #dc3545 !important;
    color: #fff !important;
}

.btn-secondary {
    background: #007bff !important;
    color: #fff !important;
}

.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 !important;
    text-align: left !important;
}

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 !important;
}

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

body.rtl .guide-header h1 {
    text-align: center !important;
    /* Ensure main title is centered in RTL */
}

body.rtl .guide-header .lead {
    text-align: center !important;
    /* 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 4 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(4, 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('assets/images/aflam.jpg');
        /* 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.6rem;
}

.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;
}

@keyframes bounce {

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

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

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

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

/* Enhanced Hero 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);
    }
}

.hero-title {
    animation: slideInDown 1s ease-out;
}

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

/* Scroll Animations */
.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);
}

/* 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(220, 53, 69, 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 #dc3545;
}


.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, #dc3545, #ff6b6b);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
}

/* 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;
}

.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;
}

@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;
    }
}

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

@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);
    }
}

/* 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 */
.comparison-section {
    padding: 6rem 0;
    background: var(--color-dark-bg);
    position: relative;
}

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

.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;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.comparison-section .section-subtitle {
    text-align: center;
    font-size: 1.8rem;
    color: var(--color-text-light);
    margin-bottom: 4rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 3px solid #28a745;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    font-weight: 700;
    font-size: 1.8rem;
}

.comparison-header>div {
    padding: 2rem;
    text-align: center;
    border-right: 2px solid rgba(255, 255, 255, 0.2);
}

.comparison-header>div:last-child {
    border-right: none;
}

.service-badge {
    position: relative;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 1.6rem;
}

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

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.comparison-row:hover {
    background: #f8f9fa;
    transform: scale(1.02);
}

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

.feature-cell {
    padding: 2rem;
    font-weight: 600;
    font-size: 1.6rem;
    color: #333;
    border-right: 1px solid #eee;
    display: flex;
    align-items: center;
}

.our-service-cell {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border-right: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.cable-cell {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.price-highlight {
    font-size: 2.5rem;
    font-weight: 700;
    color: #28a745;
}

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

.feature-good {
    font-size: 1.6rem;
    font-weight: 600;
    color: #28a745;
}

.feature-bad {
    font-size: 1.6rem;
    font-weight: 600;
    color: #dc3545;
}

.checkmark {
    font-size: 2rem;
}

.crossmark {
    font-size: 2rem;
    opacity: 0.7;
}

.comparison-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 20px;
    color: white;
}

.comparison-cta h3 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.comparison-cta p {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.comparison-button {
    background: white;
    color: #28a745;
    padding: 1.5rem 3rem;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.comparison-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: #28a745;
}

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

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

    .comparison-header {
        display: none;
    }

    .comparison-row {
        display: block;
        margin-bottom: 2rem;
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .feature-cell {
        background: var(--color-primary);
        color: var(--color-white);
        font-weight: 700;
        justify-content: center;
        text-align: center;
        border-right: none;
        border-bottom: none;
        padding: 1.5rem;
        font-size: 1.8rem;
    }

    .our-service-cell,
    .cable-cell {
        border-right: none;
        border-bottom: none;
        padding: 2rem;
    }

    .our-service-cell {
        background: linear-gradient(135deg, #d4edda, #c3e6cb);
        position: relative;
    }

    .our-service-cell::before {
        content: 'Our Service ✅';
        position: absolute;
        top: 0.5rem;
        left: 1rem;
        font-size: 1.6rem;
        font-weight: 700;
        color: #28a745;
    }

    .cable-cell {
        background: linear-gradient(135deg, #f8d7da, #f5c6cb);
        position: relative;
    }

    .cable-cell::before {
        content: 'Traditional Cable ❌';
        position: absolute;
        top: 0.5rem;
        left: 1rem;
        font-size: 1.6rem;
        font-weight: 700;
        color: #dc3545;
    }

    .our-service-cell,
    .cable-cell {
        padding-top: 3rem;
    }

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

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

    .comparison-cta {
        margin: 2rem 1rem 0;
        padding: 2rem;
    }
}

/* Countdown Timer Styles */
.special-offer-banner {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 0.8rem;
    margin: -1rem -2rem 1.5rem -2rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.4rem;
    animation: pulse-banner 2s infinite;
}

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

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

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

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

.countdown-container {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 15px;
    border: 2px dashed var(--color-accent);
}

.countdown-text {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

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

.countdown-item {
    background: linear-gradient(135deg, var(--color-accent), #c82333);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    min-width: 60px;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

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

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

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

@keyframes pulse-cta {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(220, 53, 69, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

.countdown-cta:hover {
    background: linear-gradient(45deg, #c82333, var(--color-accent)) !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 */
.hero-section {
    background: var(--color-primary) url('./assets/images/famille.png') center/cover;
    background-attachment: fixed;
    position: relative;
}

.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;
}

/* Welcome Page Hero Background */
.welcome-page {
    background: var(--color-primary) url('./assets/images/famille.png') center/cover;
    background-attachment: fixed;
    position: relative;
    min-height: 100vh;
}

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

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

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

@media (max-width: 768px) {
    .welcome-page {
        background: var(--color-primary);
    }

    .welcome-hero-section {
        background: url('./assets/images/famille.png') center/cover;
        background-attachment: scroll;
        position: relative;
        padding: 3rem 2rem;
        border-radius: 15px;
        margin-bottom: 2rem;
    }

    .welcome-hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(26, 26, 26, 0.6);
        border-radius: 15px;
        z-index: 2;
    }

    .welcome-content>.welcome-headline,
    .welcome-content>.welcome-subtitle {
        background: none;
        position: relative;
        z-index: 3;
        color: white;
        padding: 0;
        margin: 0;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }

    .welcome-content>.welcome-subtitle {
        margin-bottom: 0;
    }


}

/* 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.5rem;
    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.5rem;
        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, #ff6b6b, #ee5a24);
        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 40s linear infinite;
}

@media (max-width: 768px) {
    .channels-grid {
        animation: scroll-rtl 80s 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: 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 30s linear infinite !important;
    width: fit-content;
}

.channels-scroll:hover {
    animation-play-state: paused;
}

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

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

.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(220, 53, 69, 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 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);
}

.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 25s 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(220, 53, 69, 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 20s 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: 25s;
        }

        .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;
        }
    }
}