/* Modern CSS Reset & Variables */
:root {
    /* Color Palette */
    --color-bg-dark: #000000;
    --color-bg-card: #121212;
    --color-primary: #38bdf8;
    /* Light Blue */
    --color-primary-glow: rgba(56, 189, 248, 0.5);
    --color-secondary: #0ea5e9;
    /* Sky Blue */
    --color-secondary-glow: rgba(14, 165, 233, 0.5);
    --color-accent: #f59e0b;
    /* Amber accent */
    --color-text-main: #f8fafc;
    --color-text-muted: #94a3b8;
    --color-success: #10b981;
    --color-border: #334155;

    /* Typography */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Outfit', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    /* Transitions */
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.fa-rocket,
.fa-list::before {
    content: "\f135";
    padding: 10px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg-dark);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Utility */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Layout Utility */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

/* Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-base);
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    box-shadow: 0 0 20px var(--color-primary-glow);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px var(--color-primary-glow);
}

.btn--secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
}

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

.header__logo img {
    height: 40px;
    width: auto;
}

.header__nav {
    display: flex;
    gap: 30px;
}

.nav__link {
    font-weight: 500;
    color: var(--color-text-muted);
    position: relative;
}

.nav__link:hover,
.nav__link.active {
    color: var(--color-primary);
}

.header__cta {
    display: none;
}

@media (min-width: 768px) {
    .header__cta {
        display: block;
    }
}

/* Hero Section */
.hero {
    padding-top: 180px;
    padding-bottom: 50px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(5, 56, 122, 0.5), rgba(18, 18, 18, 0.9)), url('../img/hero_sports_collage.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero__bg-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

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

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero__badge:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.hero__title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #fff;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero__title .text-gradient {
    background: linear-gradient(135deg, #fff 0%, var(--color-primary) 50%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__desc {
    font-size: 1.35rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero__actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 2px;
    text-decoration: none;
}

.brand-logo__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: var(--color-primary);
    color: #000;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    border-radius: 8px;
}

.brand-logo__text {
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    line-height: 1;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.hero__stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-muted);
    font-weight: 500;
}

.stat-item i {
    color: var(--color-primary);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .hero__title {
        font-size: 2.5rem;
    }

    .hero__actions {
        flex-direction: column;
        padding: 0 20px;
    }

    .hero__stats {
        gap: 20px;
        flex-direction: column;
    }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--color-bg-card);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    transition: var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: 20px;
}

/* Pricing Section */
.pricing__cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    border-color: var(--color-secondary);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
}

.pricing-card.popular::before {
    content: 'Best Value';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-secondary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.price {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 20px 0;
    font-family: var(--font-heading);
}

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

.pricing-features {
    margin: 30px 0;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--color-text-muted);
}

.pricing-features li svg {
    color: var(--color-success);
}

/* Footer */
.footer {
    background: #020617;
    padding: 60px 0 20px;
    border-top: 1px solid var(--color-border);
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer__col h4 {
    margin-bottom: 20px;
}

.footer__col ul li {
    margin-bottom: 10px;
}

.footer__col ul li a {
    color: var(--color-text-muted);
}

.footer__col ul li a:hover {
    color: var(--color-primary);
}

.footer__bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 100;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

@media (max-width: 768px) {

    .header__nav,
    .header__cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero__title {
        font-size: 2.5rem;
    }
}

/* Accordion Styles */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #fff;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.accordion-content {
    display: none;
    padding: 20px;
    color: var(--color-text-muted);
    border-top: 1px solid var(--color-border);
    line-height: 1.8;
}

.accordion-content.active {
    display: block;
}

.accordion-icon {
    transition: transform 0.3s;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.toggle-btn {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    padding: 10px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.toggle-btn.active,
.toggle-btn:hover {
    background: #0072a5;
    /* Darker blue for better contrast against white text */
    color: white;
    border-color: var(--color-primary);
    box-shadow: 0 0 15px rgba(var(--color-primary-rgb), 0.4);
}

.pricing-container {
    display: grid;
    gap: 30px;
    /* Desktop: 4 columns */
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.pricing-container.hidden {
    display: none;
}

/* Tablet: 2 columns */
@media (max-width: 1177px) {
    .pricing-container {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }
}

/* Mobile: 1 column */
@media (max-width: 640px) {
    .pricing-container {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* Sports Section */
.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
    margin-top: 40px;
}

.sports-item img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.sports-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Movies Grid */
.movies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.movie-card {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s;
}

.movie-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.movie-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* How to Subscribe */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 40px;
    counter-reset: step-counter;
}

.step-card {
    background: var(--color-bg-card);
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    position: relative;
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 20px;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--color-bg-card);
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: #090909;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    /* Changed from var(--color-primary) for better contrast */
}

.review-stars {
    color: #fbbf24;
}


/* Carousel Styles */
.carousel-wrapper {
    position: relative;
    padding: 20px 0;
}

.carousel-container {
    display: flex;
    overflow-x: auto;
    /* scroll-snap-type removed for smooth JS scrolling */
    scroll-behavior: auto;
    /* Let JS handle smoothing */
    gap: 20px;
    padding: 20px 0;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    flex: 0 0 auto;
    /* scroll-snap-align removed */
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Default (Mobile): Show 3 items */
    /* Formula: (100% - (items-1)*gap) / items */
    /* (100% - 40px) / 3 */
    width: calc((100% - 40px) / 3);
}

@media (min-width: 768px) {

    /* Tablet: Show 4 items */
    /* (100% - 60px) / 4 */
    .carousel-item {
        width: calc((100% - 60px) / 4);
    }
}

@media (min-width: 1024px) {

    /* Desktop: Show 5 items */
    /* (100% - 80px) / 5 */
    .carousel-item {
        width: calc((100% - 80px) / 5);
    }
}

/* Sports specific sizing */
.sports-carousel .carousel-item {
    height: auto;
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    background: transparent;
    border: none;
    display: block;
}

.sports-carousel .carousel-item img {
    width: 100%;
    height: auto;
    filter: none;
    opacity: 1;
    display: block;
    transition: transform 0.3s;
}

.sports-carousel .carousel-item:hover {
    background: transparent;
    transform: translateY(-5px);
}

.sports-carousel .carousel-item:hover img {
    transform: scale(1.05);
}

/* Movies specific sizing */
.movies-carousel .carousel-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
}

.movies-carousel .carousel-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.movies-carousel .carousel-item:hover img {
    transform: scale(1.05);
}

/* Navigation Buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--color-border);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.carousel-nav:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.carousel-prev {
    left: -20px;
}

.carousel-next {
    right: -20px;
}

@media (max-width: 768px) {
    .carousel-nav {
        display: none;
    }

    .carousel-container {
        padding: 10px;
    }
}

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
}

.section-description {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 30px;
    backdrop-filter: blur(10px);
}

.lead-text {
    color: var(--color-text-main);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 500;
}

.sub-text {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

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

    .lead-text {
        font-size: 1rem;
    }

    .sub-text {
        font-size: 0.9rem;
    }
}

/* Modern Step Cards with Icons */
.step-card-modern {
    background: var(--color-bg-card);
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.step-card-modern:hover::before {
    transform: scaleX(1);
}

.step-card-modern:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
    transition: transform 0.3s ease;
}

.step-card-modern:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}

.step-card-modern h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.step-card-modern p {
    display: block;
    transition: transform 0.3s;
}

.sports-carousel .carousel-item:hover {
    background: transparent;
    transform: translateY(-5px);
}

.sports-carousel .carousel-item:hover img {
    transform: scale(1.05);
}

/* Movies specific sizing */
.movies-carousel .carousel-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
}

.movies-carousel .carousel-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.movies-carousel .carousel-item:hover img {
    transform: scale(1.05);
}

/* Navigation Buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--color-border);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.carousel-nav:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.carousel-prev {
    left: -20px;
}

.carousel-next {
    right: -20px;
}

@media (max-width: 768px) {
    .carousel-nav {
        display: none;
    }

    .carousel-container {
        padding: 10px;
    }
}

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
}

.section-description {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 30px;
    backdrop-filter: blur(10px);
}

.lead-text {
    color: var(--color-text-main);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 500;
}

.sub-text {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

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

    .lead-text {
        font-size: 1rem;
    }

    .sub-text {
        font-size: 0.9rem;
    }
}

/* Modern Step Cards with Icons */
.step-card-modern {
    background: var(--color-bg-card);
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.step-card-modern:hover::before {
    transform: scaleX(1);
}

.step-card-modern:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
    transition: transform 0.3s ease;
}

.step-card-modern:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}

.step-card-modern h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.step-card-modern p {
    line-height: 1.7;
}

@media (max-width: 768px) {
    .step-icon {
        width: 55px;
        height: 55px;
        font-size: 1.35rem;
    }

    .step-card-modern {
        padding: 30px 20px;
    }
}

/* Reviews Carousel Specific Styles */
.reviews-carousel .carousel-item {
    width: calc((100% - 60px) / 3);
    /* 3 reviews on desktop */
}

@media (max-width: 1024px) {
    .reviews-carousel .carousel-item {
        width: calc((100% - 20px) / 2);
        /* 2 reviews on tablet */
    }
}

@media (max-width: 640px) {
    .reviews-carousel .carousel-item {
        width: calc(100% - 20px);
        /* 1 review on mobile */
    }
}

.reviews-carousel .review-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.reviews-carousel .review-card p {
    flex-grow: 1;
}

/* FAQ Accordion Styles */
details summary {
    list-style: none;
    /* Hide default triangle */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

details summary::-webkit-details-marker {
    display: none;
    /* Hide Chrome/Safari marker */
}

details summary::after {
    content: '\f078';
    /* Font Awesome chevron-down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    transition: transform 0.3s ease;
}

details[open] summary::after {
    transform: rotate(180deg);
}

details:hover {
    background: rgba(255, 255, 255, 0.05) !important;
}

/* Swiper Styles */
.swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-sm);
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.swiper-slide:hover img {
    transform: scale(1.05);
}

.sports-swiper,
.movies-swiper {
    padding-bottom: 30px;
    /* Space for potential pagination if added later */
}

/* Sports Categories Grid */
.sports-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.sport-cat-card {
    background: var(--color-bg-card);
    /* Use site card background */
    border: 1px solid var(--color-border);
    /* Use site border color */
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sport-cat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    /* Use site shadow */
    border-color: var(--color-primary);
    /* Use primary blue on hover */
}

/* Background Watermark Icon */
.cat-bg-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.03);
    z-index: 0;
    pointer-events: none;
}

/* Sports Category Backgrounds */
.sport-cat-card:nth-child(1) {
    background: linear-gradient(rgba(18, 18, 18, 0.5), rgba(18, 18, 18)), url('../img/sports/Football_4874.jpg');
    background-size: cover;
    background-position: center;
}

.sport-cat-card:nth-child(2) {
    background: linear-gradient(rgba(18, 18, 18, 0.5), rgba(18, 18, 18)), url('../img/sports/Basketball_8088.jpg');
    background-size: cover;
    background-position: center;
}

.sport-cat-card:nth-child(3) {
    background: linear-gradient(rgba(18, 18, 18, 0.5), rgba(18, 18, 18)), url('../img/sports/Motosports_7762.jpg');
    background-size: cover;
    background-position: center;
}

.sport-cat-card:nth-child(4) {
    background: linear-gradient(rgba(18, 18, 18, 0.5), rgba(18, 18, 18)), url('../img/sports/OtherSports.jpg');
    background-size: cover;
    background-position: center;
}

/* Foreground Icon */
.cat-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    z-index: 1;
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.4));
}

.sport-cat-card h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    z-index: 1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sport-cat-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sport-cat-card ul li {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.sport-cat-card:hover ul li {
    color: #fff;
}

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

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

@media (max-width: 640px) {
    .sports-categories-grid {
        grid-template-columns: 1fr;
    }
}

/* Reviews Swiper Equal Height */
.reviews-swiper .swiper-wrapper {
    align-items: stretch;
}

.reviews-swiper .swiper-slide {
    height: auto;
    display: flex;
    /* Ensure the card fills the slide */
}

.reviews-swiper .review-card {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.reviews-swiper .review-card p {
    flex-grow: 1;
    /* Pushes content to fill space if needed */
}

/* Button Glow Effect */
.btn--glow {
    position: relative;
    overflow: hidden;
}

.btn--glow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease;
    border-radius: 50%;
    pointer-events: none;
}

.btn--glow:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

/* Channel List Accordion Styles */
.accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.accordion-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s ease;
    user-select: none;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.accordion-header.active {
    background: rgba(59, 130, 246, 0.1);
    color: var(--color-primary);
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    padding: 25px;
    border-top: 1px solid var(--color-border);
    background: rgba(15, 23, 42, 0.5);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

.channel-group {
    margin-bottom: 25px;
}

.channel-group:last-child {
    margin-bottom: 0;
}

.channel-group h4 {
    color: var(--color-text-main);
    margin-bottom: 15px;
    font-size: 1rem;
    border-left: 3px solid var(--color-primary);
    padding-left: 10px;
}

.channel-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 10px 20px;
    list-style: none;
    padding: 0;
}

.channel-list-grid li {
    position: relative;
    padding-left: 20px;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.channel-list-grid li::before {
    content: '\f101';
    /* FontAwesome angle-double-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-size: 0.8rem;
    top: 4px;
}

.flag-icon {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* =========================================
   Continent Filter Tabs (Premium Design)
   ========================================= */

.continent-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 30px auto 40px;
    padding: 0 10px;
}

@media (max-width: 838px) {
    .continent-tabs {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 448px) {
    .continent-tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

.continent-tab {
    background: rgba(255, 255, 255, 0.03);
    /* Subtle glass effect */
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-text-muted);
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Hover Effect */
.continent-tab:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Active State - PRO LOOK */
.continent-tab.active {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .continent-tabs {
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 10px;
        /* Space for scrollbar if any */
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        justify-content: flex-start;
        mask-image: linear-gradient(to right, black 85%, transparent 100%);
    }

    .continent-tab {
        padding: 10px 18px;
        font-size: 0.9rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
}

/* WhatsApp Floating Widget */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: #FFF;
}

@keyframes pulse-green {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}


:root {
    --color-smoke: #1F2427;
    --color-chalk: #F9FAFA;
    --color-tarmac-light-60: #9EA2A4;
    --color-link: #006FE8;
}

.supported-devices {
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    display: flex;
    position: relative;
    padding-block: 60px;
}

.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    margin-inline: auto;
}

.devices-title {
    color: var(--color-chalk);
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    line-height: 110%;
    margin-bottom: 32px;
    max-width: 680px;
}

.gold-color {
    color: var(--color-primary);
}

.devices-description {
    color: var(--color-tarmac-light-60);
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    max-width: 680px;
}

.device-divider {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 20px;
    justify-content: center;
    margin-top: 32px;
}

.device-header {
    color: var(--color-chalk);
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}

.line {
    height: 1px;
    background: #3D4549;
    max-width: 393px;
    width: 100%;
}

.logo-container {
    margin: 48px auto 0 auto;
    padding: 4px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 48px;
    column-gap: 28px;
    max-width: 1073px;
    align-items: center;
    justify-content: center;
    direction: ltr;
}

.device-logo {
    max-height: 26px;
    max-width: 100%;
    object-fit: contain;
}

/* Media Queries */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .supported-devices {
        padding-top: 40px;
        padding-bottom: 0;
    }

    .content-container {
        padding-block: 60px;
    }

    .line {
        max-width: 220px;
    }
}

@media (max-width: 767px) {
    .supported-devices {
        width: 100%;
        align-items: start;
        box-sizing: border-box;
        flex-direction: column;
        height: auto;
        padding: 20px;
        display: block;
    }

    .logo-container {
        width: 100%;
        max-width: 100%;
    }

    .device-logo {
        max-height: 20px;
    }

    .line {
        display: none;
    }
}

/* RTL Support */
[dir='rtl'] .logo-container {
    direction: rtl;
}

/* Duplicate variables block removed */

.supported-devices {
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    display: flex;
    position: relative;
    padding-block: 60px;

}

.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    margin-inline: auto;
}

.devices-title {
    color: var(--color-chalk);
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    line-height: 110%;
    margin-bottom: 32px;
    max-width: 680px;
}

.gold-color {
    color: var(--color-primary);
}

.devices-description {
    color: var(--color-tarmac-light-60);
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    max-width: 680px;
}

.device-divider {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 20px;
    justify-content: center;
    margin-top: 32px;
}

.device-header {
    color: var(--color-chalk);
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}

.line {
    height: 1px;
    background: #3D4549;
    max-width: 393px;
    width: 100%;
}

.logo-container {
    margin: 48px auto 0 auto;
    padding: 4px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 48px;
    column-gap: 28px;
    max-width: 1073px;
    align-items: center;
    justify-content: center;
    direction: ltr;
}

.device-logo {
    max-height: 26px;
    max-width: 100%;
    object-fit: contain;
}

/* Media Queries */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .supported-devices {
        padding-top: 40px;
        padding-bottom: 0;
    }

    .content-container {
        padding-block: 60px;
    }

    .line {
        max-width: 220px;
    }
}

@media (max-width: 767px) {
    .supported-devices {
        width: 100%;
        align-items: start;
        box-sizing: border-box;
        flex-direction: column;
        height: auto;
        padding: 20px;
        display: block;
    }

    .logo-container {
        width: 100%;
        max-width: 100%;
    }

    .device-logo {
        max-height: 20px;
    }

    .line {
        display: none;
    }
}

.pricing-note {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: var(--color-success);
}