/* RESTORED CLEAN THEME W/ PREMIUM FEATURES (V9) */
:root {
    --primary-color: #a6f62e;
    /* Lime Green */
    --primary-hover: #baff50;
    --secondary-color: #8b5cf6;
    /* Purple */
    --bg-dark: #050505;
    /* OLED Black */
    --bg-secondary: #0a0a0a;
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    --border-color: rgba(255, 255, 255, 0.08);

    /* Compatibility Variables */
    --text-light: var(--text-main);
    --bg-card: #0f0f0f;
    --glass-border: 1px solid var(--border-color);
    --gradient: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    --font-main: 'Inter', sans-serif;
}

/* Force FontAwesome */
.fas,
.fab,
.far,
.fa {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    padding-top: 40px;
    /* Space for banner */
    overflow-x: hidden;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #000;
    box-shadow: 0 0 20px rgba(166, 246, 46, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(166, 246, 46, 0.5);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(166, 246, 46, 0.3);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: rgba(166, 246, 46, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(166, 246, 46, 0.2);
}

/* Top Banner */
.top-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #ef4444, #f59e0b, #ef4444);
    background-size: 200% 100%;
    animation: gradientMove 5s linear infinite;
    color: white;
    text-align: center;
    padding: 12px 0;
    font-size: 0.95rem;
    font-weight: 800;
    z-index: 1100;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 20px rgba(239, 68, 68, 0.4);
    text-transform: uppercase;
}

@keyframes gradientMove {
    0% {
        background-position: 100% 0;
    }

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

/* Header */
.header {
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 40px;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

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

/* Logo */
.logo a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(166, 246, 46, 0.3);
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Navigation */
.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links li.current-menu-item a,
.nav-links a.active {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(166, 246, 46, 0.4);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
}

/* Mobile Nav */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #050505;
        padding: 30px;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links.active {
        display: flex;
    }

    .header-actions {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, #111 0%, #050505 100%);
    position: relative;
    padding: 120px 0;
}

.hero-content {
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 24px;
    line-height: 1.1;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
}

.hero-content span {
    color: var(--primary-color);
    text-shadow: 0 0 30px rgba(166, 246, 46, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 48px;
    color: var(--text-muted);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 50px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 30px;
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-badge i {
    color: var(--primary-color);
}

/* Premium Stats (Last Section Improvement) */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    border-top: 1px solid var(--border-color);
    padding-top: 60px;
    margin-top: 20px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    filter: drop-shadow(0 0 10px rgba(166, 246, 46, 0.4));
}

.stat span {
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 40px;
    }
}

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 800;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 80px;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 80px;
}

/* Premium Features (Why Choose Us) */
.features {
    background: #080808;
}

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

.feature-card {
    background: linear-gradient(180deg, rgba(20, 20, 20, 1) 0%, rgba(10, 10, 10, 1) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(166, 246, 46, 0.3);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
}

.feature-card:hover i {
    color: var(--primary-color);
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(166, 246, 46, 0.5));
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: all 0.3s ease;
    display: inline-block;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: #fff;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* Pricing */
.pricing {
    background: var(--bg-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Pricing Marketing Upgrades - FIXED */
.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--border-color);
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* overflow: hidden; REMOVED */
}

/* "Eclairage" (Lighting) Effect */
.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(166, 246, 46, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.pricing-card:hover::before {
    opacity: 1;
    /* Glow follows mouse feeling */
}

.pricing-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.5), 0 0 30px rgba(166, 246, 46, 0.15);
    /* Premium Glow */
}

/* Make Best Value Pop for Conversion */
.pricing-card.best-value {
    background: linear-gradient(160deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 0 40px rgba(166, 246, 46, 0.1);
}

.pricing-card.best-value:hover {
    transform: scale(1.08) translateY(-8px);
    box-shadow: 0 0 60px rgba(166, 246, 46, 0.25);
}

.badge {
    position: absolute;
    top: -15px;
    /* Moved up slightly to sit ON the border */
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #000;
    padding: 8px 24px;
    /* More padding for better text centering */
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(166, 246, 46, 0.4);
    letter-spacing: 0.5px;
    z-index: 20;
    /* Ensure it's above everything */
}

.card-header h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
}

.card-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
    text-align: left;
}

.card-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ddd;
    font-size: 0.95rem;
}

.card-features i {
    color: var(--primary-color);
}

.payment-methods {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.icons {
    font-size: 2.2rem;
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 30px;
    color: var(--text-muted);
    opacity: 0.7;
}

/* Reviews */
.reviews {
    background: #080808;
}

.stars {
    color: #fbbf24;
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.4);
}

/* FAQ */
.faq {
    background: var(--bg-dark);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    margin-bottom: 15px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    /* overflow: hidden; Removed to show badges */
    margin-top: 25px;
    /* More spacing for badges */
}

.discount-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #FF0080, #7928CA);
    /* Premium Purple/Pink Gradient */
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(255, 0, 128, 0.4);
    z-index: 10;
    transform: rotate(3deg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5px;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #fff;
    font-size: 1.1rem;
}

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

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item.active i {
    transform: rotate(45deg);
    color: var(--primary-color);
}

.faq-item.active .faq-answer {
    max-height: 1000px !important;
    /* Force open */
    padding-bottom: 25px !important;
    opacity: 1 !important;
    display: block !important;
}
}

/* --- NEW PAGES LAYOUT (PRESERVED) --- */
.page-hero {
    height: 45vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #080808;
    padding-top: 80px;
    margin-bottom: 60px;
    border-bottom: 1px solid var(--border-color);
}

.page-hero h1 {
    font-size: 3.5rem;
    color: #fff;
    font-weight: 800;
}

/* Installation */
.installation-container {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
}

.sidebar {
    flex: 0 0 280px;
    position: sticky;
    top: 120px;
    height: fit-content;
    background: #0f0f0f;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.sidebar h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.sidebar ul {
    list-style: none;
}

.sidebar li {
    margin-bottom: 8px;
}

.sidebar a {
    color: var(--text-muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    transition: 0.3s;
    font-weight: 500;
}

.sidebar a:hover,
.sidebar a.active {
    background: rgba(166, 246, 46, 0.1);
    color: var(--primary-color);
}

.guide-section {
    background: #0f0f0f;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    margin-bottom: 40px;
    scroll-margin-top: 120px;
}

.guide-section h2 {
    color: #fff;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.8rem;
}

.guide-section ol {
    margin-left: 20px;
    list-style: none;
    counter-reset: item;
}

.guide-section li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 20px;
    color: #ccc;
    font-size: 1.05rem;
}

.guide-section li:before {
    content: counter(item);
    counter-increment: item;
    position: absolute;
    left: 0;
    top: -2px;
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    border-radius: 50%;
    color: #000;
    text-align: center;
    line-height: 28px;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 100px;
}

.contact-info-box {
    background: #0f0f0f;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.contact-item {
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 18px;
    margin-bottom: 20px;
    background: #000;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(166, 246, 46, 0.1);
}

/* Footer Grid Layout - DEFINITIVE FIX */
footer {
    background: #020202;
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    /* Multi-column layout */
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    font-weight: 800;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

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

.footer-col li {
    margin-bottom: 12px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #666;
    font-size: 0.85rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 2000;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        /* 2 columns tablet */
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        /* 1 column mobile */
        text-align: center;
    }

    .footer-col {
        margin-bottom: 40px;
    }

    .installation-container,
    .contact-grid {
        flex-direction: column;
    }

    .sidebar {
        position: static;
        width: 100%;
    }
}/* Content Preview Section (Premium Visuals) */
.content-preview {
    padding: 80px 0;
    background: #050505;
    position: relative;
    overflow: hidden;
}

.content-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(166, 246, 46, 0.05), transparent 70%);
    pointer-events: none;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.preview-card {
    position: relative;
    height: 280px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #0a0a0a;
}

.preview-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.preview-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    transition: 0.4s;
    background-size: cover;
    background-position: center;
}

/* Gradients instead of Heavy Images for Speed */
.bg-movies {
    background: linear-gradient(45deg, #FF0000, #4a0000);
}

.bg-series {
    background: linear-gradient(45deg, #7928CA, #2a004a);
}

.bg-sports {
    background: linear-gradient(45deg, #00FF00, #004a00);
}

.bg-kids {
    background: linear-gradient(45deg, #00C6FF, #003a4a);
}

.preview-card:hover .preview-bg {
    opacity: 0.8;
    transform: scale(1.1);
}

.preview-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, #000 0%, transparent 100%);
    z-index: 2;
}

.preview-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.preview-content h3 {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: 5px;
}

.preview-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.preview-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #fff;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 3;
}

@media (max-width: 992px) {
    .preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .preview-grid {
        grid-template-columns: 1fr;
    }

    .preview-card {
        height: 220px;
    }
}/* Channel Ticker */
.channel-ticker {
    background: #000;
    padding: 30px 0;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.ticker-track {
    display: flex;
    gap: 50px;
    width: max-content;
    animation: scrollTicker 30s linear infinite;
}

.ticker-item {
    color: #444;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.3s;
    cursor: default;
}

.ticker-item:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

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

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

/* Premium Card Updates (Refined from Screenshot) */
.preview-card {
    border-radius: 30px;
    /* More rounded */
    background: #000;
    border: none;
    height: 320px;
}

/* Gradients - More Vibrant and Solid */
/* Films: Dark Red -> Bright Red */
.bg-movies {
    background: linear-gradient(180deg, #330000 0%, #a61010 100%);
    opacity: 1;
}

/* Series: Dark Purple -> Bright Purple */
.bg-series {
    background: linear-gradient(180deg, #180033 0%, #5d10a6 100%);
    opacity: 1;
}

/* Sports: Dark Green -> Bright Green */
.bg-sports {
    background: linear-gradient(180deg, #002200 0%, #10a615 100%);
    opacity: 1;
}

/* Kids: Dark Blue -> Bright Cyan/Teal */
.bg-kids {
    background: linear-gradient(180deg, #001833 0%, #106ea6 100%);
    opacity: 1;
}

.preview-content {
    background: transparent;
    /* Remove fade */
    padding: 30px;
}

.preview-icon {
    font-size: 3.5rem;
    /* Larger */
    margin-bottom: 20px;
    display: block;
}

.preview-badge {
    border-radius: 50px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    top: 25px;
    right: 25px;
}

.preview-content h3 {
    font-size: 2rem;
    margin-bottom: 5px;
}/* Channel Ticker */
.channel-ticker {
    background: #000;
    padding: 30px 0;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.ticker-track {
    display: flex;
    gap: 50px;
    width: max-content;
    animation: scrollTicker 30s linear infinite;
}

.ticker-item {
    color: #444;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.3s;
    cursor: default;
}

.ticker-item:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

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

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

/* Premium Card Updates (Refined from Screenshot) */
.preview-card {
    border-radius: 30px;
    /* More rounded */
    background: #000;
    border: none;
    height: 320px;
}

/* Real Premium Images (Optimized for Speed via Unsplash CDN) */
/* Film: Dark Cinematic Movie Theater */
.bg-movies {
    background-image: url('https://images.unsplash.com/photo-1626814026160-2237a95fc5a0?q=80&w=600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

/* Series: Dark Cozy TV Vibe */
.bg-series {
    background-image: url('https://images.unsplash.com/photo-1522869635100-1f4d068ee7f4?q=80&w=600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

/* Sport: Green Stadium Atmosphere */
.bg-sports {
    background-image: url('https://images.unsplash.com/photo-1508098682722-e99c43a406b2?q=80&w=600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

/* Kids: Colorful Abstract */
.bg-kids {
    background-image: url('https://images.unsplash.com/photo-1516627145497-ae6968895b74?q=80&w=600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

/* Add Overlay for Text Readability */
.preview-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 10%, rgba(0, 0, 0, 0.3) 100%);
}

.preview-content {
    background: transparent;
    /* Remove fade */
    padding: 30px;
}

.preview-icon {
    font-size: 3.5rem;
    /* Larger */
    margin-bottom: 20px;
    display: block;
}

.preview-badge {
    border-radius: 50px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    top: 25px;
    right: 25px;
}

.preview-content h3 {
    font-size: 2rem;
    margin-bottom: 5px;
}/* Channel Ticker */
.channel-ticker {
    background: #000;
    padding: 30px 0;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.ticker-track {
    display: flex;
    gap: 50px;
    width: max-content;
    animation: scrollTicker 30s linear infinite;
}

.ticker-item {
    color: #444;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.3s;
    cursor: default;
}

.ticker-item:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

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

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

/* Content Preview Section (Premium Immersive) */
.content-preview {
    padding: 100px 0;
    background: #000;
    position: relative;
    overflow: visible;
    /* Allow glows to bleed */
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.preview-card {
    position: relative;
    height: 450px;
    /* MUCH BIGGER */
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    background: #050505;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Hover: Scale Up and Glow */
.preview-card:hover {
    transform: translateY(-15px) scale(1.03);
    z-index: 10;
}

/* Specific Glow Colors on Hover */
.preview-card:nth-child(1):hover {
    box-shadow: 0 20px 50px rgba(229, 9, 20, 0.4);
    border-color: #e50914;
}

/* Netflix Red */
.preview-card:nth-child(2):hover {
    box-shadow: 0 20px 50px rgba(121, 40, 202, 0.4);
    border-color: #7928CA;
}

/* HBO Purple */
.preview-card:nth-child(3):hover {
    box-shadow: 0 20px 50px rgba(0, 255, 0, 0.3);
    border-color: #00ff00;
}

/* Sport Green */
.preview-card:nth-child(4):hover {
    box-shadow: 0 20px 50px rgba(0, 198, 255, 0.4);
    border-color: #00c6ff;
}

/* Disney Blue */

.preview-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease;
    background-size: cover;
    background-position: center;
}

/* Cinematic Zoom on Hover */
.preview-card:hover .preview-bg {
    transform: scale(1.15);
}

/* Dark Gradient Overlay for Text Readability */
.preview-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 15%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.1) 100%);
}

/* High-Converting Real Imagery (Unsplash) */
/* Movies: Cinema Collage Vibe */
.bg-movies {
    background-image: url('https://images.unsplash.com/photo-1594909122845-11baa439b7bf?q=80&w=800&auto=format&fit=crop');
}

/* Series: Binge Watching / TV Wall */
.bg-series {
    background-image: url('https://images.unsplash.com/photo-1574375927938-d5a98e8ffe85?q=80&w=800&auto=format&fit=crop');
}

/* Sports: Champions League / Football Stadium Action */
.bg-sports {
    background-image: url('https://images.unsplash.com/photo-1522778119026-d647f0565c6a?q=80&w=800&auto=format&fit=crop');
}

/* Kids: Animation / Fun */
.bg-kids {
    background-image: url('https://images.unsplash.com/photo-1535572290543-960a8046f5af?q=80&w=800&auto=format&fit=crop');
}


.preview-content {
    position: relative;
    padding: 35px;
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.4s;
}

.preview-card:hover .preview-content {
    transform: translateY(-5px);
}

.preview-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

.preview-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.preview-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

.preview-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 5;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 992px) {
    .preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .preview-card {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .preview-grid {
        grid-template-columns: 1fr;
    }

    .preview-card {
        height: 300px;
    }
}/* Channel Ticker */
.channel-ticker {
    background: #000;
    padding: 30px 0;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.ticker-track {
    display: flex;
    gap: 50px;
    width: max-content;
    animation: scrollTicker 30s linear infinite;
}

.ticker-item {
    color: #444;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.3s;
    cursor: default;
}

.ticker-item:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

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

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

/* Content Preview Section (Ultra-Premium / Apple Style) */
.content-preview {
    padding: 100px 0;
    background: #000;
    position: relative;
    overflow: visible;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    padding: 20px;
    /* Space for shadows */
}

.preview-card {
    position: relative;
    height: 500px;
    /* Even taller for poster feel */
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    background: #0a0a0a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Hover: Apple TV Lift Effect */
.preview-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 0 2px rgba(255, 255, 255, 0.1);
    z-index: 10;
}

/* Shine Effect on Hover */
.preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: none;
    z-index: 5;
    pointer-events: none;
}

.preview-card:hover::before {
    left: 150%;
    transition: all 0.8s ease;
}

.preview-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease;
    background-size: cover;
    background-position: center;
}

.preview-card:hover .preview-bg {
    transform: scale(1.1);
}

/* Improved Gradient Overlay: Clearer bottom text */
.preview-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.95) 100%);
}

/* Better Images (More Colorful/Cinematic) */
/* Movies: Red/Cinematic Lighting */
.bg-movies {
    background-image: url('https://images.unsplash.com/photo-1536440136628-849c177e76a1?q=80&w=800&auto=format&fit=crop');
}

/* Series: Popcorn/Bingewatch Vibe */
.bg-series {
    background-image: url('https://images.unsplash.com/photo-1593784991095-a205069470b6?q=80&w=800&auto=format&fit=crop');
}

/* Sports: Bright Stadium Floodlights */
.bg-sports {
    background-image: url('https://images.unsplash.com/photo-1522778119026-d647f0565c6a?q=80&w=800&auto=format&fit=crop');
}

/* Kids: Vibrant Balloons/Color */
.bg-kids {
    background-image: url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?q=80&w=800&auto=format&fit=crop');
}


.preview-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 6;
}

.preview-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #fff;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}

.preview-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.preview-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
}

.preview-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 8px;
    /* Boxier label like Netflix */
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 5;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 992px) {
    .preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .preview-card {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .preview-grid {
        grid-template-columns: 1fr;
    }

    .preview-card {
        height: 350px;
    }
}/* Channel Ticker */
.channel-ticker {
    background: #000;
    padding: 30px 0;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.ticker-track {
    display: flex;
    gap: 50px;
    width: max-content;
    animation: scrollTicker 30s linear infinite;
}

.ticker-item {
    color: #444;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.3s;
    cursor: default;
}

.ticker-item:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

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

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

/* Content Preview Section (Ultra-Premium / Apple Style) */
.content-preview {
    padding: 100px 0;
    background: #000;
    position: relative;
    overflow: visible;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    padding: 20px;
    /* Space for shadows */
}

.preview-card {
    position: relative;
    height: 500px;
    /* Even taller for poster feel */
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    background: #0a0a0a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Hover: Apple TV Lift Effect */
.preview-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 0 2px rgba(255, 255, 255, 0.1);
    z-index: 10;
}

/* Shine Effect on Hover */
.preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: none;
    z-index: 5;
    pointer-events: none;
}

.preview-card:hover::before {
    left: 150%;
    transition: all 0.8s ease;
}

.preview-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease;
    background-size: cover;
    background-position: center;
}

.preview-card:hover .preview-bg {
    transform: scale(1.1);
}

/* Improved Gradient Overlay: Clearer bottom text */
.preview-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.95) 100%);
}

/* Better Images (More Colorful/Cinematic) */
/* Movies: Red/Cinematic Lighting */
.bg-movies {
    background-image: url('https://images.unsplash.com/photo-1536440136628-849c177e76a1?q=80&w=800&auto=format&fit=crop');
}

/* Series: Popcorn/Bingewatch Vibe */
.bg-series {
    background-image: url('https://images.unsplash.com/photo-1593784991095-a205069470b6?q=80&w=800&auto=format&fit=crop');
}

/* Sports: Bright Stadium Floodlights */
.bg-sports {
    background-image: url('https://images.unsplash.com/photo-1522778119026-d647f0565c6a?q=80&w=800&auto=format&fit=crop');
}

/* Kids: Vibrant Balloons/Color */
.bg-kids {
    background-image: url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?q=80&w=800&auto=format&fit=crop');
}


.preview-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 6;
}

.preview-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #fff;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}

.preview-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.preview-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
}

.preview-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 8px;
    /* Boxier label like Netflix */
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 5;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 992px) {
    .preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .preview-card {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .preview-grid {
        grid-template-columns: 1fr;
    }

    .preview-card {
        height: 350px;
    }
}/* Content Preview Section (V6: 3D "Streaming Interface" Design) */
.content-preview {
    padding: 120px 0;
    background: linear-gradient(to bottom, #000000 0%, #050505 100%);
    position: relative;
    overflow: hidden;
}

/* Background Ambient Glow */
.content-preview::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(166, 246, 46, 0.03), transparent 60%);
    pointer-events: none;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    /* Wider gap for premium feel */
    margin-top: 70px;
    padding: 0 20px;
    perspective: 1000px;
    /* For 3D Tilt */
}

.preview-card {
    position: relative;
    height: 550px;
    /* Very Tall (Poster Aspect Ratio) */
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    background: #0a0a0a;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    transform-style: preserve-3d;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Hover: 3D Lift & slight Rotation */
.preview-card:hover {
    transform: translateY(-20px) scale(1.05) rotateX(2deg);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), 0 0 0 2px var(--hover-color, #fff);
    z-index: 10;
    border-color: transparent;
}

/* Assign Hover Colors via Variables in CSS */
.preview-card:nth-child(1) {
    --hover-color: #E50914;
}

/* Netflix Red */
.preview-card:nth-child(2) {
    --hover-color: #9C27B0;
}

/* HBO Purple */
.preview-card:nth-child(3) {
    --hover-color: #00FF00;
}

/* Sport Green */
.preview-card:nth-child(4) {
    --hover-color: #00C6FF;
}

/* Disney Blue */


.preview-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    background-size: cover;
    background-position: center;
}

.preview-card:hover .preview-bg {
    transform: scale(1.2);
    /* Dramatic slow zoom */
}

/* High-Contrast Gradient Overlay */
.preview-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.95) 90%,
            rgba(0, 0, 0, 1) 100%);
}

/* REPLACED IMAGES: Much more distinct and high-converting */

/* Movies: Action/Hero Vibe (Red hues) */
.bg-movies {
    background-image: url('https://images.unsplash.com/photo-1626814026160-2237a95fc5a0?q=80&w=800&auto=format&fit=crop');
}

/* Series: Living Room / Binge Vibe */
.bg-series {
    background-image: url('https://images.unsplash.com/photo-1574375927938-d5a98e8ffe85?q=80&w=800&auto=format&fit=crop');
}

/* Sports: CLEAR Football Action (Green Field) */
.bg-sports {
    background-image: url('https://images.unsplash.com/photo-1624880357913-a8539238245b?q=80&w=800&auto=format&fit=crop');
    /* This URL is a vivid football field/stadium at night */
}

/* Kids: Bright Animated Vibe */
.bg-kids {
    background-image: url('https://images.unsplash.com/photo-1606092195730-5d7b9af1ef4d?q=80&w=800&auto=format&fit=crop');
    /* Colorful toy/animated figure vibe */
}


.preview-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 6;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.preview-card:hover .preview-content {
    transform: translateY(0);
}

.preview-icon {
    font-size: 3.5rem;
    margin-bottom: 5px;
    /* Tighter layout */
    color: #fff;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.8));
    /* Icon Gradient Fill */
    background: linear-gradient(to bottom right, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.preview-content h3 {
    font-size: 2.8rem;
    /* Huge Typography */
    font-weight: 900;
    margin-bottom: 5px;
    color: #fff;
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: -1px;
}

.preview-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    border-left: 3px solid var(--primary-color);
    padding-left: 10px;
}

.preview-badge {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: #000;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 900;
    z-index: 5;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .preview-card {
        height: 450px;
    }
}

@media (max-width: 576px) {
    .preview-grid {
        grid-template-columns: 1fr;
    }

    .preview-card {
        height: 400px;
    }
}/* Content Preview Section (V6: 3D "Streaming Interface" Design) */
.content-preview {
    padding: 120px 0;
    background: linear-gradient(to bottom, #000000 0%, #050505 100%);
    position: relative;
    overflow: hidden;
}

/* Background Ambient Glow */
.content-preview::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(166, 246, 46, 0.03), transparent 60%);
    pointer-events: none;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    /* Wider gap for premium feel */
    margin-top: 70px;
    padding: 0 20px;
    perspective: 1000px;
    /* For 3D Tilt */
}

.preview-card {
    position: relative;
    height: 550px;
    /* Very Tall (Poster Aspect Ratio) */
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    background: #0a0a0a;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    transform-style: preserve-3d;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Hover: 3D Lift & slight Rotation */
.preview-card:hover {
    transform: translateY(-20px) scale(1.05) rotateX(2deg);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), 0 0 0 2px var(--hover-color, #fff);
    z-index: 10;
    border-color: transparent;
}

/* Assign Hover Colors via Variables in CSS */
.preview-card:nth-child(1) {
    --hover-color: #E50914;
}

/* Netflix Red */
.preview-card:nth-child(2) {
    --hover-color: #9C27B0;
}

/* HBO Purple */
.preview-card:nth-child(3) {
    --hover-color: #00FF00;
}

/* Sport Green */
.preview-card:nth-child(4) {
    --hover-color: #00C6FF;
}

/* Disney Blue */


.preview-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    background-size: cover;
    background-position: center;
}

.preview-card:hover .preview-bg {
    transform: scale(1.2);
    /* Dramatic slow zoom */
}

/* High-Contrast Gradient Overlay */
.preview-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.95) 90%,
            rgba(0, 0, 0, 1) 100%);
}

/* REPLACED IMAGES: Much more distinct and high-converting */

/* Movies: Action/Hero Vibe (Red hues) */
.bg-movies {
    background-image: url('https://images.unsplash.com/photo-1626814026160-2237a95fc5a0?q=80&w=800&auto=format&fit=crop');
}

/* Series: Living Room / Binge Vibe */
.bg-series {
    background-image: url('https://images.unsplash.com/photo-1574375927938-d5a98e8ffe85?q=80&w=800&auto=format&fit=crop');
}

/* Sports: CLEAR Football Action (Green Field) */
.bg-sports {
    background-image: url('https://images.unsplash.com/photo-1624880357913-a8539238245b?q=80&w=800&auto=format&fit=crop');
    /* This URL is a vivid football field/stadium at night */
}

/* Kids: Bright Animated Vibe */
.bg-kids {
    background-image: url('https://images.unsplash.com/photo-1606092195730-5d7b9af1ef4d?q=80&w=800&auto=format&fit=crop');
    /* Colorful toy/animated figure vibe */
}


.preview-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 6;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.preview-card:hover .preview-content {
    transform: translateY(0);
}

.preview-icon {
    font-size: 3.5rem;
    margin-bottom: 5px;
    /* Tighter layout */
    color: #fff;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.8));
    /* Icon Gradient Fill */
    background: linear-gradient(to bottom right, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.preview-content h3 {
    font-size: 2.8rem;
    /* Huge Typography */
    font-weight: 900;
    margin-bottom: 5px;
    color: #fff;
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: -1px;
}

.preview-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    border-left: 3px solid var(--primary-color);
    padding-left: 10px;
}

.preview-badge {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: #000;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 900;
    z-index: 5;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .preview-card {
        height: 450px;
    }
}

@media (max-width: 576px) {
    .preview-grid {
        grid-template-columns: 1fr;
    }

    .preview-card {
        height: 400px;
    }
}/* --- 1. Infinite Movie & Series Scroller (Netflix Style) --- */
.movie-scroller-section {
    padding: 80px 0;
    background: #000;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.movie-scroller-header h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.movie-scroller-header p {
    color: var(--text-muted);
}

.scroller-container {
    position: relative;
    width: 100%;
    display: flex;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.scroller-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollMovies 40s linear infinite;
}

.scroller-track:hover {
    animation-play-state: paused;
}

.movie-poster {
    width: 200px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.movie-poster:hover {
    transform: scale(1.1);
    z-index: 10;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8);
    border: 2px solid var(--primary-color);
}

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

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

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

    /* Ensure track is doubled in HTML */
}

/* --- 2. Premium Channel Ticker (Logo Style) --- */
.channel-ticker {
    background: #0a0a0a;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ticker-item {
    font-size: 1.8rem;
    font-weight: 900;
    color: #444;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
    transition: 0.3s;
}

.ticker-item:hover {
    opacity: 1;
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.ticker-item i {
    color: var(--primary-color);
}


/* --- 3. Trustpilot Style Reviews --- */
.reviews-section {
    padding: 100px 0;
    background: #050505;
}

.trustpilot-header {
    text-align: center;
    margin-bottom: 60px;
}

.trust-score {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.trust-star {
    color: #00b67a;
    /* Trustpilot Green */
    font-size: 2rem;
}

.trust-text {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 500;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: #111;
    padding: 30px;
    border-radius: 4px;
    /* Trustpilot is boxy */
    border-top: 3px solid #00b67a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.review-stars {
    color: #00b67a;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.review-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: block;
}

.review-body {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-author {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}/* --- 1. Infinite Movie & Series Scroller (Netflix Style) --- */
.movie-scroller-section {
    padding: 80px 0;
    background: #000;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.movie-scroller-header h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.movie-scroller-header p {
    color: var(--text-muted);
}

.scroller-container {
    position: relative;
    width: 100%;
    display: flex;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.scroller-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollMovies 40s linear infinite;
}

.scroller-track:hover {
    animation-play-state: paused;
}

.movie-poster {
    width: 200px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.movie-poster:hover {
    transform: scale(1.1);
    z-index: 10;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8);
    border: 2px solid var(--primary-color);
}

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

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

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

    /* Ensure track is doubled in HTML */
}

/* --- 2. Premium Channel Ticker (Logo Style) --- */
.channel-ticker {
    background: #0a0a0a;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ticker-item {
    font-size: 1.8rem;
    font-weight: 900;
    color: #444;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
    transition: 0.3s;
}

.ticker-item:hover {
    opacity: 1;
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.ticker-item i {
    color: var(--primary-color);
}


/* --- 3. Trustpilot Style Reviews --- */
.reviews-section {
    padding: 100px 0;
    background: #050505;
}

.trustpilot-header {
    text-align: center;
    margin-bottom: 60px;
}

.trust-score {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.trust-star {
    color: #00b67a;
    /* Trustpilot Green */
    font-size: 2rem;
}

.trust-text {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 500;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: #111;
    padding: 30px;
    border-radius: 4px;
    /* Trustpilot is boxy */
    border-top: 3px solid #00b67a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.review-stars {
    color: #00b67a;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.review-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: block;
}

.review-body {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-author {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}
/* --- 4. Premium Sport Showcase (Split Layout) --- */
.sport-showcase-section {
    padding: 100px 0;
    background: #000;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05); /* Separator */
}

/* Background Title "POPULAR SPORTS CHANNELS" faint */
.sport-bg-text {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.03); /* Very faint */
    font-size: 8rem;
    font-weight: 900;
    white-space: nowrap;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 0;
}

.sport-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.sport-header {
    margin-bottom: 60px;
}

.sport-header h3 {
    color: #3b82f6; /* Blue faint text above */
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.sport-header h2 {
    font-size: 3rem;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
}

.sport-header h2 span {
    border: 2px solid #fff;
    border-radius: 50%;
    padding: 5px 25px; /* Circle effect */
    display: inline-block;
}

.sport-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.sport-posters {
    display: flex;
    gap: 20px;
    flex: 1;
}

.sport-poster-card {
    height: 350px;
    flex: 1;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.sport-poster-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.sport-poster-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, #000 0%, transparent 100%);
}

.sport-poster-logo {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    z-index: 2;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.8));
}

/* Right Side: Channels Grid + Text */
.sport-info-side {
    flex: 1;
    text-align: left;
}

.channel-logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 logos per row */
    gap: 15px;
    margin-bottom: 30px;
}

.channel-logo-item {
    background: #111;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.05);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s;
}

.channel-logo-item:hover {
    background: #222;
    border-color: var(--primary-color);
}

.sport-desc {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Blue Button */
.btn-channels {
    background: #2563eb; /* Royal Blue */
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-channels:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

/* Mobile Optimizations */
@media (max-width: 992px) {
    .sport-grid { flex-direction: column; }
    .sport-bg-text { font-size: 4rem; top: 20px; }
    .sport-posters { width: 100%; }
    .sport-info-side { width: 100%; text-align: center; }
    .channel-logo-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 576px) {
    .sport-posters { flex-direction: row; overflow-x: auto; padding-bottom: 20px; } /* Horizontal scroll on mobile */
    .sport-poster-card { min-width: 250px; height: 350px; }
    .channel-logo-grid { grid-template-columns: repeat(2, 1fr); }
    .sport-header h2 { font-size: 2rem; }
    
    /* Movie Scroller Mobile: Show 2-3 items? No, scrolling is fine, maybe resize images */
    .movie-poster { width: 140px; height: 210px; }
    
    /* Review Grid Mobile */
    .reviews-grid { grid-template-columns: 1fr; }
}
/* --- 1. Infinite Movie & Series Scroller (Netflix Style) --- */
.movie-scroller-section {
    padding: 80px 0;
    background: #000;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.movie-scroller-header h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.movie-scroller-header p {
    color: var(--text-muted);
}

.scroller-container {
    position: relative;
    width: 100%;
    display: flex;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.scroller-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollMovies 40s linear infinite;
}

.scroller-track:hover {
    animation-play-state: paused;
}

.movie-poster {
    width: 200px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.movie-poster:hover {
    transform: scale(1.1);
    z-index: 10;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8);
    border: 2px solid var(--primary-color);
}

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

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

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

    /* Ensure track is doubled in HTML */
}

/* --- 2. Premium Channel Ticker (Logo Style) --- */
.channel-ticker {
    background: #0a0a0a;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ticker-item {
    font-size: 1.8rem;
    font-weight: 900;
    color: #444;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
    transition: 0.3s;
}

.ticker-item:hover {
    opacity: 1;
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.ticker-item i {
    color: var(--primary-color);
}


/* --- 3. Trustpilot Style Reviews --- */
.reviews-section {
    padding: 100px 0;
    background: #050505;
}

.trustpilot-header {
    text-align: center;
    margin-bottom: 60px;
}

.trust-score {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.trust-star {
    color: #00b67a;
    /* Trustpilot Green */
    font-size: 2rem;
}

.trust-text {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 500;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: #111;
    padding: 30px;
    border-radius: 4px;
    /* Trustpilot is boxy */
    border-top: 3px solid #00b67a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.review-stars {
    color: #00b67a;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.review-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: block;
}

.review-body {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-author {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}
/* --- 4. Premium Sport Showcase (Split Layout) --- */
.sport-showcase-section {
    padding: 100px 0;
    background: #000;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05); /* Separator */
}

/* Background Title "POPULAR SPORTS CHANNELS" faint */
.sport-bg-text {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.03); /* Very faint */
    font-size: 8rem;
    font-weight: 900;
    white-space: nowrap;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 0;
}

.sport-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.sport-header {
    margin-bottom: 60px;
}

.sport-header h3 {
    color: #3b82f6; /* Blue faint text above */
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.sport-header h2 {
    font-size: 3rem;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
}

.sport-header h2 span {
    border: 2px solid #fff;
    border-radius: 50%;
    padding: 5px 25px; /* Circle effect */
    display: inline-block;
}

.sport-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.sport-posters {
    display: flex;
    gap: 20px;
    flex: 1;
}

.sport-poster-card {
    height: 350px;
    flex: 1;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.sport-poster-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.sport-poster-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, #000 0%, transparent 100%);
}

.sport-poster-logo {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    z-index: 2;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.8));
}

/* Right Side: Channels Grid + Text */
.sport-info-side {
    flex: 1;
    text-align: left;
}

.channel-logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 logos per row */
    gap: 15px;
    margin-bottom: 30px;
}

.channel-logo-item {
    background: #111;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.05);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s;
}

.channel-logo-item:hover {
    background: #222;
    border-color: var(--primary-color);
}

.sport-desc {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Blue Button */
.btn-channels {
    background: #2563eb; /* Royal Blue */
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-channels:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

/* Mobile Optimizations */
@media (max-width: 992px) {
    .sport-grid { flex-direction: column; }
    .sport-bg-text { font-size: 4rem; top: 20px; }
    .sport-posters { width: 100%; }
    .sport-info-side { width: 100%; text-align: center; }
    .channel-logo-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 576px) {
    .sport-posters { flex-direction: row; overflow-x: auto; padding-bottom: 20px; } /* Horizontal scroll on mobile */
    .sport-poster-card { min-width: 250px; height: 350px; }
    .channel-logo-grid { grid-template-columns: repeat(2, 1fr); }
    .sport-header h2 { font-size: 2rem; }
    
    /* Movie Scroller Mobile: Show 2-3 items? No, scrolling is fine, maybe resize images */
    .movie-poster { width: 140px; height: 210px; }
    
    /* Review Grid Mobile */
    .reviews-grid { grid-template-columns: 1fr; }
}

/* --- 5. New Sport Hero Card (Single Big Focus) --- */
.sport-hero-card {
    height: 400px;
    flex: 1.2; /* Bigger than info side */
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.sport-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, #000 0%, rgba(0,0,0,0.6) 80%, transparent 100%);
}

.sport-overlay-content h3 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 800;
}

.live-badge {
    background: #E50914;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

.sport-features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.sport-features-list li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sport-features-list li i {
    color: var(--primary-color);
}
/* --- 1. Infinite Movie & Series Scroller (Netflix Style) --- */
.movie-scroller-section {
    padding: 80px 0;
    background: #000;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.movie-scroller-header h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.movie-scroller-header p {
    color: var(--text-muted);
}

.scroller-container {
    position: relative;
    width: 100%;
    display: flex;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.scroller-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollMovies 40s linear infinite;
}

.scroller-track:hover {
    animation-play-state: paused;
}

.movie-poster {
    width: 200px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.movie-poster:hover {
    transform: scale(1.1);
    z-index: 10;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8);
    border: 2px solid var(--primary-color);
}

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

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

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

    /* Ensure track is doubled in HTML */
}

/* --- 2. Premium Channel Ticker (Logo Style) --- */
.channel-ticker {
    background: #0a0a0a;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ticker-item {
    font-size: 1.8rem;
    font-weight: 900;
    color: #444;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
    transition: 0.3s;
}

.ticker-item:hover {
    opacity: 1;
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.ticker-item i {
    color: var(--primary-color);
}


/* --- 3. Trustpilot Style Reviews --- */
.reviews-section {
    padding: 100px 0;
    background: #050505;
}

.trustpilot-header {
    text-align: center;
    margin-bottom: 60px;
}

.trust-score {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.trust-star {
    color: #00b67a;
    /* Trustpilot Green */
    font-size: 2rem;
}

.trust-text {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 500;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: #111;
    padding: 30px;
    border-radius: 4px;
    /* Trustpilot is boxy */
    border-top: 3px solid #00b67a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.review-stars {
    color: #00b67a;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.review-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: block;
}

.review-body {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-author {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}
/* --- 4. Premium Sport Showcase (Split Layout) --- */
.sport-showcase-section {
    padding: 100px 0;
    background: #000;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05); /* Separator */
}

/* Background Title "POPULAR SPORTS CHANNELS" faint */
.sport-bg-text {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.03); /* Very faint */
    font-size: 8rem;
    font-weight: 900;
    white-space: nowrap;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 0;
}

.sport-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.sport-header {
    margin-bottom: 60px;
}

.sport-header h3 {
    color: #3b82f6; /* Blue faint text above */
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.sport-header h2 {
    font-size: 3rem;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
}

.sport-header h2 span {
    border: 2px solid #fff;
    border-radius: 50%;
    padding: 5px 25px; /* Circle effect */
    display: inline-block;
}

.sport-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.sport-posters {
    display: flex;
    gap: 20px;
    flex: 1;
}

.sport-poster-card {
    height: 350px;
    flex: 1;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.sport-poster-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.sport-poster-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, #000 0%, transparent 100%);
}

.sport-poster-logo {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    z-index: 2;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.8));
}

/* Right Side: Channels Grid + Text */
.sport-info-side {
    flex: 1;
    text-align: left;
}

.channel-logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 logos per row */
    gap: 15px;
    margin-bottom: 30px;
}

.channel-logo-item {
    background: #111;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.05);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s;
}

.channel-logo-item:hover {
    background: #222;
    border-color: var(--primary-color);
}

.sport-desc {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Blue Button */
.btn-channels {
    background: #2563eb; /* Royal Blue */
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-channels:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

/* Mobile Optimizations */
@media (max-width: 992px) {
    .sport-grid { flex-direction: column; }
    .sport-bg-text { font-size: 4rem; top: 20px; }
    .sport-posters { width: 100%; }
    .sport-info-side { width: 100%; text-align: center; }
    .channel-logo-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 576px) {
    .sport-posters { flex-direction: row; overflow-x: auto; padding-bottom: 20px; } /* Horizontal scroll on mobile */
    .sport-poster-card { min-width: 250px; height: 350px; }
    .channel-logo-grid { grid-template-columns: repeat(2, 1fr); }
    .sport-header h2 { font-size: 2rem; }
    
    /* Movie Scroller Mobile: Show 2-3 items? No, scrolling is fine, maybe resize images */
    .movie-poster { width: 140px; height: 210px; }
    
    /* Review Grid Mobile */
    .reviews-grid { grid-template-columns: 1fr; }
}

/* --- 5. New Sport Hero Card (Single Big Focus) --- */
.sport-hero-card {
    height: 400px;
    flex: 1.2; /* Bigger than info side */
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.sport-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, #000 0%, rgba(0,0,0,0.6) 80%, transparent 100%);
}

.sport-overlay-content h3 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 800;
}

.live-badge {
    background: #E50914;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

.sport-features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.sport-features-list li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sport-features-list li i {
    color: var(--primary-color);
}

/* --- 6. Sport Hero Slider (Left Side) --- */
.sport-hero-card {
    /* Existing properties override: remove background-image */
    background-image: none !important; 
    background: #000;
    position: relative;
    overflow: hidden; /* Mask the scrolling */
}

.sport-slider-track {
    display: flex;
    height: 100%;
    width: max-content; /* Allow children to expand */
    animation: scrollSportHero 20s linear infinite;
}

.sport-slider-track img {
    height: 100%;
    width: auto; /* Maintain aspect ratio */
    min-width: 100%; /* Ensure it covers if single, but here we want strip */
    object-fit: cover;
    flex-shrink: 0;
    /* If we want them to "cover" the space one by one, we need a different approach.
       "Scrolling and covering the whole left space" -> 
       If images are 16:9, and card is 400px high, width is ~700px.
       If we just scroll them sideways, it works like a marquee.
    */
    width: 100%; /* Force width to match container for slide effect? No, container is flexible. */
    max-width: none;
    aspect-ratio: 16/9; /* Assumption */
}

/* Actually, a "Crossfade" or "Slider" might be better if they want "covering". 
   If "scrolling", a marquee is literal. Let's do a marquee but with images fitting height.
*/

.sport-slider-track img {
    height: 100%;
    width: auto;
    max-width: none;
}

@keyframes scrollSportHero {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Standard infinite scroll for duplicated list */
}

/* Ensure overlay stays on top */
.sport-overlay-content {
    z-index: 5;
    pointer-events: none; /* Let clicks pass through if needed */
}
/* --- 1. Infinite Movie & Series Scroller (Netflix Style) --- */
.movie-scroller-section {
    padding: 80px 0;
    background: #000;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.movie-scroller-header h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.movie-scroller-header p {
    color: var(--text-muted);
}

.scroller-container {
    position: relative;
    width: 100%;
    display: flex;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.scroller-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollMovies 40s linear infinite;
}

.scroller-track:hover {
    animation-play-state: paused;
}

.movie-poster {
    width: 200px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.movie-poster:hover {
    transform: scale(1.1);
    z-index: 10;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8);
    border: 2px solid var(--primary-color);
}

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

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

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

    /* Ensure track is doubled in HTML */
}

/* --- 2. Premium Channel Ticker (Logo Style) --- */
.channel-ticker {
    background: #0a0a0a;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ticker-item {
    font-size: 1.8rem;
    font-weight: 900;
    color: #444;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
    transition: 0.3s;
}

.ticker-item:hover {
    opacity: 1;
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.ticker-item i {
    color: var(--primary-color);
}


/* --- 3. Trustpilot Style Reviews --- */
.reviews-section {
    padding: 100px 0;
    background: #050505;
}

.trustpilot-header {
    text-align: center;
    margin-bottom: 60px;
}

.trust-score {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.trust-star {
    color: #00b67a;
    /* Trustpilot Green */
    font-size: 2rem;
}

.trust-text {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 500;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: #111;
    padding: 30px;
    border-radius: 4px;
    /* Trustpilot is boxy */
    border-top: 3px solid #00b67a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.review-stars {
    color: #00b67a;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.review-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: block;
}

.review-body {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-author {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* --- 4. Premium Sport Showcase (Split Layout) --- */
.sport-showcase-section {
    padding: 100px 0;
    background: #000;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* Separator */
}

/* Background Title "POPULAR SPORTS CHANNELS" faint */
.sport-bg-text {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.03);
    /* Very faint */
    font-size: 8rem;
    font-weight: 900;
    white-space: nowrap;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 0;
}

.sport-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.sport-header {
    margin-bottom: 60px;
}

.sport-header h3 {
    color: #3b82f6;
    /* Blue faint text above */
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.sport-header h2 {
    font-size: 3rem;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
}

.sport-header h2 span {
    border: 2px solid #fff;
    border-radius: 50%;
    padding: 5px 25px;
    /* Circle effect */
    display: inline-block;
}

.sport-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.sport-posters {
    display: flex;
    gap: 20px;
    flex: 1;
}

.sport-poster-card {
    height: 350px;
    flex: 1;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sport-poster-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.sport-poster-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, #000 0%, transparent 100%);
}

.sport-poster-logo {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    z-index: 2;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.8));
}

/* Right Side: Channels Grid + Text */
.sport-info-side {
    flex: 1;
    text-align: left;
}

.channel-logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 logos per row */
    gap: 15px;
    margin-bottom: 30px;
}

.channel-logo-item {
    background: #111;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s;
}

.channel-logo-item:hover {
    background: #222;
    border-color: var(--primary-color);
}

.sport-desc {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Blue Button */
.btn-channels {
    background: #2563eb;
    /* Royal Blue */
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-channels:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

/* Mobile Optimizations */
@media (max-width: 992px) {
    .sport-grid {
        flex-direction: column;
    }

    .sport-bg-text {
        font-size: 4rem;
        top: 20px;
    }

    .sport-posters {
        width: 100%;
    }

    .sport-info-side {
        width: 100%;
        text-align: center;
    }

    .channel-logo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 576px) {
    .sport-posters {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 20px;
    }

    /* Horizontal scroll on mobile */
    .sport-poster-card {
        min-width: 250px;
        height: 350px;
    }

    .channel-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    /* Movie Scroller Mobile: Show 2-3 items? No, scrolling is fine, maybe resize images */
    .movie-poster {
        width: 140px;
        height: 210px;
    }

    /* Review Grid Mobile */
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* --- 5. New Sport Hero Card (Single Big Focus) --- */
.sport-hero-card {
    height: 400px;
    flex: 1.2;
    /* Bigger than info side */
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.sport-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.6) 80%, transparent 100%);
}

.sport-overlay-content h3 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 800;
}

.live-badge {
    background: #E50914;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

.sport-features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.sport-features-list li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sport-features-list li i {
    color: var(--primary-color);
}

/* --- 6. Sport Hero Slider (Left Side) --- */
.sport-hero-card {
    /* Existing properties override: remove background-image */
    background-image: none !important;
    background: #000;
    position: relative;
    overflow: hidden;
    /* Mask the scrolling */
}

.sport-slider-track {
    display: flex;
    height: 100%;
    width: max-content;
    /* Allow children to expand */
    animation: scrollSportHero 20s linear infinite;
}

.sport-slider-track img {
    height: 100%;
    width: auto;
    max-width: none;
    /* Crucial: prevent images from shrinking */
    object-fit: cover;
    flex-shrink: 0;
    /* Removed min-width: 100% and width: 100% which caused the 'broken' stretching */
}

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

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

    /* Standard infinite scroll for duplicated list */
}

/* Ensure overlay stays on top */
.sport-overlay-content {
    z-index: 5;
    pointer-events: none;
    /* Let clicks pass through if needed */
}
/* --- 6. Sport Hero Slider (Left Side) --- */
.sport-hero-card {
    background-image: none !important; 
    background: #000;
    position: relative;
    overflow: hidden;
}

.sport-slider-track {
    display: flex;
    height: 100%;
    width: max-content; 
    animation: scrollSportHero 20s linear infinite;
}

.sport-slider-track img {
    height: 100%;
    width: auto;
    max-width: none; /* Crucial: prevent images from shrinking */
    object-fit: cover;
    flex-shrink: 0;
    /* Removed min-width: 100% and width: 100% */
}

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

/* Ensure overlay stays on top */
.sport-overlay-content {
    z-index: 5;
    pointer-events: none; 
}
/* --- 1. Infinite Movie & Series Scroller (Netflix Style) --- */
.movie-scroller-section {
    padding: 80px 0;
    background: #000;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.movie-scroller-header h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.movie-scroller-header p {
    color: var(--text-muted);
}

.scroller-container {
    position: relative;
    width: 100%;
    display: flex;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.scroller-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollMovies 40s linear infinite;
}

.scroller-track:hover {
    animation-play-state: paused;
}

.movie-poster {
    width: 200px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.movie-poster:hover {
    transform: scale(1.1);
    z-index: 10;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8);
    border: 2px solid var(--primary-color);
}

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

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

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

    /* Ensure track is doubled in HTML */
}

/* --- 2. Premium Channel Ticker (Logo Style) --- */
.channel-ticker {
    background: #0a0a0a;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ticker-item {
    font-size: 1.8rem;
    font-weight: 900;
    color: #444;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
    transition: 0.3s;
}

.ticker-item:hover {
    opacity: 1;
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.ticker-item i {
    color: var(--primary-color);
}


/* --- 3. Trustpilot Style Reviews --- */
.reviews-section {
    padding: 100px 0;
    background: #050505;
}

.trustpilot-header {
    text-align: center;
    margin-bottom: 60px;
}

.trust-score {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.trust-star {
    color: #00b67a;
    /* Trustpilot Green */
    font-size: 2rem;
}

.trust-text {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 500;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: #111;
    padding: 30px;
    border-radius: 4px;
    /* Trustpilot is boxy */
    border-top: 3px solid #00b67a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.review-stars {
    color: #00b67a;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.review-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: block;
}

.review-body {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-author {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* --- 4. Premium Sport Showcase (Split Layout) --- */
.sport-showcase-section {
    padding: 100px 0;
    background: #000;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* Separator */
}

/* Background Title "POPULAR SPORTS CHANNELS" faint */
.sport-bg-text {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.03);
    /* Very faint */
    font-size: 8rem;
    font-weight: 900;
    white-space: nowrap;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 0;
}

.sport-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.sport-header {
    margin-bottom: 60px;
}

.sport-header h3 {
    color: #3b82f6;
    /* Blue faint text above */
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.sport-header h2 {
    font-size: 3rem;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
}

.sport-header h2 span {
    border: 2px solid #fff;
    border-radius: 50%;
    padding: 5px 25px;
    /* Circle effect */
    display: inline-block;
}

.sport-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.sport-posters {
    display: flex;
    gap: 20px;
    flex: 1;
}

.sport-poster-card {
    height: 350px;
    flex: 1;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sport-poster-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.sport-poster-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, #000 0%, transparent 100%);
}

.sport-poster-logo {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    z-index: 2;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.8));
}

/* Right Side: Channels Grid + Text */
.sport-info-side {
    flex: 1;
    text-align: left;
}

.channel-logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 logos per row */
    gap: 15px;
    margin-bottom: 30px;
}

.channel-logo-item {
    background: #111;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s;
}

.channel-logo-item:hover {
    background: #222;
    border-color: var(--primary-color);
}

.sport-desc {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Blue Button */
.btn-channels {
    background: #2563eb;
    /* Royal Blue */
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-channels:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

/* Mobile Optimizations */
@media (max-width: 992px) {
    .sport-grid {
        flex-direction: column;
    }

    .sport-bg-text {
        font-size: 4rem;
        top: 20px;
    }

    .sport-posters {
        width: 100%;
    }

    .sport-info-side {
        width: 100%;
        text-align: center;
    }

    .channel-logo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 576px) {
    .sport-posters {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 20px;
    }

    /* Horizontal scroll on mobile */
    .sport-poster-card {
        min-width: 250px;
        height: 350px;
    }

    .channel-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    /* Movie Scroller Mobile: Show 2-3 items? No, scrolling is fine, maybe resize images */
    .movie-poster {
        width: 140px;
        height: 210px;
    }

    /* Review Grid Mobile */
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* --- 5. New Sport Hero Card (Single Big Focus) --- */
.sport-hero-card {
    height: 400px;
    flex: 1.2;
    /* Bigger than info side */
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.sport-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.6) 80%, transparent 100%);
}

.sport-overlay-content h3 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 800;
}

.live-badge {
    background: #E50914;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

.sport-features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.sport-features-list li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sport-features-list li i {
    color: var(--primary-color);
}

/* --- 6. Sport Hero Slider (Left Side) --- */
.sport-hero-card {
    /* Existing properties override: remove background-image */
    background-image: none !important;
    background: #000;
    position: relative;
    overflow: hidden;
    /* Mask the scrolling */
}

.sport-slider-track {
    display: flex;
    height: 100%;
    width: max-content;
    /* Allow children to expand */
    animation: scrollSportHero 20s linear infinite;
}

.sport-slider-track img {
    height: 100%;
    width: auto;
    max-width: none;
    /* Crucial: prevent images from shrinking */
    object-fit: cover;
    flex-shrink: 0;
    /* Removed min-width: 100% and width: 100% which caused the 'broken' stretching */
}

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

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

    /* Standard infinite scroll for duplicated list */
}

/* Ensure overlay stays on top */
.sport-overlay-content {
    z-index: 5;
    pointer-events: none;
    /* Let clicks pass through if needed */
}
/* --- 6. Sport Hero Slider (Left Side) --- */
.sport-hero-card {
    background-image: none !important; 
    background: #000;
    position: relative;
    overflow: hidden;
}

.sport-slider-track {
    display: flex;
    height: 100%;
    width: max-content; 
    animation: scrollSportHero 20s linear infinite;
}

.sport-slider-track img {
    height: 100%;
    width: auto;
    max-width: none; /* Crucial: prevent images from shrinking */
    object-fit: cover;
    flex-shrink: 0;
    /* Removed min-width: 100% and width: 100% */
}

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

/* Ensure overlay stays on top */
.sport-overlay-content {
    z-index: 5;
    pointer-events: none; 
}

/* --- 7. Sport Slider (V32 - Fresh Classes) --- */
.sport-slider-wrapper {
    height: 400px;
    flex: 1.2;
    background: #000;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.sport-track-v32 {
    display: flex;
    height: 100%;
    width: max-content;
    animation: scrollSportV32 20s linear infinite;
}

.sport-track-v32 img {
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: cover;
    flex-shrink: 0;
    display: block; /* Remove inline gap */
}

@keyframes scrollSportV32 {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
/* --- 1. Infinite Movie & Series Scroller (Netflix Style) --- */
.movie-scroller-section {
    padding: 80px 0;
    background: #000;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.movie-scroller-header h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.movie-scroller-header p {
    color: var(--text-muted);
}

.scroller-container {
    position: relative;
    width: 100%;
    display: flex;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.scroller-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollMovies 40s linear infinite;
}

.scroller-track:hover {
    animation-play-state: paused;
}

.movie-poster {
    width: 200px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.movie-poster:hover {
    transform: scale(1.1);
    z-index: 10;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8);
    border: 2px solid var(--primary-color);
}

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

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

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

    /* Ensure track is doubled in HTML */
}

/* --- 2. Premium Channel Ticker (Logo Style) --- */
.channel-ticker {
    background: #0a0a0a;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ticker-item {
    font-size: 1.8rem;
    font-weight: 900;
    color: #444;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
    transition: 0.3s;
}

.ticker-item:hover {
    opacity: 1;
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.ticker-item i {
    color: var(--primary-color);
}


/* --- 3. Trustpilot Style Reviews --- */
.reviews-section {
    padding: 100px 0;
    background: #050505;
}

.trustpilot-header {
    text-align: center;
    margin-bottom: 60px;
}

.trust-score {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.trust-star {
    color: #00b67a;
    /* Trustpilot Green */
    font-size: 2rem;
}

.trust-text {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 500;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: #111;
    padding: 30px;
    border-radius: 4px;
    /* Trustpilot is boxy */
    border-top: 3px solid #00b67a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.review-stars {
    color: #00b67a;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.review-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: block;
}

.review-body {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-author {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* --- 4. Premium Sport Showcase (Split Layout) --- */
.sport-showcase-section {
    padding: 100px 0;
    background: #000;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* Separator */
}

/* Background Title "POPULAR SPORTS CHANNELS" faint */
.sport-bg-text {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.03);
    /* Very faint */
    font-size: 8rem;
    font-weight: 900;
    white-space: nowrap;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 0;
}

.sport-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.sport-header {
    margin-bottom: 60px;
}

.sport-header h3 {
    color: #3b82f6;
    /* Blue faint text above */
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.sport-header h2 {
    font-size: 3rem;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
}

.sport-header h2 span {
    border: 2px solid #fff;
    border-radius: 50%;
    padding: 5px 25px;
    /* Circle effect */
    display: inline-block;
}

.sport-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.sport-posters {
    display: flex;
    gap: 20px;
    flex: 1;
}

.sport-poster-card {
    height: 350px;
    flex: 1;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sport-poster-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.sport-poster-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, #000 0%, transparent 100%);
}

.sport-poster-logo {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    z-index: 2;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.8));
}

/* Right Side: Channels Grid + Text */
.sport-info-side {
    flex: 1;
    text-align: left;
}

.channel-logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 logos per row */
    gap: 15px;
    margin-bottom: 30px;
}

.channel-logo-item {
    background: #111;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s;
}

.channel-logo-item:hover {
    background: #222;
    border-color: var(--primary-color);
}

.sport-desc {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Blue Button */
.btn-channels {
    background: #2563eb;
    /* Royal Blue */
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-channels:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

/* Mobile Optimizations */
@media (max-width: 992px) {
    .sport-grid {
        flex-direction: column;
    }

    .sport-bg-text {
        font-size: 4rem;
        top: 20px;
    }

    .sport-posters {
        width: 100%;
    }

    .sport-info-side {
        width: 100%;
        text-align: center;
    }

    .channel-logo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 576px) {
    .sport-posters {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 20px;
    }

    /* Horizontal scroll on mobile */
    .sport-poster-card {
        min-width: 250px;
        height: 350px;
    }

    .channel-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    /* Movie Scroller Mobile: Show 2-3 items? No, scrolling is fine, maybe resize images */
    .movie-poster {
        width: 140px;
        height: 210px;
    }

    /* Review Grid Mobile */
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* --- 5. New Sport Hero Card (Single Big Focus) --- */
.sport-hero-card {
    height: 400px;
    flex: 1.2;
    /* Bigger than info side */
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.sport-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.6) 80%, transparent 100%);
}

.sport-overlay-content h3 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 800;
}

.live-badge {
    background: #E50914;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

.sport-features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.sport-features-list li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sport-features-list li i {
    color: var(--primary-color);
}

/* --- 6. Sport Hero Slider (Left Side) --- */
.sport-hero-card {
    /* Existing properties override: remove background-image */
    background-image: none !important;
    background: #000;
    position: relative;
    overflow: hidden;
    /* Mask the scrolling */
}

.sport-slider-track {
    display: flex;
    height: 100%;
    width: max-content;
    /* Allow children to expand */
    animation: scrollSportHero 20s linear infinite;
}

.sport-slider-track img {
    height: 100%;
    width: auto;
    max-width: none;
    /* Crucial: prevent images from shrinking */
    object-fit: cover;
    flex-shrink: 0;
    /* Removed min-width: 100% and width: 100% which caused the 'broken' stretching */
}

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

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

    /* Standard infinite scroll for duplicated list */
}

/* Ensure overlay stays on top */
.sport-overlay-content {
    z-index: 5;
    pointer-events: none;
    /* Let clicks pass through if needed */
}
/* --- 6. Sport Hero Slider (Left Side) --- */
.sport-hero-card {
    background-image: none !important; 
    background: #000;
    position: relative;
    overflow: hidden;
}

.sport-slider-track {
    display: flex;
    height: 100%;
    width: max-content; 
    animation: scrollSportHero 20s linear infinite;
}

.sport-slider-track img {
    height: 100%;
    width: auto;
    max-width: none; /* Crucial: prevent images from shrinking */
    object-fit: cover;
    flex-shrink: 0;
    /* Removed min-width: 100% and width: 100% */
}

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

/* Ensure overlay stays on top */
.sport-overlay-content {
    z-index: 5;
    pointer-events: none; 
}

/* --- 7. Sport Slider (V32 - Fresh Classes) --- */
.sport-slider-wrapper {
    height: 400px;
    flex: 1.2;
    background: #000;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.sport-track-v32 {
    display: flex;
    height: 100%;
    width: max-content;
    animation: scrollSportV32 20s linear infinite;
}

.sport-track-v32 img {
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: cover;
    flex-shrink: 0;
    display: block; /* Remove inline gap */
}

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

/* --- 8. Premium Sport Display (V33 - Crossfade) --- */
.sport-premium-display {
    height: 400px;
    flex: 1.2;
    background: #000;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.sport-premium-display img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Premium full fill */
    opacity: 0;
    animation: crossfadeSport 24s infinite;
}

/* Staggered Animations for 6 images (4s each) */
.sport-premium-display img:nth-child(1) { animation-delay: 0s; }
.sport-premium-display img:nth-child(2) { animation-delay: 4s; }
.sport-premium-display img:nth-child(3) { animation-delay: 8s; }
.sport-premium-display img:nth-child(4) { animation-delay: 12s; }
.sport-premium-display img:nth-child(5) { animation-delay: 16s; }
.sport-premium-display img:nth-child(6) { animation-delay: 20s; }

@keyframes crossfadeSport {
    0% { opacity: 0; }
    5% { opacity: 1; }  /* Fade in */
    20% { opacity: 1; } /* Stay visible */
    25% { opacity: 0; } /* Fade out */
    100% { opacity: 0; }
}
/* --- 1. Infinite Movie & Series Scroller (Netflix Style) --- */
.movie-scroller-section {
    padding: 80px 0;
    background: #000;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.movie-scroller-header h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.movie-scroller-header p {
    color: var(--text-muted);
}

.scroller-container {
    position: relative;
    width: 100%;
    display: flex;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.scroller-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollMovies 40s linear infinite;
}

.scroller-track:hover {
    animation-play-state: paused;
}

.movie-poster {
    width: 200px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.movie-poster:hover {
    transform: scale(1.1);
    z-index: 10;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8);
    border: 2px solid var(--primary-color);
}

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

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

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

    /* Ensure track is doubled in HTML */
}

/* --- 2. Premium Channel Ticker (Logo Style) --- */
.channel-ticker {
    background: #0a0a0a;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ticker-item {
    font-size: 1.8rem;
    font-weight: 900;
    color: #444;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
    transition: 0.3s;
}

.ticker-item:hover {
    opacity: 1;
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.ticker-item i {
    color: var(--primary-color);
}


/* --- 3. Trustpilot Style Reviews --- */
.reviews-section {
    padding: 100px 0;
    background: #050505;
}

.trustpilot-header {
    text-align: center;
    margin-bottom: 60px;
}

.trust-score {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.trust-star {
    color: #00b67a;
    /* Trustpilot Green */
    font-size: 2rem;
}

.trust-text {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 500;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: #111;
    padding: 30px;
    border-radius: 4px;
    /* Trustpilot is boxy */
    border-top: 3px solid #00b67a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.review-stars {
    color: #00b67a;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.review-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: block;
}

.review-body {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-author {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* --- 4. Premium Sport Showcase (Split Layout) --- */
.sport-showcase-section {
    padding: 100px 0;
    background: #000;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* Separator */
}

/* Background Title "POPULAR SPORTS CHANNELS" faint */
.sport-bg-text {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.03);
    /* Very faint */
    font-size: 8rem;
    font-weight: 900;
    white-space: nowrap;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 0;
}

.sport-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.sport-header {
    margin-bottom: 60px;
}

.sport-header h3 {
    color: #3b82f6;
    /* Blue faint text above */
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.sport-header h2 {
    font-size: 3rem;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
}

.sport-header h2 span {
    border: 2px solid #fff;
    border-radius: 50%;
    padding: 5px 25px;
    /* Circle effect */
    display: inline-block;
}

.sport-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.sport-posters {
    display: flex;
    gap: 20px;
    flex: 1;
}

.sport-poster-card {
    height: 350px;
    flex: 1;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sport-poster-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.sport-poster-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, #000 0%, transparent 100%);
}

.sport-poster-logo {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    z-index: 2;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.8));
}

/* Right Side: Channels Grid + Text */
.sport-info-side {
    flex: 1;
    text-align: left;
}

.channel-logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 logos per row */
    gap: 15px;
    margin-bottom: 30px;
}

.channel-logo-item {
    background: #111;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s;
}

.channel-logo-item:hover {
    background: #222;
    border-color: var(--primary-color);
}

.sport-desc {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Blue Button */
.btn-channels {
    background: #2563eb;
    /* Royal Blue */
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-channels:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

/* Mobile Optimizations */
@media (max-width: 992px) {
    .sport-grid {
        flex-direction: column;
    }

    .sport-bg-text {
        font-size: 4rem;
        top: 20px;
    }

    .sport-posters {
        width: 100%;
    }

    .sport-info-side {
        width: 100%;
        text-align: center;
    }

    .channel-logo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 576px) {
    .sport-posters {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 20px;
    }

    /* Horizontal scroll on mobile */
    .sport-poster-card {
        min-width: 250px;
        height: 350px;
    }

    .channel-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    /* Movie Scroller Mobile: Show 2-3 items? No, scrolling is fine, maybe resize images */
    .movie-poster {
        width: 140px;
        height: 210px;
    }

    /* Review Grid Mobile */
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* --- 5. New Sport Hero Card (Single Big Focus) --- */
.sport-hero-card {
    height: 400px;
    flex: 1.2;
    /* Bigger than info side */
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.sport-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.6) 80%, transparent 100%);
}

.sport-overlay-content h3 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 800;
}

.live-badge {
    background: #E50914;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

.sport-features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.sport-features-list li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sport-features-list li i {
    color: var(--primary-color);
}

/* --- 6. Sport Hero Slider (Left Side) --- */
.sport-hero-card {
    /* Existing properties override: remove background-image */
    background-image: none !important;
    background: #000;
    position: relative;
    overflow: hidden;
    /* Mask the scrolling */
}

.sport-slider-track {
    display: flex;
    height: 100%;
    width: max-content;
    /* Allow children to expand */
    animation: scrollSportHero 20s linear infinite;
}

.sport-slider-track img {
    height: 100%;
    width: auto;
    max-width: none;
    /* Crucial: prevent images from shrinking */
    object-fit: cover;
    flex-shrink: 0;
    /* Removed min-width: 100% and width: 100% which caused the 'broken' stretching */
}

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

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

    /* Standard infinite scroll for duplicated list */
}

/* Ensure overlay stays on top */
.sport-overlay-content {
    z-index: 5;
    pointer-events: none;
    /* Let clicks pass through if needed */
}
/* --- 6. Sport Hero Slider (Left Side) --- */
.sport-hero-card {
    background-image: none !important; 
    background: #000;
    position: relative;
    overflow: hidden;
}

.sport-slider-track {
    display: flex;
    height: 100%;
    width: max-content; 
    animation: scrollSportHero 20s linear infinite;
}

.sport-slider-track img {
    height: 100%;
    width: auto;
    max-width: none; /* Crucial: prevent images from shrinking */
    object-fit: cover;
    flex-shrink: 0;
    /* Removed min-width: 100% and width: 100% */
}

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

/* Ensure overlay stays on top */
.sport-overlay-content {
    z-index: 5;
    pointer-events: none; 
}

/* --- 7. Sport Slider (V32 - Fresh Classes) --- */
.sport-slider-wrapper {
    height: 400px;
    flex: 1.2;
    background: #000;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.sport-track-v32 {
    display: flex;
    height: 100%;
    width: max-content;
    animation: scrollSportV32 20s linear infinite;
}

.sport-track-v32 img {
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: cover;
    flex-shrink: 0;
    display: block; /* Remove inline gap */
}

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

/* --- 8. Premium Sport Display (V33 - Crossfade) --- */
.sport-premium-display {
    height: 400px;
    flex: 1.2;
    background: #000;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.sport-premium-display img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Premium full fill */
    opacity: 0;
    animation: crossfadeSport 24s infinite;
}

/* Staggered Animations for 6 images (4s each) */
.sport-premium-display img:nth-child(1) { animation-delay: 0s; }
.sport-premium-display img:nth-child(2) { animation-delay: 4s; }
.sport-premium-display img:nth-child(3) { animation-delay: 8s; }
.sport-premium-display img:nth-child(4) { animation-delay: 12s; }
.sport-premium-display img:nth-child(5) { animation-delay: 16s; }
.sport-premium-display img:nth-child(6) { animation-delay: 20s; }

@keyframes crossfadeSport {
    0% { opacity: 0; }
    5% { opacity: 1; }  /* Fade in */
    20% { opacity: 1; } /* Stay visible */
    25% { opacity: 0; } /* Fade out */
    100% { opacity: 0; }
}

/* --- 9. Ultimate Sport Redesign (V34) --- */
.sport-showcase-v34 {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: #0a0a0a;
    border-radius: 24px; /* More rounded premium look */
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    margin-top: 20px;
    border: 1px solid #222;
}

/* Left: The Cinematic Slider (Bigger, Wider) */
.sport-visual-area-v34 {
    flex: 1 1 60%; /* Takes 60% width */
    min-height: 550px; /* Much taller */
    position: relative;
    overflow: hidden;
    background: #000;
}

.sport-visual-area-v34 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: cinemaFadeV34 24s infinite;
    transform: scale(1.05); /* Slight zoom start */
}

/* Add a subtle zoom effect during fade */
@keyframes cinemaFadeV34 {
    0% { opacity: 0; transform: scale(1.05); }
    5% { opacity: 1; transform: scale(1); }
    20% { opacity: 1; transform: scale(1); }
    25% { opacity: 0; transform: scale(1.05); }
    100% { opacity: 0; transform: scale(1.05); }
}

/* Staggered delays for 6 images */
.sport-visual-area-v34 img:nth-child(1) { animation-delay: 0s; }
.sport-visual-area-v34 img:nth-child(2) { animation-delay: 4s; }
.sport-visual-area-v34 img:nth-child(3) { animation-delay: 8s; }
.sport-visual-area-v34 img:nth-child(4) { animation-delay: 12s; }
.sport-visual-area-v34 img:nth-child(5) { animation-delay: 16s; }
.sport-visual-area-v34 img:nth-child(6) { animation-delay: 20s; }

/* Right: The Premium Info Panel */
.sport-info-area-v34 {
    flex: 1 1 40%; /* Takes 40% width */
    background: linear-gradient(145deg, #111, #0a0a0a);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid #222;
}

.sport-info-area-v34 h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.channel-grid-v34 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.channel-pill-v34 {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #ddd;
    transition: all 0.3s ease;
}

.channel-pill-v34:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}

.feature-list-v34 {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.feature-list-v34 li {
    margin-bottom: 12px;
    color: #bbb;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-list-v34 li i {
    color: #00ff88; /* Premium green accent */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sport-visual-area-v34 {
        flex: 1 1 100%;
        min-height: 300px;
    }
    .sport-info-area-v34 {
        flex: 1 1 100%;
        padding: 25px;
    }
}
/* --- 1. Infinite Movie & Series Scroller (Netflix Style) --- */
.movie-scroller-section {
    padding: 80px 0;
    background: #000;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.movie-scroller-header h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.movie-scroller-header p {
    color: var(--text-muted);
}

.scroller-container {
    position: relative;
    width: 100%;
    display: flex;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.scroller-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollMovies 40s linear infinite;
}

.scroller-track:hover {
    animation-play-state: paused;
}

.movie-poster {
    width: 200px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.movie-poster:hover {
    transform: scale(1.1);
    z-index: 10;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8);
    border: 2px solid var(--primary-color);
}

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

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

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

    /* Ensure track is doubled in HTML */
}

/* --- 2. Premium Channel Ticker (Logo Style) --- */
.channel-ticker {
    background: #0a0a0a;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ticker-item {
    font-size: 1.8rem;
    font-weight: 900;
    color: #444;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
    transition: 0.3s;
}

.ticker-item:hover {
    opacity: 1;
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.ticker-item i {
    color: var(--primary-color);
}


/* --- 3. Trustpilot Style Reviews --- */
.reviews-section {
    padding: 100px 0;
    background: #050505;
}

.trustpilot-header {
    text-align: center;
    margin-bottom: 60px;
}

.trust-score {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.trust-star {
    color: #00b67a;
    /* Trustpilot Green */
    font-size: 2rem;
}

.trust-text {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 500;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: #111;
    padding: 30px;
    border-radius: 4px;
    /* Trustpilot is boxy */
    border-top: 3px solid #00b67a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.review-stars {
    color: #00b67a;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.review-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: block;
}

.review-body {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-author {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* --- 4. Premium Sport Showcase (Split Layout) --- */
.sport-showcase-section {
    padding: 100px 0;
    background: #000;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* Separator */
}

/* Background Title "POPULAR SPORTS CHANNELS" faint */
.sport-bg-text {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.03);
    /* Very faint */
    font-size: 8rem;
    font-weight: 900;
    white-space: nowrap;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 0;
}

.sport-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.sport-header {
    margin-bottom: 60px;
}

.sport-header h3 {
    color: #3b82f6;
    /* Blue faint text above */
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.sport-header h2 {
    font-size: 3rem;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
}

.sport-header h2 span {
    border: 2px solid #fff;
    border-radius: 50%;
    padding: 5px 25px;
    /* Circle effect */
    display: inline-block;
}

.sport-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.sport-posters {
    display: flex;
    gap: 20px;
    flex: 1;
}

.sport-poster-card {
    height: 350px;
    flex: 1;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sport-poster-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.sport-poster-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, #000 0%, transparent 100%);
}

.sport-poster-logo {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    z-index: 2;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.8));
}

/* Right Side: Channels Grid + Text */
.sport-info-side {
    flex: 1;
    text-align: left;
}

.channel-logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 logos per row */
    gap: 15px;
    margin-bottom: 30px;
}

.channel-logo-item {
    background: #111;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s;
}

.channel-logo-item:hover {
    background: #222;
    border-color: var(--primary-color);
}

.sport-desc {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Blue Button */
.btn-channels {
    background: #2563eb;
    /* Royal Blue */
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-channels:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

/* Mobile Optimizations */
@media (max-width: 992px) {
    .sport-grid {
        flex-direction: column;
    }

    .sport-bg-text {
        font-size: 4rem;
        top: 20px;
    }

    .sport-posters {
        width: 100%;
    }

    .sport-info-side {
        width: 100%;
        text-align: center;
    }

    .channel-logo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 576px) {
    .sport-posters {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 20px;
    }

    /* Horizontal scroll on mobile */
    .sport-poster-card {
        min-width: 250px;
        height: 350px;
    }

    .channel-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    /* Movie Scroller Mobile: Show 2-3 items? No, scrolling is fine, maybe resize images */
    .movie-poster {
        width: 140px;
        height: 210px;
    }

    /* Review Grid Mobile */
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* --- 5. New Sport Hero Card (Single Big Focus) --- */
.sport-hero-card {
    height: 400px;
    flex: 1.2;
    /* Bigger than info side */
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.sport-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.6) 80%, transparent 100%);
}

.sport-overlay-content h3 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 800;
}

.live-badge {
    background: #E50914;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

.sport-features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.sport-features-list li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sport-features-list li i {
    color: var(--primary-color);
}

/* --- 6. Sport Hero Slider (Left Side) --- */
.sport-hero-card {
    /* Existing properties override: remove background-image */
    background-image: none !important;
    background: #000;
    position: relative;
    overflow: hidden;
    /* Mask the scrolling */
}

.sport-slider-track {
    display: flex;
    height: 100%;
    width: max-content;
    /* Allow children to expand */
    animation: scrollSportHero 20s linear infinite;
}

.sport-slider-track img {
    height: 100%;
    width: auto;
    max-width: none;
    /* Crucial: prevent images from shrinking */
    object-fit: cover;
    flex-shrink: 0;
    /* Removed min-width: 100% and width: 100% which caused the 'broken' stretching */
}

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

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

    /* Standard infinite scroll for duplicated list */
}

/* Ensure overlay stays on top */
.sport-overlay-content {
    z-index: 5;
    pointer-events: none;
    /* Let clicks pass through if needed */
}
/* --- 6. Sport Hero Slider (Left Side) --- */
.sport-hero-card {
    background-image: none !important; 
    background: #000;
    position: relative;
    overflow: hidden;
}

.sport-slider-track {
    display: flex;
    height: 100%;
    width: max-content; 
    animation: scrollSportHero 20s linear infinite;
}

.sport-slider-track img {
    height: 100%;
    width: auto;
    max-width: none; /* Crucial: prevent images from shrinking */
    object-fit: cover;
    flex-shrink: 0;
    /* Removed min-width: 100% and width: 100% */
}

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

/* Ensure overlay stays on top */
.sport-overlay-content {
    z-index: 5;
    pointer-events: none; 
}

/* --- 7. Sport Slider (V32 - Fresh Classes) --- */
.sport-slider-wrapper {
    height: 400px;
    flex: 1.2;
    background: #000;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.sport-track-v32 {
    display: flex;
    height: 100%;
    width: max-content;
    animation: scrollSportV32 20s linear infinite;
}

.sport-track-v32 img {
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: cover;
    flex-shrink: 0;
    display: block; /* Remove inline gap */
}

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

/* --- 8. Premium Sport Display (V33 - Crossfade) --- */
.sport-premium-display {
    height: 400px;
    flex: 1.2;
    background: #000;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.sport-premium-display img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Premium full fill */
    opacity: 0;
    animation: crossfadeSport 24s infinite;
}

/* Staggered Animations for 6 images (4s each) */
.sport-premium-display img:nth-child(1) { animation-delay: 0s; }
.sport-premium-display img:nth-child(2) { animation-delay: 4s; }
.sport-premium-display img:nth-child(3) { animation-delay: 8s; }
.sport-premium-display img:nth-child(4) { animation-delay: 12s; }
.sport-premium-display img:nth-child(5) { animation-delay: 16s; }
.sport-premium-display img:nth-child(6) { animation-delay: 20s; }

@keyframes crossfadeSport {
    0% { opacity: 0; }
    5% { opacity: 1; }  /* Fade in */
    20% { opacity: 1; } /* Stay visible */
    25% { opacity: 0; } /* Fade out */
    100% { opacity: 0; }
}

/* --- 9. Ultimate Sport Redesign (V34) --- */
.sport-showcase-v34 {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: #0a0a0a;
    border-radius: 24px; /* More rounded premium look */
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    margin-top: 20px;
    border: 1px solid #222;
}

/* Left: The Cinematic Slider (Bigger, Wider) */
.sport-visual-area-v34 {
    flex: 1 1 60%; /* Takes 60% width */
    min-height: 550px; /* Much taller */
    position: relative;
    overflow: hidden;
    background: #000;
}

.sport-visual-area-v34 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: cinemaFadeV34 24s infinite;
    transform: scale(1.05); /* Slight zoom start */
}

/* Add a subtle zoom effect during fade */
@keyframes cinemaFadeV34 {
    0% { opacity: 0; transform: scale(1.05); }
    5% { opacity: 1; transform: scale(1); }
    20% { opacity: 1; transform: scale(1); }
    25% { opacity: 0; transform: scale(1.05); }
    100% { opacity: 0; transform: scale(1.05); }
}

/* Staggered delays for 6 images */
.sport-visual-area-v34 img:nth-child(1) { animation-delay: 0s; }
.sport-visual-area-v34 img:nth-child(2) { animation-delay: 4s; }
.sport-visual-area-v34 img:nth-child(3) { animation-delay: 8s; }
.sport-visual-area-v34 img:nth-child(4) { animation-delay: 12s; }
.sport-visual-area-v34 img:nth-child(5) { animation-delay: 16s; }
.sport-visual-area-v34 img:nth-child(6) { animation-delay: 20s; }

/* Right: The Premium Info Panel */
.sport-info-area-v34 {
    flex: 1 1 40%; /* Takes 40% width */
    background: linear-gradient(145deg, #111, #0a0a0a);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid #222;
}

.sport-info-area-v34 h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.channel-grid-v34 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.channel-pill-v34 {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #ddd;
    transition: all 0.3s ease;
}

.channel-pill-v34:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}

.feature-list-v34 {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.feature-list-v34 li {
    margin-bottom: 12px;
    color: #bbb;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-list-v34 li i {
    color: #00ff88; /* Premium green accent */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sport-visual-area-v34 {
        flex: 1 1 100%;
        min-height: 300px;
    }
    .sport-info-area-v34 {
        flex: 1 1 100%;
        padding: 25px;
    }
}

/* --- 10. Fix Image Cropping (V36) --- */
.sport-visual-area-v34 img {
    object-fit: contain !important; /* Force full image visibility */
    background: #000; /* Black bars for any aspect ratio mismatch */
    transform: none !important; /* Disable zoom to prevent cutting edges */
    animation: simpleFadeV36 24s infinite; /* Simpler fade without zoom */
}

/* Updated Fade Animation (No Zoom) */
@keyframes simpleFadeV36 {
    0% { opacity: 0; }
    5% { opacity: 1; }
    20% { opacity: 1; }
    25% { opacity: 0; }
    100% { opacity: 0; }
}

/* Ensure container allows full height visibility */
.sport-visual-area-v34 {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}
/* --- 1. Infinite Movie & Series Scroller (Netflix Style) --- */
.movie-scroller-section {
    padding: 80px 0;
    background: #000;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.movie-scroller-header h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.movie-scroller-header p {
    color: var(--text-muted);
}

.scroller-container {
    position: relative;
    width: 100%;
    display: flex;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.scroller-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollMovies 40s linear infinite;
}

.scroller-track:hover {
    animation-play-state: paused;
}

.movie-poster {
    width: 200px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.movie-poster:hover {
    transform: scale(1.1);
    z-index: 10;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8);
    border: 2px solid var(--primary-color);
}

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

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

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

    /* Ensure track is doubled in HTML */
}

/* --- 2. Premium Channel Ticker (Logo Style) --- */
.channel-ticker {
    background: #0a0a0a;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ticker-item {
    font-size: 1.8rem;
    font-weight: 900;
    color: #444;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
    transition: 0.3s;
}

.ticker-item:hover {
    opacity: 1;
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.ticker-item i {
    color: var(--primary-color);
}


/* --- 3. Trustpilot Style Reviews --- */
.reviews-section {
    padding: 100px 0;
    background: #050505;
}

.trustpilot-header {
    text-align: center;
    margin-bottom: 60px;
}

.trust-score {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.trust-star {
    color: #00b67a;
    /* Trustpilot Green */
    font-size: 2rem;
}

.trust-text {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 500;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: #111;
    padding: 30px;
    border-radius: 4px;
    /* Trustpilot is boxy */
    border-top: 3px solid #00b67a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.review-stars {
    color: #00b67a;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.review-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: block;
}

.review-body {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-author {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* --- 4. Premium Sport Showcase (Split Layout) --- */
.sport-showcase-section {
    padding: 100px 0;
    background: #000;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* Separator */
}

/* Background Title "POPULAR SPORTS CHANNELS" faint */
.sport-bg-text {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.03);
    /* Very faint */
    font-size: 8rem;
    font-weight: 900;
    white-space: nowrap;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 0;
}

.sport-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.sport-header {
    margin-bottom: 60px;
}

.sport-header h3 {
    color: #3b82f6;
    /* Blue faint text above */
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.sport-header h2 {
    font-size: 3rem;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
}

.sport-header h2 span {
    border: 2px solid #fff;
    border-radius: 50%;
    padding: 5px 25px;
    /* Circle effect */
    display: inline-block;
}

.sport-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.sport-posters {
    display: flex;
    gap: 20px;
    flex: 1;
}

.sport-poster-card {
    height: 350px;
    flex: 1;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sport-poster-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.sport-poster-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, #000 0%, transparent 100%);
}

.sport-poster-logo {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    z-index: 2;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.8));
}

/* Right Side: Channels Grid + Text */
.sport-info-side {
    flex: 1;
    text-align: left;
}

.channel-logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 logos per row */
    gap: 15px;
    margin-bottom: 30px;
}

.channel-logo-item {
    background: #111;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s;
}

.channel-logo-item:hover {
    background: #222;
    border-color: var(--primary-color);
}

.sport-desc {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Blue Button */
.btn-channels {
    background: #2563eb;
    /* Royal Blue */
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-channels:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

/* Mobile Optimizations */
@media (max-width: 992px) {
    .sport-grid {
        flex-direction: column;
    }

    .sport-bg-text {
        font-size: 4rem;
        top: 20px;
    }

    .sport-posters {
        width: 100%;
    }

    .sport-info-side {
        width: 100%;
        text-align: center;
    }

    .channel-logo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 576px) {
    .sport-posters {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 20px;
    }

    /* Horizontal scroll on mobile */
    .sport-poster-card {
        min-width: 250px;
        height: 350px;
    }

    .channel-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    /* Movie Scroller Mobile: Show 2-3 items? No, scrolling is fine, maybe resize images */
    .movie-poster {
        width: 140px;
        height: 210px;
    }

    /* Review Grid Mobile */
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* --- 5. New Sport Hero Card (Single Big Focus) --- */
.sport-hero-card {
    height: 400px;
    flex: 1.2;
    /* Bigger than info side */
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.sport-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.6) 80%, transparent 100%);
}

.sport-overlay-content h3 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 800;
}

.live-badge {
    background: #E50914;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

.sport-features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.sport-features-list li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sport-features-list li i {
    color: var(--primary-color);
}

/* --- 6. Sport Hero Slider (Left Side) --- */
.sport-hero-card {
    /* Existing properties override: remove background-image */
    background-image: none !important;
    background: #000;
    position: relative;
    overflow: hidden;
    /* Mask the scrolling */
}

.sport-slider-track {
    display: flex;
    height: 100%;
    width: max-content;
    /* Allow children to expand */
    animation: scrollSportHero 20s linear infinite;
}

.sport-slider-track img {
    height: 100%;
    width: auto;
    max-width: none;
    /* Crucial: prevent images from shrinking */
    object-fit: cover;
    flex-shrink: 0;
    /* Removed min-width: 100% and width: 100% which caused the 'broken' stretching */
}

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

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

    /* Standard infinite scroll for duplicated list */
}

/* Ensure overlay stays on top */
.sport-overlay-content {
    z-index: 5;
    pointer-events: none;
    /* Let clicks pass through if needed */
}
/* --- 6. Sport Hero Slider (Left Side) --- */
.sport-hero-card {
    background-image: none !important; 
    background: #000;
    position: relative;
    overflow: hidden;
}

.sport-slider-track {
    display: flex;
    height: 100%;
    width: max-content; 
    animation: scrollSportHero 20s linear infinite;
}

.sport-slider-track img {
    height: 100%;
    width: auto;
    max-width: none; /* Crucial: prevent images from shrinking */
    object-fit: cover;
    flex-shrink: 0;
    /* Removed min-width: 100% and width: 100% */
}

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

/* Ensure overlay stays on top */
.sport-overlay-content {
    z-index: 5;
    pointer-events: none; 
}

/* --- 7. Sport Slider (V32 - Fresh Classes) --- */
.sport-slider-wrapper {
    height: 400px;
    flex: 1.2;
    background: #000;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.sport-track-v32 {
    display: flex;
    height: 100%;
    width: max-content;
    animation: scrollSportV32 20s linear infinite;
}

.sport-track-v32 img {
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: cover;
    flex-shrink: 0;
    display: block; /* Remove inline gap */
}

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

/* --- 8. Premium Sport Display (V33 - Crossfade) --- */
.sport-premium-display {
    height: 400px;
    flex: 1.2;
    background: #000;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.sport-premium-display img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Premium full fill */
    opacity: 0;
    animation: crossfadeSport 24s infinite;
}

/* Staggered Animations for 6 images (4s each) */
.sport-premium-display img:nth-child(1) { animation-delay: 0s; }
.sport-premium-display img:nth-child(2) { animation-delay: 4s; }
.sport-premium-display img:nth-child(3) { animation-delay: 8s; }
.sport-premium-display img:nth-child(4) { animation-delay: 12s; }
.sport-premium-display img:nth-child(5) { animation-delay: 16s; }
.sport-premium-display img:nth-child(6) { animation-delay: 20s; }

@keyframes crossfadeSport {
    0% { opacity: 0; }
    5% { opacity: 1; }  /* Fade in */
    20% { opacity: 1; } /* Stay visible */
    25% { opacity: 0; } /* Fade out */
    100% { opacity: 0; }
}

/* --- 9. Ultimate Sport Redesign (V34) --- */
.sport-showcase-v34 {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: #0a0a0a;
    border-radius: 24px; /* More rounded premium look */
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    margin-top: 20px;
    border: 1px solid #222;
}

/* Left: The Cinematic Slider (Bigger, Wider) */
.sport-visual-area-v34 {
    flex: 1 1 60%; /* Takes 60% width */
    min-height: 550px; /* Much taller */
    position: relative;
    overflow: hidden;
    background: #000;
}

.sport-visual-area-v34 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: cinemaFadeV34 24s infinite;
    transform: scale(1.05); /* Slight zoom start */
}

/* Add a subtle zoom effect during fade */
@keyframes cinemaFadeV34 {
    0% { opacity: 0; transform: scale(1.05); }
    5% { opacity: 1; transform: scale(1); }
    20% { opacity: 1; transform: scale(1); }
    25% { opacity: 0; transform: scale(1.05); }
    100% { opacity: 0; transform: scale(1.05); }
}

/* Staggered delays for 6 images */
.sport-visual-area-v34 img:nth-child(1) { animation-delay: 0s; }
.sport-visual-area-v34 img:nth-child(2) { animation-delay: 4s; }
.sport-visual-area-v34 img:nth-child(3) { animation-delay: 8s; }
.sport-visual-area-v34 img:nth-child(4) { animation-delay: 12s; }
.sport-visual-area-v34 img:nth-child(5) { animation-delay: 16s; }
.sport-visual-area-v34 img:nth-child(6) { animation-delay: 20s; }

/* Right: The Premium Info Panel */
.sport-info-area-v34 {
    flex: 1 1 40%; /* Takes 40% width */
    background: linear-gradient(145deg, #111, #0a0a0a);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid #222;
}

.sport-info-area-v34 h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.channel-grid-v34 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.channel-pill-v34 {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #ddd;
    transition: all 0.3s ease;
}

.channel-pill-v34:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}

.feature-list-v34 {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.feature-list-v34 li {
    margin-bottom: 12px;
    color: #bbb;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-list-v34 li i {
    color: #00ff88; /* Premium green accent */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sport-visual-area-v34 {
        flex: 1 1 100%;
        min-height: 300px;
    }
    .sport-info-area-v34 {
        flex: 1 1 100%;
        padding: 25px;
    }
}

/* --- 10. Fix Image Cropping (V36) --- */
.sport-visual-area-v34 img {
    object-fit: contain !important; /* Force full image visibility */
    background: #000; /* Black bars for any aspect ratio mismatch */
    transform: none !important; /* Disable zoom to prevent cutting edges */
    animation: simpleFadeV36 24s infinite; /* Simpler fade without zoom */
}

/* Updated Fade Animation (No Zoom) */
@keyframes simpleFadeV36 {
    0% { opacity: 0; }
    5% { opacity: 1; }
    20% { opacity: 1; }
    25% { opacity: 0; }
    100% { opacity: 0; }
}

/* Ensure container allows full height visibility */
.sport-visual-area-v34 {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

/* --- 11. V37 Polish (Header Fix, Ticker, Sport Upgrade) --- */

/* A. Ticker Upgrade (Logo Cards) */
.ticker-item {
    background: rgba(255,255,255,0.08); /* Glass Card */
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    margin-right: 20px; /* Spacing between cards */
    font-size: 1.2rem; /* Adjusted for card look */
    font-weight: 800;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.ticker-item:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,255,255,0.2);
    border-color: #fff;
    text-shadow: none;
}

/* B. Sport Section Visual Polish (V37) */
.sport-showcase-v34 {
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 50px rgba(0,0,0,0.5), 0 0 20px rgba(166, 246, 46, 0.1); /* Subtle premium glow */
}

.sport-info-area-v34 {
    background: radial-gradient(circle at top right, #1a1a1a, #050505);
    backdrop-filter: blur(10px);
}

/* Channel Pills Upgrade */
.channel-pill-v34 {
    background: linear-gradient(145deg, #222, #111);
    border: 1px solid rgba(255,255,255,0.05);
    font-family: 'Montserrat', sans-serif; /* If avail, else inherit */
    color: #fff;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.channel-pill-v34:hover {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 15px var(--primary-color);
    border-color: var(--primary-color);
}

/* C. Mobile Header Fix (Banner Overlap) */
@media (max-width: 768px) {
    /* Adjust header top position to account for wrapping banner text */
    .header {
        top: 90px !important; /* Push menu down */
    }
    
    .top-banner {
        font-size: 0.75rem; /* Smaller text */
        line-height: 1.4;
        padding: 15px 10px;
    }

    body {
        padding-top: 90px;
    }
    
    /* Mobile Sport Section Tweaks */
    .sport-visual-area-v34 {
        min-height: 350px;
    }
    
    .sport-info-area-v34 {
        padding: 30px 20px;
    }
}
/* --- 1. Infinite Movie & Series Scroller (Netflix Style) --- */
.movie-scroller-section {
    padding: 80px 0;
    background: #000;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.movie-scroller-header h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.movie-scroller-header p {
    color: var(--text-muted);
}

.scroller-container {
    position: relative;
    width: 100%;
    display: flex;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.scroller-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollMovies 40s linear infinite;
}

.scroller-track:hover {
    animation-play-state: paused;
}

.movie-poster {
    width: 200px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.movie-poster:hover {
    transform: scale(1.1);
    z-index: 10;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8);
    border: 2px solid var(--primary-color);
}

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

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

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

    /* Ensure track is doubled in HTML */
}

/* --- 2. Premium Channel Ticker (Logo Style) --- */
.channel-ticker {
    background: #0a0a0a;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ticker-item {
    font-size: 1.8rem;
    font-weight: 900;
    color: #444;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
    transition: 0.3s;
}

.ticker-item:hover {
    opacity: 1;
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.ticker-item i {
    color: var(--primary-color);
}


/* --- 3. Trustpilot Style Reviews --- */
.reviews-section {
    padding: 100px 0;
    background: #050505;
}

.trustpilot-header {
    text-align: center;
    margin-bottom: 60px;
}

.trust-score {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.trust-star {
    color: #00b67a;
    /* Trustpilot Green */
    font-size: 2rem;
}

.trust-text {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 500;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: #111;
    padding: 30px;
    border-radius: 4px;
    /* Trustpilot is boxy */
    border-top: 3px solid #00b67a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.review-stars {
    color: #00b67a;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.review-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: block;
}

.review-body {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-author {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* --- 4. Premium Sport Showcase (Split Layout) --- */
.sport-showcase-section {
    padding: 100px 0;
    background: #000;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* Separator */
}

/* Background Title "POPULAR SPORTS CHANNELS" faint */
.sport-bg-text {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.03);
    /* Very faint */
    font-size: 8rem;
    font-weight: 900;
    white-space: nowrap;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 0;
}

.sport-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.sport-header {
    margin-bottom: 60px;
}

.sport-header h3 {
    color: #3b82f6;
    /* Blue faint text above */
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.sport-header h2 {
    font-size: 3rem;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
}

.sport-header h2 span {
    border: 2px solid #fff;
    border-radius: 50%;
    padding: 5px 25px;
    /* Circle effect */
    display: inline-block;
}

.sport-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.sport-posters {
    display: flex;
    gap: 20px;
    flex: 1;
}

.sport-poster-card {
    height: 350px;
    flex: 1;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sport-poster-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.sport-poster-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, #000 0%, transparent 100%);
}

.sport-poster-logo {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    z-index: 2;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.8));
}

/* Right Side: Channels Grid + Text */
.sport-info-side {
    flex: 1;
    text-align: left;
}

.channel-logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 logos per row */
    gap: 15px;
    margin-bottom: 30px;
}

.channel-logo-item {
    background: #111;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s;
}

.channel-logo-item:hover {
    background: #222;
    border-color: var(--primary-color);
}

.sport-desc {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Blue Button */
.btn-channels {
    background: #2563eb;
    /* Royal Blue */
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-channels:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

/* Mobile Optimizations */
@media (max-width: 992px) {
    .sport-grid {
        flex-direction: column;
    }

    .sport-bg-text {
        font-size: 4rem;
        top: 20px;
    }

    .sport-posters {
        width: 100%;
    }

    .sport-info-side {
        width: 100%;
        text-align: center;
    }

    .channel-logo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 576px) {
    .sport-posters {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 20px;
    }

    /* Horizontal scroll on mobile */
    .sport-poster-card {
        min-width: 250px;
        height: 350px;
    }

    .channel-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    /* Movie Scroller Mobile: Show 2-3 items? No, scrolling is fine, maybe resize images */
    .movie-poster {
        width: 140px;
        height: 210px;
    }

    /* Review Grid Mobile */
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* --- 5. New Sport Hero Card (Single Big Focus) --- */
.sport-hero-card {
    height: 400px;
    flex: 1.2;
    /* Bigger than info side */
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.sport-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.6) 80%, transparent 100%);
}

.sport-overlay-content h3 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 800;
}

.live-badge {
    background: #E50914;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

.sport-features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.sport-features-list li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sport-features-list li i {
    color: var(--primary-color);
}

/* --- 6. Sport Hero Slider (Left Side) --- */
.sport-hero-card {
    /* Existing properties override: remove background-image */
    background-image: none !important;
    background: #000;
    position: relative;
    overflow: hidden;
    /* Mask the scrolling */
}

.sport-slider-track {
    display: flex;
    height: 100%;
    width: max-content;
    /* Allow children to expand */
    animation: scrollSportHero 20s linear infinite;
}

.sport-slider-track img {
    height: 100%;
    width: auto;
    max-width: none;
    /* Crucial: prevent images from shrinking */
    object-fit: cover;
    flex-shrink: 0;
    /* Removed min-width: 100% and width: 100% which caused the 'broken' stretching */
}

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

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

    /* Standard infinite scroll for duplicated list */
}

/* Ensure overlay stays on top */
.sport-overlay-content {
    z-index: 5;
    pointer-events: none;
    /* Let clicks pass through if needed */
}
/* --- 6. Sport Hero Slider (Left Side) --- */
.sport-hero-card {
    background-image: none !important; 
    background: #000;
    position: relative;
    overflow: hidden;
}

.sport-slider-track {
    display: flex;
    height: 100%;
    width: max-content; 
    animation: scrollSportHero 20s linear infinite;
}

.sport-slider-track img {
    height: 100%;
    width: auto;
    max-width: none; /* Crucial: prevent images from shrinking */
    object-fit: cover;
    flex-shrink: 0;
    /* Removed min-width: 100% and width: 100% */
}

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

/* Ensure overlay stays on top */
.sport-overlay-content {
    z-index: 5;
    pointer-events: none; 
}

/* --- 7. Sport Slider (V32 - Fresh Classes) --- */
.sport-slider-wrapper {
    height: 400px;
    flex: 1.2;
    background: #000;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.sport-track-v32 {
    display: flex;
    height: 100%;
    width: max-content;
    animation: scrollSportV32 20s linear infinite;
}

.sport-track-v32 img {
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: cover;
    flex-shrink: 0;
    display: block; /* Remove inline gap */
}

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

/* --- 8. Premium Sport Display (V33 - Crossfade) --- */
.sport-premium-display {
    height: 400px;
    flex: 1.2;
    background: #000;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.sport-premium-display img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Premium full fill */
    opacity: 0;
    animation: crossfadeSport 24s infinite;
}

/* Staggered Animations for 6 images (4s each) */
.sport-premium-display img:nth-child(1) { animation-delay: 0s; }
.sport-premium-display img:nth-child(2) { animation-delay: 4s; }
.sport-premium-display img:nth-child(3) { animation-delay: 8s; }
.sport-premium-display img:nth-child(4) { animation-delay: 12s; }
.sport-premium-display img:nth-child(5) { animation-delay: 16s; }
.sport-premium-display img:nth-child(6) { animation-delay: 20s; }

@keyframes crossfadeSport {
    0% { opacity: 0; }
    5% { opacity: 1; }  /* Fade in */
    20% { opacity: 1; } /* Stay visible */
    25% { opacity: 0; } /* Fade out */
    100% { opacity: 0; }
}

/* --- 9. Ultimate Sport Redesign (V34) --- */
.sport-showcase-v34 {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: #0a0a0a;
    border-radius: 24px; /* More rounded premium look */
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    margin-top: 20px;
    border: 1px solid #222;
}

/* Left: The Cinematic Slider (Bigger, Wider) */
.sport-visual-area-v34 {
    flex: 1 1 60%; /* Takes 60% width */
    min-height: 550px; /* Much taller */
    position: relative;
    overflow: hidden;
    background: #000;
}

.sport-visual-area-v34 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: cinemaFadeV34 24s infinite;
    transform: scale(1.05); /* Slight zoom start */
}

/* Add a subtle zoom effect during fade */
@keyframes cinemaFadeV34 {
    0% { opacity: 0; transform: scale(1.05); }
    5% { opacity: 1; transform: scale(1); }
    20% { opacity: 1; transform: scale(1); }
    25% { opacity: 0; transform: scale(1.05); }
    100% { opacity: 0; transform: scale(1.05); }
}

/* Staggered delays for 6 images */
.sport-visual-area-v34 img:nth-child(1) { animation-delay: 0s; }
.sport-visual-area-v34 img:nth-child(2) { animation-delay: 4s; }
.sport-visual-area-v34 img:nth-child(3) { animation-delay: 8s; }
.sport-visual-area-v34 img:nth-child(4) { animation-delay: 12s; }
.sport-visual-area-v34 img:nth-child(5) { animation-delay: 16s; }
.sport-visual-area-v34 img:nth-child(6) { animation-delay: 20s; }

/* Right: The Premium Info Panel */
.sport-info-area-v34 {
    flex: 1 1 40%; /* Takes 40% width */
    background: linear-gradient(145deg, #111, #0a0a0a);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid #222;
}

.sport-info-area-v34 h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.channel-grid-v34 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.channel-pill-v34 {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #ddd;
    transition: all 0.3s ease;
}

.channel-pill-v34:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}

.feature-list-v34 {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.feature-list-v34 li {
    margin-bottom: 12px;
    color: #bbb;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-list-v34 li i {
    color: #00ff88; /* Premium green accent */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sport-visual-area-v34 {
        flex: 1 1 100%;
        min-height: 300px;
    }
    .sport-info-area-v34 {
        flex: 1 1 100%;
        padding: 25px;
    }
}

/* --- 10. Fix Image Cropping (V36) --- */
.sport-visual-area-v34 img {
    object-fit: contain !important; /* Force full image visibility */
    background: #000; /* Black bars for any aspect ratio mismatch */
    transform: none !important; /* Disable zoom to prevent cutting edges */
    animation: simpleFadeV36 24s infinite; /* Simpler fade without zoom */
}

/* Updated Fade Animation (No Zoom) */
@keyframes simpleFadeV36 {
    0% { opacity: 0; }
    5% { opacity: 1; }
    20% { opacity: 1; }
    25% { opacity: 0; }
    100% { opacity: 0; }
}

/* Ensure container allows full height visibility */
.sport-visual-area-v34 {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

/* --- 11. V37 Polish (Header Fix, Ticker, Sport Upgrade) --- */

/* A. Ticker Upgrade (Logo Cards) */
.ticker-item {
    background: rgba(255,255,255,0.08); /* Glass Card */
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    margin-right: 20px; /* Spacing between cards */
    font-size: 1.2rem; /* Adjusted for card look */
    font-weight: 800;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.ticker-item:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,255,255,0.2);
    border-color: #fff;
    text-shadow: none;
}

/* B. Sport Section Visual Polish (V37) */
.sport-showcase-v34 {
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 50px rgba(0,0,0,0.5), 0 0 20px rgba(166, 246, 46, 0.1); /* Subtle premium glow */
}

.sport-info-area-v34 {
    background: radial-gradient(circle at top right, #1a1a1a, #050505);
    backdrop-filter: blur(10px);
}

/* Channel Pills Upgrade */
.channel-pill-v34 {
    background: linear-gradient(145deg, #222, #111);
    border: 1px solid rgba(255,255,255,0.05);
    font-family: 'Montserrat', sans-serif; /* If avail, else inherit */
    color: #fff;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.channel-pill-v34:hover {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 15px var(--primary-color);
    border-color: var(--primary-color);
}

/* C. Mobile Header Fix (Banner Overlap) */
@media (max-width: 768px) {
    /* Adjust header top position to account for wrapping banner text */
    .header {
        top: 90px !important; /* Push menu down */
    }
    
    .top-banner {
        font-size: 0.75rem; /* Smaller text */
        line-height: 1.4;
        padding: 15px 10px;
    }

    body {
        padding-top: 90px;
    }
    
    /* Mobile Sport Section Tweaks */
    .sport-visual-area-v34 {
        min-height: 350px;
    }
    
    .sport-info-area-v34 {
        padding: 30px 20px;
    }
}

/* --- 12. V38 "The Arena" Sport Redesign (User Request) --- */

/* Wrapper */
.sport-arena-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    /* Removed the 'Background Text' from here */
}

.sport-arena-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Image takes more space */
    background: #080808;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.9);
    position: relative;
}

/* Premium Glow Effect behind card */
.sport-arena-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(166, 246, 46, 0.05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

/* Left: The Visual (UFC Image) */
.arena-visual {
    position: relative;
    height: 600px;
    z-index: 1;
    overflow: hidden;
}

.arena-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Premium Mask to blend image into the dark card */
    mask-image: linear-gradient(to right, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 80%, transparent 100%);
    transition: transform 0.5s ease;
}

.sport-arena-card:hover .arena-visual img {
    transform: scale(1.03);
}

/* Right: The Premium Info */
.arena-info {
    z-index: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(to left, #050505 0%, #0a0a0a 100%);
}

.arena-tag {
    display: inline-block;
    background: var(--primary-color);
    color: #000;
    padding: 6px 14px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    width: fit-content;
    box-shadow: 0 0 15px rgba(166, 246, 46, 0.4);
}

.arena-title {
    font-size: 3rem;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 800;
    text-transform: uppercase;
}

.arena-title span {
    color: transparent;
    -webkit-text-stroke: 1px #fff; 
}

.arena-desc {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 40px;
    max-width: 450px;
}

/* Feature Grid (Modern) */
.arena-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.arena-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ccc;
    font-weight: 500;
}

.arena-feature-item i {
    color: var(--primary-color); /* Neon Green, NO BLUE */
    font-size: 1.2rem;
}

/* Button & Partners */
.arena-actions {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.btn-arena {
    background: #fff;
    color: #000;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    transition: 0.3s;
}

.btn-arena:hover {
    background: var(--primary-color);
    box-shadow: 0 0 30px rgba(166, 246, 46, 0.3);
    transform: translateY(-2px);
}

.arena-partners {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.arena-partners p {
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partner-logos {
    display: flex;
    gap: 20px;
    opacity: 0.5;
}

.partner-logos span {
    font-weight: 700;
    color: #fff;
    font-size: 1.2rem;
}

/* Mobile */
@media (max-width: 900px) {
    .sport-arena-card {
        grid-template-columns: 1fr;
    }
    .arena-visual {
        height: 300px;
    }
    .arena-visual img {
        mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
        -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    }
    .arena-info {
        padding: 30px;
    }
    .arena-title {
        font-size: 2rem;
    }
}
/* --- 1. Infinite Movie & Series Scroller (Netflix Style) --- */
.movie-scroller-section {
    padding: 80px 0;
    background: #000;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.movie-scroller-header h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.movie-scroller-header p {
    color: var(--text-muted);
}

.scroller-container {
    position: relative;
    width: 100%;
    display: flex;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.scroller-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollMovies 40s linear infinite;
}

.scroller-track:hover {
    animation-play-state: paused;
}

.movie-poster {
    width: 200px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.movie-poster:hover {
    transform: scale(1.1);
    z-index: 10;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8);
    border: 2px solid var(--primary-color);
}

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

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

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

    /* Ensure track is doubled in HTML */
}

/* --- 2. Premium Channel Ticker (Logo Style) --- */
.channel-ticker {
    background: #0a0a0a;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ticker-item {
    font-size: 1.8rem;
    font-weight: 900;
    color: #444;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
    transition: 0.3s;
}

.ticker-item:hover {
    opacity: 1;
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.ticker-item i {
    color: var(--primary-color);
}


/* --- 3. Trustpilot Style Reviews --- */
.reviews-section {
    padding: 100px 0;
    background: #050505;
}

.trustpilot-header {
    text-align: center;
    margin-bottom: 60px;
}

.trust-score {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.trust-star {
    color: #00b67a;
    /* Trustpilot Green */
    font-size: 2rem;
}

.trust-text {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 500;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: #111;
    padding: 30px;
    border-radius: 4px;
    /* Trustpilot is boxy */
    border-top: 3px solid #00b67a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.review-stars {
    color: #00b67a;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.review-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: block;
}

.review-body {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-author {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* --- 4. Premium Sport Showcase (Split Layout) --- */
.sport-showcase-section {
    padding: 100px 0;
    background: #000;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* Separator */
}

/* Background Title "POPULAR SPORTS CHANNELS" faint */
.sport-bg-text {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.03);
    /* Very faint */
    font-size: 8rem;
    font-weight: 900;
    white-space: nowrap;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 0;
}

.sport-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.sport-header {
    margin-bottom: 60px;
}

.sport-header h3 {
    color: #3b82f6;
    /* Blue faint text above */
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.sport-header h2 {
    font-size: 3rem;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
}

.sport-header h2 span {
    border: 2px solid #fff;
    border-radius: 50%;
    padding: 5px 25px;
    /* Circle effect */
    display: inline-block;
}

.sport-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.sport-posters {
    display: flex;
    gap: 20px;
    flex: 1;
}

.sport-poster-card {
    height: 350px;
    flex: 1;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sport-poster-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.sport-poster-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, #000 0%, transparent 100%);
}

.sport-poster-logo {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    z-index: 2;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.8));
}

/* Right Side: Channels Grid + Text */
.sport-info-side {
    flex: 1;
    text-align: left;
}

.channel-logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 logos per row */
    gap: 15px;
    margin-bottom: 30px;
}

.channel-logo-item {
    background: #111;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s;
}

.channel-logo-item:hover {
    background: #222;
    border-color: var(--primary-color);
}

.sport-desc {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Blue Button */
.btn-channels {
    background: #2563eb;
    /* Royal Blue */
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-channels:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

/* Mobile Optimizations */
@media (max-width: 992px) {
    .sport-grid {
        flex-direction: column;
    }

    .sport-bg-text {
        font-size: 4rem;
        top: 20px;
    }

    .sport-posters {
        width: 100%;
    }

    .sport-info-side {
        width: 100%;
        text-align: center;
    }

    .channel-logo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 576px) {
    .sport-posters {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 20px;
    }

    /* Horizontal scroll on mobile */
    .sport-poster-card {
        min-width: 250px;
        height: 350px;
    }

    .channel-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    /* Movie Scroller Mobile: Show 2-3 items? No, scrolling is fine, maybe resize images */
    .movie-poster {
        width: 140px;
        height: 210px;
    }

    /* Review Grid Mobile */
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* --- 5. New Sport Hero Card (Single Big Focus) --- */
.sport-hero-card {
    height: 400px;
    flex: 1.2;
    /* Bigger than info side */
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.sport-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.6) 80%, transparent 100%);
}

.sport-overlay-content h3 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 800;
}

.live-badge {
    background: #E50914;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

.sport-features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.sport-features-list li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sport-features-list li i {
    color: var(--primary-color);
}

/* --- 6. Sport Hero Slider (Left Side) --- */
.sport-hero-card {
    /* Existing properties override: remove background-image */
    background-image: none !important;
    background: #000;
    position: relative;
    overflow: hidden;
    /* Mask the scrolling */
}

.sport-slider-track {
    display: flex;
    height: 100%;
    width: max-content;
    /* Allow children to expand */
    animation: scrollSportHero 20s linear infinite;
}

.sport-slider-track img {
    height: 100%;
    width: auto;
    max-width: none;
    /* Crucial: prevent images from shrinking */
    object-fit: cover;
    flex-shrink: 0;
    /* Removed min-width: 100% and width: 100% which caused the 'broken' stretching */
}

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

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

    /* Standard infinite scroll for duplicated list */
}

/* Ensure overlay stays on top */
.sport-overlay-content {
    z-index: 5;
    pointer-events: none;
    /* Let clicks pass through if needed */
}
/* --- 6. Sport Hero Slider (Left Side) --- */
.sport-hero-card {
    background-image: none !important; 
    background: #000;
    position: relative;
    overflow: hidden;
}

.sport-slider-track {
    display: flex;
    height: 100%;
    width: max-content; 
    animation: scrollSportHero 20s linear infinite;
}

.sport-slider-track img {
    height: 100%;
    width: auto;
    max-width: none; /* Crucial: prevent images from shrinking */
    object-fit: cover;
    flex-shrink: 0;
    /* Removed min-width: 100% and width: 100% */
}

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

/* Ensure overlay stays on top */
.sport-overlay-content {
    z-index: 5;
    pointer-events: none; 
}

/* --- 7. Sport Slider (V32 - Fresh Classes) --- */
.sport-slider-wrapper {
    height: 400px;
    flex: 1.2;
    background: #000;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.sport-track-v32 {
    display: flex;
    height: 100%;
    width: max-content;
    animation: scrollSportV32 20s linear infinite;
}

.sport-track-v32 img {
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: cover;
    flex-shrink: 0;
    display: block; /* Remove inline gap */
}

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

/* --- 8. Premium Sport Display (V33 - Crossfade) --- */
.sport-premium-display {
    height: 400px;
    flex: 1.2;
    background: #000;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.sport-premium-display img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Premium full fill */
    opacity: 0;
    animation: crossfadeSport 24s infinite;
}

/* Staggered Animations for 6 images (4s each) */
.sport-premium-display img:nth-child(1) { animation-delay: 0s; }
.sport-premium-display img:nth-child(2) { animation-delay: 4s; }
.sport-premium-display img:nth-child(3) { animation-delay: 8s; }
.sport-premium-display img:nth-child(4) { animation-delay: 12s; }
.sport-premium-display img:nth-child(5) { animation-delay: 16s; }
.sport-premium-display img:nth-child(6) { animation-delay: 20s; }

@keyframes crossfadeSport {
    0% { opacity: 0; }
    5% { opacity: 1; }  /* Fade in */
    20% { opacity: 1; } /* Stay visible */
    25% { opacity: 0; } /* Fade out */
    100% { opacity: 0; }
}

/* --- 9. Ultimate Sport Redesign (V34) --- */
.sport-showcase-v34 {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: #0a0a0a;
    border-radius: 24px; /* More rounded premium look */
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    margin-top: 20px;
    border: 1px solid #222;
}

/* Left: The Cinematic Slider (Bigger, Wider) */
.sport-visual-area-v34 {
    flex: 1 1 60%; /* Takes 60% width */
    min-height: 550px; /* Much taller */
    position: relative;
    overflow: hidden;
    background: #000;
}

.sport-visual-area-v34 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: cinemaFadeV34 24s infinite;
    transform: scale(1.05); /* Slight zoom start */
}

/* Add a subtle zoom effect during fade */
@keyframes cinemaFadeV34 {
    0% { opacity: 0; transform: scale(1.05); }
    5% { opacity: 1; transform: scale(1); }
    20% { opacity: 1; transform: scale(1); }
    25% { opacity: 0; transform: scale(1.05); }
    100% { opacity: 0; transform: scale(1.05); }
}

/* Staggered delays for 6 images */
.sport-visual-area-v34 img:nth-child(1) { animation-delay: 0s; }
.sport-visual-area-v34 img:nth-child(2) { animation-delay: 4s; }
.sport-visual-area-v34 img:nth-child(3) { animation-delay: 8s; }
.sport-visual-area-v34 img:nth-child(4) { animation-delay: 12s; }
.sport-visual-area-v34 img:nth-child(5) { animation-delay: 16s; }
.sport-visual-area-v34 img:nth-child(6) { animation-delay: 20s; }

/* Right: The Premium Info Panel */
.sport-info-area-v34 {
    flex: 1 1 40%; /* Takes 40% width */
    background: linear-gradient(145deg, #111, #0a0a0a);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid #222;
}

.sport-info-area-v34 h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.channel-grid-v34 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.channel-pill-v34 {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #ddd;
    transition: all 0.3s ease;
}

.channel-pill-v34:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}

.feature-list-v34 {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.feature-list-v34 li {
    margin-bottom: 12px;
    color: #bbb;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-list-v34 li i {
    color: #00ff88; /* Premium green accent */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sport-visual-area-v34 {
        flex: 1 1 100%;
        min-height: 300px;
    }
    .sport-info-area-v34 {
        flex: 1 1 100%;
        padding: 25px;
    }
}

/* --- 10. Fix Image Cropping (V36) --- */
.sport-visual-area-v34 img {
    object-fit: contain !important; /* Force full image visibility */
    background: #000; /* Black bars for any aspect ratio mismatch */
    transform: none !important; /* Disable zoom to prevent cutting edges */
    animation: simpleFadeV36 24s infinite; /* Simpler fade without zoom */
}

/* Updated Fade Animation (No Zoom) */
@keyframes simpleFadeV36 {
    0% { opacity: 0; }
    5% { opacity: 1; }
    20% { opacity: 1; }
    25% { opacity: 0; }
    100% { opacity: 0; }
}

/* Ensure container allows full height visibility */
.sport-visual-area-v34 {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

/* --- 11. V37 Polish (Header Fix, Ticker, Sport Upgrade) --- */

/* A. Ticker Upgrade (Logo Cards) */
.ticker-item {
    background: rgba(255,255,255,0.08); /* Glass Card */
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    margin-right: 20px; /* Spacing between cards */
    font-size: 1.2rem; /* Adjusted for card look */
    font-weight: 800;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.ticker-item:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,255,255,0.2);
    border-color: #fff;
    text-shadow: none;
}

/* B. Sport Section Visual Polish (V37) */
.sport-showcase-v34 {
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 50px rgba(0,0,0,0.5), 0 0 20px rgba(166, 246, 46, 0.1); /* Subtle premium glow */
}

.sport-info-area-v34 {
    background: radial-gradient(circle at top right, #1a1a1a, #050505);
    backdrop-filter: blur(10px);
}

/* Channel Pills Upgrade */
.channel-pill-v34 {
    background: linear-gradient(145deg, #222, #111);
    border: 1px solid rgba(255,255,255,0.05);
    font-family: 'Montserrat', sans-serif; /* If avail, else inherit */
    color: #fff;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.channel-pill-v34:hover {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 15px var(--primary-color);
    border-color: var(--primary-color);
}

/* C. Mobile Header Fix (Banner Overlap) */
@media (max-width: 768px) {
    /* Adjust header top position to account for wrapping banner text */
    .header {
        top: 90px !important; /* Push menu down */
    }
    
    .top-banner {
        font-size: 0.75rem; /* Smaller text */
        line-height: 1.4;
        padding: 15px 10px;
    }

    body {
        padding-top: 90px;
    }
    
    /* Mobile Sport Section Tweaks */
    .sport-visual-area-v34 {
        min-height: 350px;
    }
    
    .sport-info-area-v34 {
        padding: 30px 20px;
    }
}

/* --- 12. V38 "The Arena" Sport Redesign (User Request) --- */

/* Wrapper */
.sport-arena-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    /* Removed the 'Background Text' from here */
}

.sport-arena-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Image takes more space */
    background: #080808;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.9);
    position: relative;
}

/* Premium Glow Effect behind card */
.sport-arena-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(166, 246, 46, 0.05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

/* Left: The Visual (UFC Image) */
.arena-visual {
    position: relative;
    height: 600px;
    z-index: 1;
    overflow: hidden;
}

.arena-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Premium Mask to blend image into the dark card */
    mask-image: linear-gradient(to right, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 80%, transparent 100%);
    transition: transform 0.5s ease;
}

.sport-arena-card:hover .arena-visual img {
    transform: scale(1.03);
}

/* Right: The Premium Info */
.arena-info {
    z-index: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(to left, #050505 0%, #0a0a0a 100%);
}

.arena-tag {
    display: inline-block;
    background: var(--primary-color);
    color: #000;
    padding: 6px 14px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    width: fit-content;
    box-shadow: 0 0 15px rgba(166, 246, 46, 0.4);
}

.arena-title {
    font-size: 3rem;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 800;
    text-transform: uppercase;
}

.arena-title span {
    color: transparent;
    -webkit-text-stroke: 1px #fff; 
}

.arena-desc {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 40px;
    max-width: 450px;
}

/* Feature Grid (Modern) */
.arena-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.arena-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ccc;
    font-weight: 500;
}

.arena-feature-item i {
    color: var(--primary-color); /* Neon Green, NO BLUE */
    font-size: 1.2rem;
}

/* Button & Partners */
.arena-actions {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.btn-arena {
    background: #fff;
    color: #000;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    transition: 0.3s;
}

.btn-arena:hover {
    background: var(--primary-color);
    box-shadow: 0 0 30px rgba(166, 246, 46, 0.3);
    transform: translateY(-2px);
}

.arena-partners {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.arena-partners p {
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partner-logos {
    display: flex;
    gap: 20px;
    opacity: 0.5;
}

.partner-logos span {
    font-weight: 700;
    color: #fff;
    font-size: 1.2rem;
}

/* Mobile */
@media (max-width: 900px) {
    .sport-arena-card {
        grid-template-columns: 1fr;
    }
    .arena-visual {
        height: 300px;
    }
    .arena-visual img {
        mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
        -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    }
    .arena-info {
        padding: 30px;
    }
    .arena-title {
        font-size: 2rem;
    }
}

/* --- 13. V41 Sport Highlight Scroller --- */
.sport-scroller-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
}

/* Mask to fade edges */
.sport-scroller-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, 
        rgba(0,0,0,0.8) 0%, 
        transparent 10%, 
        transparent 90%, 
        rgba(0,0,0,0.8) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.sport-scroller-track {
    display: flex;
    height: 100%;
    width: max-content;
    animation: scrollSportHorizontal 30s linear infinite;
}

.sport-scroller-track:hover {
    animation-play-state: paused;
}

.sport-scroller-item {
    height: 100%;
    width: 400px; /* Adjust based on preference */
    flex-shrink: 0;
    margin-right: 0;
    position: relative;
}

.sport-scroller-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: 0.3s;
}

.sport-scroller-item:hover img {
    filter: brightness(1);
    transform: scale(1.05);
}

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

/* Ensure mobile responsiveness for the scroller */
@media (max-width: 900px) {
    .sport-scroller-container {
        border-radius: 24px 24px 0 0;
        height: 300px;
    }
}
/* --- 1. Infinite Movie & Series Scroller (Netflix Style) --- */
.movie-scroller-section {
    padding: 80px 0;
    background: #000;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.movie-scroller-header h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.movie-scroller-header p {
    color: var(--text-muted);
}

.scroller-container {
    position: relative;
    width: 100%;
    display: flex;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.scroller-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollMovies 40s linear infinite;
}

.scroller-track:hover {
    animation-play-state: paused;
}

.movie-poster {
    width: 200px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.movie-poster:hover {
    transform: scale(1.1);
    z-index: 10;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8);
    border: 2px solid var(--primary-color);
}

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

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

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

    /* Ensure track is doubled in HTML */
}

/* --- 2. Premium Channel Ticker (Logo Style) --- */
.channel-ticker {
    background: #0a0a0a;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ticker-item {
    font-size: 1.8rem;
    font-weight: 900;
    color: #444;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
    transition: 0.3s;
}

.ticker-item:hover {
    opacity: 1;
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.ticker-item i {
    color: var(--primary-color);
}


/* --- 3. Trustpilot Style Reviews --- */
.reviews-section {
    padding: 100px 0;
    background: #050505;
}

.trustpilot-header {
    text-align: center;
    margin-bottom: 60px;
}

.trust-score {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.trust-star {
    color: #00b67a;
    /* Trustpilot Green */
    font-size: 2rem;
}

.trust-text {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 500;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: #111;
    padding: 30px;
    border-radius: 4px;
    /* Trustpilot is boxy */
    border-top: 3px solid #00b67a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.review-stars {
    color: #00b67a;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.review-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: block;
}

.review-body {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-author {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* --- 4. Premium Sport Showcase (Split Layout) --- */
.sport-showcase-section {
    padding: 100px 0;
    background: #000;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* Separator */
}

/* Background Title "POPULAR SPORTS CHANNELS" faint */
.sport-bg-text {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.03);
    /* Very faint */
    font-size: 8rem;
    font-weight: 900;
    white-space: nowrap;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 0;
}

.sport-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.sport-header {
    margin-bottom: 60px;
}

.sport-header h3 {
    color: #3b82f6;
    /* Blue faint text above */
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.sport-header h2 {
    font-size: 3rem;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
}

.sport-header h2 span {
    border: 2px solid #fff;
    border-radius: 50%;
    padding: 5px 25px;
    /* Circle effect */
    display: inline-block;
}

.sport-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.sport-posters {
    display: flex;
    gap: 20px;
    flex: 1;
}

.sport-poster-card {
    height: 350px;
    flex: 1;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sport-poster-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.sport-poster-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, #000 0%, transparent 100%);
}

.sport-poster-logo {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    z-index: 2;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.8));
}

/* Right Side: Channels Grid + Text */
.sport-info-side {
    flex: 1;
    text-align: left;
}

.channel-logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 logos per row */
    gap: 15px;
    margin-bottom: 30px;
}

.channel-logo-item {
    background: #111;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s;
}

.channel-logo-item:hover {
    background: #222;
    border-color: var(--primary-color);
}

.sport-desc {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Blue Button */
.btn-channels {
    background: #2563eb;
    /* Royal Blue */
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-channels:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

/* Mobile Optimizations */
@media (max-width: 992px) {
    .sport-grid {
        flex-direction: column;
    }

    .sport-bg-text {
        font-size: 4rem;
        top: 20px;
    }

    .sport-posters {
        width: 100%;
    }

    .sport-info-side {
        width: 100%;
        text-align: center;
    }

    .channel-logo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 576px) {
    .sport-posters {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 20px;
    }

    /* Horizontal scroll on mobile */
    .sport-poster-card {
        min-width: 250px;
        height: 350px;
    }

    .channel-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    /* Movie Scroller Mobile: Show 2-3 items? No, scrolling is fine, maybe resize images */
    .movie-poster {
        width: 140px;
        height: 210px;
    }

    /* Review Grid Mobile */
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* --- 5. New Sport Hero Card (Single Big Focus) --- */
.sport-hero-card {
    height: 400px;
    flex: 1.2;
    /* Bigger than info side */
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.sport-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.6) 80%, transparent 100%);
}

.sport-overlay-content h3 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 800;
}

.live-badge {
    background: #E50914;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

.sport-features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.sport-features-list li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sport-features-list li i {
    color: var(--primary-color);
}

/* --- 6. Sport Hero Slider (Left Side) --- */
.sport-hero-card {
    /* Existing properties override: remove background-image */
    background-image: none !important;
    background: #000;
    position: relative;
    overflow: hidden;
    /* Mask the scrolling */
}

.sport-slider-track {
    display: flex;
    height: 100%;
    width: max-content;
    /* Allow children to expand */
    animation: scrollSportHero 20s linear infinite;
}

.sport-slider-track img {
    height: 100%;
    width: auto;
    max-width: none;
    /* Crucial: prevent images from shrinking */
    object-fit: cover;
    flex-shrink: 0;
    /* Removed min-width: 100% and width: 100% which caused the 'broken' stretching */
}

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

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

    /* Standard infinite scroll for duplicated list */
}

/* Ensure overlay stays on top */
.sport-overlay-content {
    z-index: 5;
    pointer-events: none;
    /* Let clicks pass through if needed */
}
/* --- 6. Sport Hero Slider (Left Side) --- */
.sport-hero-card {
    background-image: none !important; 
    background: #000;
    position: relative;
    overflow: hidden;
}

.sport-slider-track {
    display: flex;
    height: 100%;
    width: max-content; 
    animation: scrollSportHero 20s linear infinite;
}

.sport-slider-track img {
    height: 100%;
    width: auto;
    max-width: none; /* Crucial: prevent images from shrinking */
    object-fit: cover;
    flex-shrink: 0;
    /* Removed min-width: 100% and width: 100% */
}

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

/* Ensure overlay stays on top */
.sport-overlay-content {
    z-index: 5;
    pointer-events: none; 
}

/* --- 7. Sport Slider (V32 - Fresh Classes) --- */
.sport-slider-wrapper {
    height: 400px;
    flex: 1.2;
    background: #000;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.sport-track-v32 {
    display: flex;
    height: 100%;
    width: max-content;
    animation: scrollSportV32 20s linear infinite;
}

.sport-track-v32 img {
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: cover;
    flex-shrink: 0;
    display: block; /* Remove inline gap */
}

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

/* --- 8. Premium Sport Display (V33 - Crossfade) --- */
.sport-premium-display {
    height: 400px;
    flex: 1.2;
    background: #000;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.sport-premium-display img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Premium full fill */
    opacity: 0;
    animation: crossfadeSport 24s infinite;
}

/* Staggered Animations for 6 images (4s each) */
.sport-premium-display img:nth-child(1) { animation-delay: 0s; }
.sport-premium-display img:nth-child(2) { animation-delay: 4s; }
.sport-premium-display img:nth-child(3) { animation-delay: 8s; }
.sport-premium-display img:nth-child(4) { animation-delay: 12s; }
.sport-premium-display img:nth-child(5) { animation-delay: 16s; }
.sport-premium-display img:nth-child(6) { animation-delay: 20s; }

@keyframes crossfadeSport {
    0% { opacity: 0; }
    5% { opacity: 1; }  /* Fade in */
    20% { opacity: 1; } /* Stay visible */
    25% { opacity: 0; } /* Fade out */
    100% { opacity: 0; }
}

/* --- 9. Ultimate Sport Redesign (V34) --- */
.sport-showcase-v34 {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: #0a0a0a;
    border-radius: 24px; /* More rounded premium look */
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    margin-top: 20px;
    border: 1px solid #222;
}

/* Left: The Cinematic Slider (Bigger, Wider) */
.sport-visual-area-v34 {
    flex: 1 1 60%; /* Takes 60% width */
    min-height: 550px; /* Much taller */
    position: relative;
    overflow: hidden;
    background: #000;
}

.sport-visual-area-v34 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: cinemaFadeV34 24s infinite;
    transform: scale(1.05); /* Slight zoom start */
}

/* Add a subtle zoom effect during fade */
@keyframes cinemaFadeV34 {
    0% { opacity: 0; transform: scale(1.05); }
    5% { opacity: 1; transform: scale(1); }
    20% { opacity: 1; transform: scale(1); }
    25% { opacity: 0; transform: scale(1.05); }
    100% { opacity: 0; transform: scale(1.05); }
}

/* Staggered delays for 6 images */
.sport-visual-area-v34 img:nth-child(1) { animation-delay: 0s; }
.sport-visual-area-v34 img:nth-child(2) { animation-delay: 4s; }
.sport-visual-area-v34 img:nth-child(3) { animation-delay: 8s; }
.sport-visual-area-v34 img:nth-child(4) { animation-delay: 12s; }
.sport-visual-area-v34 img:nth-child(5) { animation-delay: 16s; }
.sport-visual-area-v34 img:nth-child(6) { animation-delay: 20s; }

/* Right: The Premium Info Panel */
.sport-info-area-v34 {
    flex: 1 1 40%; /* Takes 40% width */
    background: linear-gradient(145deg, #111, #0a0a0a);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid #222;
}

.sport-info-area-v34 h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.channel-grid-v34 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.channel-pill-v34 {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #ddd;
    transition: all 0.3s ease;
}

.channel-pill-v34:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}

.feature-list-v34 {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.feature-list-v34 li {
    margin-bottom: 12px;
    color: #bbb;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-list-v34 li i {
    color: #00ff88; /* Premium green accent */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sport-visual-area-v34 {
        flex: 1 1 100%;
        min-height: 300px;
    }
    .sport-info-area-v34 {
        flex: 1 1 100%;
        padding: 25px;
    }
}

/* --- 10. Fix Image Cropping (V36) --- */
.sport-visual-area-v34 img {
    object-fit: contain !important; /* Force full image visibility */
    background: #000; /* Black bars for any aspect ratio mismatch */
    transform: none !important; /* Disable zoom to prevent cutting edges */
    animation: simpleFadeV36 24s infinite; /* Simpler fade without zoom */
}

/* Updated Fade Animation (No Zoom) */
@keyframes simpleFadeV36 {
    0% { opacity: 0; }
    5% { opacity: 1; }
    20% { opacity: 1; }
    25% { opacity: 0; }
    100% { opacity: 0; }
}

/* Ensure container allows full height visibility */
.sport-visual-area-v34 {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

/* --- 11. V37 Polish (Header Fix, Ticker, Sport Upgrade) --- */

/* A. Ticker Upgrade (Logo Cards) */
.ticker-item {
    background: rgba(255,255,255,0.08); /* Glass Card */
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    margin-right: 20px; /* Spacing between cards */
    font-size: 1.2rem; /* Adjusted for card look */
    font-weight: 800;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.ticker-item:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,255,255,0.2);
    border-color: #fff;
    text-shadow: none;
}

/* B. Sport Section Visual Polish (V37) */
.sport-showcase-v34 {
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 50px rgba(0,0,0,0.5), 0 0 20px rgba(166, 246, 46, 0.1); /* Subtle premium glow */
}

.sport-info-area-v34 {
    background: radial-gradient(circle at top right, #1a1a1a, #050505);
    backdrop-filter: blur(10px);
}

/* Channel Pills Upgrade */
.channel-pill-v34 {
    background: linear-gradient(145deg, #222, #111);
    border: 1px solid rgba(255,255,255,0.05);
    font-family: 'Montserrat', sans-serif; /* If avail, else inherit */
    color: #fff;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.channel-pill-v34:hover {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 15px var(--primary-color);
    border-color: var(--primary-color);
}

/* C. Mobile Header Fix (Banner Overlap) */
@media (max-width: 768px) {
    /* Adjust header top position to account for wrapping banner text */
    .header {
        top: 90px !important; /* Push menu down */
    }
    
    .top-banner {
        font-size: 0.75rem; /* Smaller text */
        line-height: 1.4;
        padding: 15px 10px;
    }

    body {
        padding-top: 90px;
    }
    
    /* Mobile Sport Section Tweaks */
    .sport-visual-area-v34 {
        min-height: 350px;
    }
    
    .sport-info-area-v34 {
        padding: 30px 20px;
    }
}

/* --- 12. V38 "The Arena" Sport Redesign (User Request) --- */

/* Wrapper */
.sport-arena-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    /* Removed the 'Background Text' from here */
}

.sport-arena-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Image takes more space */
    background: #080808;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.9);
    position: relative;
}

/* Premium Glow Effect behind card */
.sport-arena-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(166, 246, 46, 0.05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

/* Left: The Visual (UFC Image) */
.arena-visual {
    position: relative;
    height: 600px;
    z-index: 1;
    overflow: hidden;
}

.arena-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Premium Mask to blend image into the dark card */
    mask-image: linear-gradient(to right, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 80%, transparent 100%);
    transition: transform 0.5s ease;
}

.sport-arena-card:hover .arena-visual img {
    transform: scale(1.03);
}

/* Right: The Premium Info */
.arena-info {
    z-index: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(to left, #050505 0%, #0a0a0a 100%);
}

.arena-tag {
    display: inline-block;
    background: var(--primary-color);
    color: #000;
    padding: 6px 14px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    width: fit-content;
    box-shadow: 0 0 15px rgba(166, 246, 46, 0.4);
}

.arena-title {
    font-size: 3rem;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 800;
    text-transform: uppercase;
}

.arena-title span {
    color: transparent;
    -webkit-text-stroke: 1px #fff; 
}

.arena-desc {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 40px;
    max-width: 450px;
}

/* Feature Grid (Modern) */
.arena-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.arena-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ccc;
    font-weight: 500;
}

.arena-feature-item i {
    color: var(--primary-color); /* Neon Green, NO BLUE */
    font-size: 1.2rem;
}

/* Button & Partners */
.arena-actions {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.btn-arena {
    background: #fff;
    color: #000;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    transition: 0.3s;
}

.btn-arena:hover {
    background: var(--primary-color);
    box-shadow: 0 0 30px rgba(166, 246, 46, 0.3);
    transform: translateY(-2px);
}

.arena-partners {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.arena-partners p {
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partner-logos {
    display: flex;
    gap: 20px;
    opacity: 0.5;
}

.partner-logos span {
    font-weight: 700;
    color: #fff;
    font-size: 1.2rem;
}

/* Mobile */
@media (max-width: 900px) {
    .sport-arena-card {
        grid-template-columns: 1fr;
    }
    .arena-visual {
        height: 300px;
    }
    .arena-visual img {
        mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
        -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    }
    .arena-info {
        padding: 30px;
    }
    .arena-title {
        font-size: 2rem;
    }
}

/* --- 13. V41 Sport Highlight Scroller --- */
.sport-scroller-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
}

/* Mask to fade edges */
.sport-scroller-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, 
        rgba(0,0,0,0.8) 0%, 
        transparent 10%, 
        transparent 90%, 
        rgba(0,0,0,0.8) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.sport-scroller-track {
    display: flex;
    height: 100%;
    width: max-content;
    animation: scrollSportHorizontal 30s linear infinite;
}

.sport-scroller-track:hover {
    animation-play-state: paused;
}

.sport-scroller-item {
    height: 100%;
    width: 400px; /* Adjust based on preference */
    flex-shrink: 0;
    margin-right: 0;
    position: relative;
}

.sport-scroller-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: 0.3s;
}

.sport-scroller-item:hover img {
    filter: brightness(1);
    transform: scale(1.05);
}

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

/* Ensure mobile responsiveness for the scroller */
@media (max-width: 900px) {
    .sport-scroller-container {
        border-radius: 24px 24px 0 0;
        height: 300px;
    }
}

/* --- 14. V42 Scroller Fixes (Visibility & Images) --- */
.sport-scroller-item img {
    mask-image: none !important; /* Remove parent mask conflict */
    -webkit-mask-image: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
}

.sport-scroller-container {
    z-index: 10; /* Ensure on top */
}

/* Ensure track width is sufficient */
.sport-scroller-track {
    width: max-content; 
    min-width: 200%;
}
/* --- 1. Infinite Movie & Series Scroller (Netflix Style) --- */
.movie-scroller-section {
    padding: 80px 0;
    background: #000;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.movie-scroller-header h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.movie-scroller-header p {
    color: var(--text-muted);
}

.scroller-container {
    position: relative;
    width: 100%;
    display: flex;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.scroller-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollMovies 40s linear infinite;
}

.scroller-track:hover {
    animation-play-state: paused;
}

.movie-poster {
    width: 200px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.movie-poster:hover {
    transform: scale(1.1);
    z-index: 10;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8);
    border: 2px solid var(--primary-color);
}

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

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

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

    /* Ensure track is doubled in HTML */
}

/* --- 2. Premium Channel Ticker (Logo Style) --- */
.channel-ticker {
    background: #0a0a0a;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ticker-item {
    font-size: 1.8rem;
    font-weight: 900;
    color: #444;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
    transition: 0.3s;
}

.ticker-item:hover {
    opacity: 1;
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.ticker-item i {
    color: var(--primary-color);
}


/* --- 3. Trustpilot Style Reviews --- */
.reviews-section {
    padding: 100px 0;
    background: #050505;
}

.trustpilot-header {
    text-align: center;
    margin-bottom: 60px;
}

.trust-score {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.trust-star {
    color: #00b67a;
    /* Trustpilot Green */
    font-size: 2rem;
}

.trust-text {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 500;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: #111;
    padding: 30px;
    border-radius: 4px;
    /* Trustpilot is boxy */
    border-top: 3px solid #00b67a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.review-stars {
    color: #00b67a;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.review-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: block;
}

.review-body {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-author {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* --- 4. Premium Sport Showcase (Split Layout) --- */
.sport-showcase-section {
    padding: 100px 0;
    background: #000;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* Separator */
}

/* Background Title "POPULAR SPORTS CHANNELS" faint */
.sport-bg-text {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.03);
    /* Very faint */
    font-size: 8rem;
    font-weight: 900;
    white-space: nowrap;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 0;
}

.sport-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.sport-header {
    margin-bottom: 60px;
}

.sport-header h3 {
    color: #3b82f6;
    /* Blue faint text above */
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.sport-header h2 {
    font-size: 3rem;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
}

.sport-header h2 span {
    border: 2px solid #fff;
    border-radius: 50%;
    padding: 5px 25px;
    /* Circle effect */
    display: inline-block;
}

.sport-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.sport-posters {
    display: flex;
    gap: 20px;
    flex: 1;
}

.sport-poster-card {
    height: 350px;
    flex: 1;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sport-poster-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.sport-poster-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, #000 0%, transparent 100%);
}

.sport-poster-logo {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    z-index: 2;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.8));
}

/* Right Side: Channels Grid + Text */
.sport-info-side {
    flex: 1;
    text-align: left;
}

.channel-logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 logos per row */
    gap: 15px;
    margin-bottom: 30px;
}

.channel-logo-item {
    background: #111;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s;
}

.channel-logo-item:hover {
    background: #222;
    border-color: var(--primary-color);
}

.sport-desc {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Blue Button */
.btn-channels {
    background: #2563eb;
    /* Royal Blue */
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-channels:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

/* Mobile Optimizations */
@media (max-width: 992px) {
    .sport-grid {
        flex-direction: column;
    }

    .sport-bg-text {
        font-size: 4rem;
        top: 20px;
    }

    .sport-posters {
        width: 100%;
    }

    .sport-info-side {
        width: 100%;
        text-align: center;
    }

    .channel-logo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 576px) {
    .sport-posters {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 20px;
    }

    /* Horizontal scroll on mobile */
    .sport-poster-card {
        min-width: 250px;
        height: 350px;
    }

    .channel-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    /* Movie Scroller Mobile: Show 2-3 items? No, scrolling is fine, maybe resize images */
    .movie-poster {
        width: 140px;
        height: 210px;
    }

    /* Review Grid Mobile */
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* --- 5. New Sport Hero Card (Single Big Focus) --- */
.sport-hero-card {
    height: 400px;
    flex: 1.2;
    /* Bigger than info side */
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.sport-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.6) 80%, transparent 100%);
}

.sport-overlay-content h3 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 800;
}

.live-badge {
    background: #E50914;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

.sport-features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.sport-features-list li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sport-features-list li i {
    color: var(--primary-color);
}

/* --- 6. Sport Hero Slider (Left Side) --- */
.sport-hero-card {
    /* Existing properties override: remove background-image */
    background-image: none !important;
    background: #000;
    position: relative;
    overflow: hidden;
    /* Mask the scrolling */
}

.sport-slider-track {
    display: flex;
    height: 100%;
    width: max-content;
    /* Allow children to expand */
    animation: scrollSportHero 20s linear infinite;
}

.sport-slider-track img {
    height: 100%;
    width: auto;
    max-width: none;
    /* Crucial: prevent images from shrinking */
    object-fit: cover;
    flex-shrink: 0;
    /* Removed min-width: 100% and width: 100% which caused the 'broken' stretching */
}

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

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

    /* Standard infinite scroll for duplicated list */
}

/* Ensure overlay stays on top */
.sport-overlay-content {
    z-index: 5;
    pointer-events: none;
    /* Let clicks pass through if needed */
}
/* --- 6. Sport Hero Slider (Left Side) --- */
.sport-hero-card {
    background-image: none !important; 
    background: #000;
    position: relative;
    overflow: hidden;
}

.sport-slider-track {
    display: flex;
    height: 100%;
    width: max-content; 
    animation: scrollSportHero 20s linear infinite;
}

.sport-slider-track img {
    height: 100%;
    width: auto;
    max-width: none; /* Crucial: prevent images from shrinking */
    object-fit: cover;
    flex-shrink: 0;
    /* Removed min-width: 100% and width: 100% */
}

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

/* Ensure overlay stays on top */
.sport-overlay-content {
    z-index: 5;
    pointer-events: none; 
}

/* --- 7. Sport Slider (V32 - Fresh Classes) --- */
.sport-slider-wrapper {
    height: 400px;
    flex: 1.2;
    background: #000;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.sport-track-v32 {
    display: flex;
    height: 100%;
    width: max-content;
    animation: scrollSportV32 20s linear infinite;
}

.sport-track-v32 img {
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: cover;
    flex-shrink: 0;
    display: block; /* Remove inline gap */
}

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

/* --- 8. Premium Sport Display (V33 - Crossfade) --- */
.sport-premium-display {
    height: 400px;
    flex: 1.2;
    background: #000;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.sport-premium-display img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Premium full fill */
    opacity: 0;
    animation: crossfadeSport 24s infinite;
}

/* Staggered Animations for 6 images (4s each) */
.sport-premium-display img:nth-child(1) { animation-delay: 0s; }
.sport-premium-display img:nth-child(2) { animation-delay: 4s; }
.sport-premium-display img:nth-child(3) { animation-delay: 8s; }
.sport-premium-display img:nth-child(4) { animation-delay: 12s; }
.sport-premium-display img:nth-child(5) { animation-delay: 16s; }
.sport-premium-display img:nth-child(6) { animation-delay: 20s; }

@keyframes crossfadeSport {
    0% { opacity: 0; }
    5% { opacity: 1; }  /* Fade in */
    20% { opacity: 1; } /* Stay visible */
    25% { opacity: 0; } /* Fade out */
    100% { opacity: 0; }
}

/* --- 9. Ultimate Sport Redesign (V34) --- */
.sport-showcase-v34 {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: #0a0a0a;
    border-radius: 24px; /* More rounded premium look */
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    margin-top: 20px;
    border: 1px solid #222;
}

/* Left: The Cinematic Slider (Bigger, Wider) */
.sport-visual-area-v34 {
    flex: 1 1 60%; /* Takes 60% width */
    min-height: 550px; /* Much taller */
    position: relative;
    overflow: hidden;
    background: #000;
}

.sport-visual-area-v34 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: cinemaFadeV34 24s infinite;
    transform: scale(1.05); /* Slight zoom start */
}

/* Add a subtle zoom effect during fade */
@keyframes cinemaFadeV34 {
    0% { opacity: 0; transform: scale(1.05); }
    5% { opacity: 1; transform: scale(1); }
    20% { opacity: 1; transform: scale(1); }
    25% { opacity: 0; transform: scale(1.05); }
    100% { opacity: 0; transform: scale(1.05); }
}

/* Staggered delays for 6 images */
.sport-visual-area-v34 img:nth-child(1) { animation-delay: 0s; }
.sport-visual-area-v34 img:nth-child(2) { animation-delay: 4s; }
.sport-visual-area-v34 img:nth-child(3) { animation-delay: 8s; }
.sport-visual-area-v34 img:nth-child(4) { animation-delay: 12s; }
.sport-visual-area-v34 img:nth-child(5) { animation-delay: 16s; }
.sport-visual-area-v34 img:nth-child(6) { animation-delay: 20s; }

/* Right: The Premium Info Panel */
.sport-info-area-v34 {
    flex: 1 1 40%; /* Takes 40% width */
    background: linear-gradient(145deg, #111, #0a0a0a);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid #222;
}

.sport-info-area-v34 h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.channel-grid-v34 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.channel-pill-v34 {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #ddd;
    transition: all 0.3s ease;
}

.channel-pill-v34:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}

.feature-list-v34 {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.feature-list-v34 li {
    margin-bottom: 12px;
    color: #bbb;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-list-v34 li i {
    color: #00ff88; /* Premium green accent */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sport-visual-area-v34 {
        flex: 1 1 100%;
        min-height: 300px;
    }
    .sport-info-area-v34 {
        flex: 1 1 100%;
        padding: 25px;
    }
}

/* --- 10. Fix Image Cropping (V36) --- */
.sport-visual-area-v34 img {
    object-fit: contain !important; /* Force full image visibility */
    background: #000; /* Black bars for any aspect ratio mismatch */
    transform: none !important; /* Disable zoom to prevent cutting edges */
    animation: simpleFadeV36 24s infinite; /* Simpler fade without zoom */
}

/* Updated Fade Animation (No Zoom) */
@keyframes simpleFadeV36 {
    0% { opacity: 0; }
    5% { opacity: 1; }
    20% { opacity: 1; }
    25% { opacity: 0; }
    100% { opacity: 0; }
}

/* Ensure container allows full height visibility */
.sport-visual-area-v34 {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

/* --- 11. V37 Polish (Header Fix, Ticker, Sport Upgrade) --- */

/* A. Ticker Upgrade (Logo Cards) */
.ticker-item {
    background: rgba(255,255,255,0.08); /* Glass Card */
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    margin-right: 20px; /* Spacing between cards */
    font-size: 1.2rem; /* Adjusted for card look */
    font-weight: 800;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.ticker-item:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,255,255,0.2);
    border-color: #fff;
    text-shadow: none;
}

/* B. Sport Section Visual Polish (V37) */
.sport-showcase-v34 {
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 50px rgba(0,0,0,0.5), 0 0 20px rgba(166, 246, 46, 0.1); /* Subtle premium glow */
}

.sport-info-area-v34 {
    background: radial-gradient(circle at top right, #1a1a1a, #050505);
    backdrop-filter: blur(10px);
}

/* Channel Pills Upgrade */
.channel-pill-v34 {
    background: linear-gradient(145deg, #222, #111);
    border: 1px solid rgba(255,255,255,0.05);
    font-family: 'Montserrat', sans-serif; /* If avail, else inherit */
    color: #fff;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.channel-pill-v34:hover {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 15px var(--primary-color);
    border-color: var(--primary-color);
}

/* C. Mobile Header Fix (Banner Overlap) */
@media (max-width: 768px) {
    /* Adjust header top position to account for wrapping banner text */
    .header {
        top: 90px !important; /* Push menu down */
    }
    
    .top-banner {
        font-size: 0.75rem; /* Smaller text */
        line-height: 1.4;
        padding: 15px 10px;
    }

    body {
        padding-top: 90px;
    }
    
    /* Mobile Sport Section Tweaks */
    .sport-visual-area-v34 {
        min-height: 350px;
    }
    
    .sport-info-area-v34 {
        padding: 30px 20px;
    }
}

/* --- 12. V38 "The Arena" Sport Redesign (User Request) --- */

/* Wrapper */
.sport-arena-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    /* Removed the 'Background Text' from here */
}

.sport-arena-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Image takes more space */
    background: #080808;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.9);
    position: relative;
}

/* Premium Glow Effect behind card */
.sport-arena-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(166, 246, 46, 0.05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

/* Left: The Visual (UFC Image) */
.arena-visual {
    position: relative;
    height: 600px;
    z-index: 1;
    overflow: hidden;
}

.arena-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Premium Mask to blend image into the dark card */
    mask-image: linear-gradient(to right, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 80%, transparent 100%);
    transition: transform 0.5s ease;
}

.sport-arena-card:hover .arena-visual img {
    transform: scale(1.03);
}

/* Right: The Premium Info */
.arena-info {
    z-index: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(to left, #050505 0%, #0a0a0a 100%);
}

.arena-tag {
    display: inline-block;
    background: var(--primary-color);
    color: #000;
    padding: 6px 14px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    width: fit-content;
    box-shadow: 0 0 15px rgba(166, 246, 46, 0.4);
}

.arena-title {
    font-size: 3rem;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 800;
    text-transform: uppercase;
}

.arena-title span {
    color: transparent;
    -webkit-text-stroke: 1px #fff; 
}

.arena-desc {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 40px;
    max-width: 450px;
}

/* Feature Grid (Modern) */
.arena-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.arena-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ccc;
    font-weight: 500;
}

.arena-feature-item i {
    color: var(--primary-color); /* Neon Green, NO BLUE */
    font-size: 1.2rem;
}

/* Button & Partners */
.arena-actions {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.btn-arena {
    background: #fff;
    color: #000;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    transition: 0.3s;
}

.btn-arena:hover {
    background: var(--primary-color);
    box-shadow: 0 0 30px rgba(166, 246, 46, 0.3);
    transform: translateY(-2px);
}

.arena-partners {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.arena-partners p {
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partner-logos {
    display: flex;
    gap: 20px;
    opacity: 0.5;
}

.partner-logos span {
    font-weight: 700;
    color: #fff;
    font-size: 1.2rem;
}

/* Mobile */
@media (max-width: 900px) {
    .sport-arena-card {
        grid-template-columns: 1fr;
    }
    .arena-visual {
        height: 300px;
    }
    .arena-visual img {
        mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
        -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    }
    .arena-info {
        padding: 30px;
    }
    .arena-title {
        font-size: 2rem;
    }
}

/* --- 13. V41 Sport Highlight Scroller --- */
.sport-scroller-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
}

/* Mask to fade edges */
.sport-scroller-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, 
        rgba(0,0,0,0.8) 0%, 
        transparent 10%, 
        transparent 90%, 
        rgba(0,0,0,0.8) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.sport-scroller-track {
    display: flex;
    height: 100%;
    width: max-content;
    animation: scrollSportHorizontal 30s linear infinite;
}

.sport-scroller-track:hover {
    animation-play-state: paused;
}

.sport-scroller-item {
    height: 100%;
    width: 400px; /* Adjust based on preference */
    flex-shrink: 0;
    margin-right: 0;
    position: relative;
}

.sport-scroller-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: 0.3s;
}

.sport-scroller-item:hover img {
    filter: brightness(1);
    transform: scale(1.05);
}

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

/* Ensure mobile responsiveness for the scroller */
@media (max-width: 900px) {
    .sport-scroller-container {
        border-radius: 24px 24px 0 0;
        height: 300px;
    }
}

/* --- 14. V42 Scroller Fixes (Visibility & Images) --- */
.sport-scroller-item img {
    mask-image: none !important; /* Remove parent mask conflict */
    -webkit-mask-image: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
}

.sport-scroller-container {
    z-index: 10; /* Ensure on top */
}

/* Ensure track width is sufficient */
.sport-scroller-track {
    width: max-content; 
    min-width: 200%;
}

/* --- 15. V43 Clarity Boost (No Dimming) --- */
.sport-scroller-item img {
    filter: none !important; /* Remove brightness reduction for full clarity */
    box-shadow: 0 0 20px rgba(0,0,0,0.5); /* Add depth instead */
}

.sport-scroller-item {
    width: 300px; /* Slightly narrower for portrait posters */
    margin-right: 15px;
}
