/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #000000;
    color: #939393;
}

/* Header Styles */
.header {
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.14));
    z-index: 1000;
    transition: background-color 0.3s ease;

}



.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo a {
    color: #4ff9ff;
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo a:hover {
    color: #4ff9ff;
}

.nav-menu {
    display: flex;
    align-items: center;
    z-index: 1000;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1.1rem;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: #4ff9ff;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
    
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Tablet and Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 50%;
        background: rgba(22, 22, 22, 0.658);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: left 0.3s ease;
        border-radius: 25px;
        
    }

    .nav-links.active {
        left: 45%;
        position: absolute;
        gap: 1.8rem;

    }

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

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

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

/* Mobile version */
.section-home{
    background-image: url('/images/hero/background.webp');
    background-size: cover;
    background-size: cover;
    background-position: center;
}

@media (max-width: 762px) {
    .section-home {
        background-image: url('/images/hero/mobile.webp');
        background-size: cover;
        background-size: cover;
        background-position: center;
    }
}

/*ro Section Styles */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.14));
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    padding: 0 2rem;
}

.left-content {
    max-width: 600px;
    color: #d6d6d6;
    margin-top: 50px;
}

.left-content h1 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature i {
    color: #4ff9ff;
    font-size: 1.2rem;
}

.feature span {
    font-size: 1.1rem;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
}

.primary-cta, .secondary-cta {
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary-cta {
    background: #4ff9ff;
    color: #000;
    border: none;
}

.secondary-cta {
    background: transparent;
    color: #c4c4c4;
    border: 2px solid #4ff9ff;
}

.primary-cta:hover {
    background: #4ff9ff;
    transform: translateY(-2px);
}

.secondary-cta:hover {
    background: rgba(255, 193, 7, 0.1);
    transform: translateY(-2px);
}

/* Tablet version (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .left-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-features {
        gap: 1.2rem;
    }
    
    .feature span {
        font-size: 1rem;
    }
    
    .primary-cta, .secondary-cta {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }
}

/* Small mobile devices (up to 480px) */
@media (max-width: 748px) {
    
    .hero-content {
        padding: 0 0.5rem;
    }
    
    .left-content h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-features {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .feature i {
        font-size: 1rem;
    }
    
    .feature span {
        font-size: 0.9rem;
    }
    
    .cta-buttons {
        gap: 0.8rem;
    }
    
    .primary-cta, .secondary-cta {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}




/* Footer Styles */
.footer {
    background: #000;
    color: #d6d6d6;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-logo .logo {
    font-size: 2.5rem;
    color: #4ff9ff;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    color: #4ff9ff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #4ff9ff;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #4ff9ff;
    color: #000;
    transform: translateY(-3px);
}

.newsletter h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    background: #4ff9ff;
    color: #000;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #7e9c9d;
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

.payment-methods {
    display: flex;
    gap: 1rem;
}

.payment-methods i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.payment-methods i:hover {
    color: #4ff9ff;
}

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

@media (max-width: 768px) {
    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .footer-logo .logo {
        font-size: 2rem;
    }
    
    .footer-column h3 {
        font-size: 1.1rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
    }
    
    .payment-methods i {
        font-size: 1.2rem;
    }
}

/* Sports Section Styles */
.sports-section {
    background: #000;
    color: #d6d6d6;
}

.sports-container {
    max-width: 1400px;
    margin: 0 auto;
}

.sports-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.sports-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #d6d6d6;
    line-height: 1.2;
}

.sports-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Large Desktop (1440px and above) */
@media (min-width: 1440px) {
    .sports-title {
        font-size: 3rem;
    }
    
    .sports-description {
        font-size: 1.4rem;
        max-width: 900px;
    }
}

/* Desktop (1024px - 1439px) */
@media (max-width: 1439px) and (min-width: 1024px) {
    .sports-title {
        font-size: 2.5rem;
    }
    
    .sports-description {
        font-size: 1.25rem;
        max-width: 800px;
    }
}

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
    .sports-title {
        font-size: 2.5rem;
    }
    
    .sports-description {
        font-size: 1.2rem;
        max-width: 700px;
    }
}

/* Mobile (480px - 767px) */
@media (max-width: 767px) and (min-width: 481px) {
    .sports-header {
        margin-bottom: 3rem;
    }
    
    .sports-title {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }
    
    .sports-description {
        font-size: 1.1rem;
        max-width: 600px;
    }
}

/* Small Mobile (up to 479px) */
@media (max-width: 480px) {
    .sports-header {
        margin-bottom: 2.5rem;
        padding: 0 0.5rem;
    }
    
    .sports-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .sports-description {
        font-size: 1rem;
        max-width: 100%;
        padding: 0 0.5rem;
    }
}

.channels-carousel {
    margin: 0 auto;
    max-width: 1400px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.channels-swiper {
    padding: 1rem 0;
    overflow: hidden;
    width: 100%;
}

.channel-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.channel-slide:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.channel-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.channel-slide:hover img {
    transform: scale(1.1);
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: #4ff9ff !important;
    background: rgba(0, 0, 0, 0.5);
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .channel-slide {
        height: 70px;
    }
}

@media (max-width: 768px) {
    .channel-slide {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .channel-slide {
        height: 50px;
        padding: 0.8rem;
    }
}

/* Section 2 & 3 Styles */
.section-2, .section-3 {
    padding: 2rem 1rem;
}

.swiper-container {
    max-width: 1200px;
    overflow: hidden;
}

.swiper-slide {
    height: 60px;
}

.swiper-slide img {
    width: 95%;
    height: 95%;
    object-fit: cover;
    border-radius: 8px;
}

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

.section-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}


/* Sports Categories Styles */
.sports-categories {
    margin-top: 2rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.sports-categories .swiper-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Desktop Grid Layout */
@media (min-width: 769px) {
    .sports-categories .swiper-wrapper {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        justify-content: center;
        align-items: center;
    }
    
    .sports-categories .swiper-slide {
        width: auto !important;
        margin: 0 auto;
    }
    
    .sports-categories .swiper-pagination,
    .sports-categories .swiper-button-next,
    .sports-categories .swiper-button-prev {
        display: none;
    }
}

/* Mobile Swiper Layout */
@media (max-width: 768px) {
    .sports-categories .swiper-container {
        padding: 1rem 0 3rem;
        width: 90%;
        margin: 0 auto;
    }
    
    .sports-categories .swiper-slide {
        width: 100%;
        padding: 1.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .sports-categories .swiper-pagination {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        width: auto;
    }
    
    .sports-categories .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        background: #4ff9ff;
        opacity: 0.5;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .sports-categories .swiper-pagination-bullet-active {
        opacity: 1;
        transform: scale(1.2);
    }

    .sports-categories .swiper-button-next,
    .sports-categories .swiper-button-prev {
        color: #4ff9ff;
        background: rgba(0, 0, 0, 0.5);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .sports-categories .swiper-button-next:after,
    .sports-categories .swiper-button-prev:after {
        font-size: 1.2rem;
    }

    .sports-categories .swiper-button-next:hover,
    .sports-categories .swiper-button-prev:hover {
        background: rgba(0, 0, 0, 0.8);
    }

    .sports-categories .swiper-button-next {
        right: 10px;
    }

    .sports-categories .swiper-button-prev {
        left: 10px;
    }
}

.category {
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    background-image: url('/images/sports/Football_4874.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.453), rgba(0, 0, 0, 0.4));
}
.category1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.453), rgba(0, 0, 0, 0.4));
}
.category2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.453), rgba(0, 0, 0, 0.4));
}
.category3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.453), rgba(0, 0, 0, 0.4));
}

.category1 {
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    background-image: url('/images/sports/Basketball_8088.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.category2 {
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    background-image: url('/images/sports/Motosports_7762.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.category3{
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    background-image: url('/images/sports/Equestrian_2685.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}



.category-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #4ff9ff;
    transition: transform 0.3s ease;
    position: relative;
}

.category:hover .category-icon {
    transform: scale(1.1) rotate(10deg);
}
.category1:hover .category-icon {
    transform: scale(1.1) rotate(10deg);
}
.category2:hover .category-icon {
    transform: scale(1.1) rotate(10deg);
}
.category3:hover .category-icon {
    transform: scale(1.1) rotate(10deg);
}

.category h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #4ff9ff;
    margin-left: 1rem;
    margin-right: 1rem;
    position: relative;
}
.category1 h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #4ff9ff;
    margin-left: 1rem;
    margin-right: 1rem;
    position: relative;
}
.category2 h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #4ff9ff;
    margin-left: 1rem;
    margin-right: 1rem;
    position: relative;
}
.category3 h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #4ff9ff;
    margin-left: 1rem;
    margin-right: 1rem;
    position: relative;
}
.category-list {
    list-style: none;
    padding: 0;
    position: relative;
}

.category-list li {
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.category-list li:hover {
    color: #4ff9ff;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .category .category1 .category2 .category3{
        padding: 1.5rem;
    }
    
    .category-icon {
        font-size: 2rem;
    }
    
    .category .category1 .category2 .category3h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .category .category1 .category2 .category3{
        padding: 1.2rem;
    }
    
    .category-icon {
        font-size: 1.8rem;
    }
    
    .category .category1 .category2 .category3 h3 {
        font-size: 1.2rem;
    }
    
    .category-list li {
        font-size: 0.9rem;
    }
}

/* Movies Section Styles */
.movies-section {
    background: #000;
    color: #d6d6d6;
    padding: 4rem 0;
}

.movies-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.movies-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #d6d6d6;
    line-height: 1.2;
}

.movies-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.movies-carousel {
    position: relative;
    padding: 0 0rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.movies-carousel .swiper-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 0;
}

.movie-slide {
    padding: 0.5rem;
    display: flex;
    justify-content: center;
}

.movie-poster {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 2/3;
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}
.movie-poster::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.095), rgba(6, 3, 3, 0.395));
}
.movie-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.movie-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1.5rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.movie-overlay h3 {
    font-size: 1.2rem;
    margin: 0;
    color: #d6d6d6;
}

.movie-poster:hover {
    transform: scale(1.05);
}

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

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

/* Swiper Navigation Buttons */
.movies-carousel .swiper-button-next,
.movies-carousel .swiper-button-prev {
    color: #4ff9ff;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.movies-carousel .swiper-button-next:after,
.movies-carousel .swiper-button-prev:after {
    font-size: 1.2rem;
}

.movies-carousel .swiper-button-next:hover,
.movies-carousel .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Responsive Styles */
@media (min-width: 1440px) {
    .movies-title {
        font-size: 3rem;
    }
    
    .movies-description {
        font-size: 1.4rem;
        max-width: 900px;
    }
}

@media (max-width: 1023px) {
    .movies-title {
        font-size: 2.5rem;
    }
    
    .movies-description {
        font-size: 1.2rem;
        max-width: 700px;
    }
}

@media (max-width: 767px) {
    .movies-section {
        padding: 3rem 0;
    }
    
    .movies-container {
        padding: 0 1rem;
    }
    
    .movies-carousel {
        padding: 0 0rem;
    }
    
    .movies-title {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }
    
    .movies-description {
        font-size: 1.1rem;
        max-width: 600px;
    }
}

@media (max-width: 480px) {
    .movies-section {
        padding: 2.5rem 0;
    }
    
    .movies-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .movies-description {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .movie-overlay h3 {
        font-size: 1rem;
    }
}

/* Responsive Styles */
@media (max-width: 1023px) {
    .movie-poster {
        max-width: 240px;
    }
}

@media (max-width: 767px) {
    .movie-poster {
        max-width: 280px;
    }
    
    .movies-carousel {
        padding: 0 0rem;
    }
}

@media (max-width: 480px) {
    .movie-poster {
        max-width: 260px;
    }
}

/* Features Section Styles */
.features-section {
    background: #000;
    color: #d6d6d6;
    padding: 4rem 0;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.features-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #d6d6d6;
    line-height: 1.2;
}

.features-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: #4ff9ff;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #4ff9ff;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Responsive Styles for Features Section */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-title {
        font-size: 2.5rem;
    }
    
    .features-description {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 3rem 0;
    }
    
    .features-header {
        margin-bottom: 3rem;
    }
    
    .features-title {
        font-size: 2.2rem;
    }
    
    .features-description {
        font-size: 1.1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .features-title {
        font-size: 1.8rem;
    }
    
    .features-description {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 1.2rem;
    }
    
    .feature-icon {
        font-size: 1.8rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
} 

/* Reviews Section Styles */
.reviews-section {
    background: #000;
    padding: 2rem 0;
    color: #d6d6d6;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.reviews-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #d6d6d6;
    text-align: center;
    width: 100%;
}

.reviews-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    max-width: 800px;
    text-align: center;
    width: 100%;
}

.reviews-swiper {
    padding: 1rem 0;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: rgba(255, 255, 255, 0.085);
    border-radius: 15px;
    padding: 1rem;
    
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 1rem;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.stars {
    color: #FFC107;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-style: italic;
    text-align: center;
}

.reviewer {
    font-weight: 600;
    color: #4ff9ff;
    font-size: 1.1rem;
    text-align: center;
}

/* Swiper Navigation */
.reviews-swiper .swiper-button-next,
.reviews-swiper .swiper-button-prev {
    color: #4ff9ff;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.reviews-swiper .swiper-button-next:after,
.reviews-swiper .swiper-button-prev:after {
    font-size: 1.2rem;
}

.reviews-swiper .swiper-button-next:hover,
.reviews-swiper .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Swiper Pagination */
.reviews-swiper .swiper-pagination {
    position: relative;
    margin-top: 2rem;
}

.reviews-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 0.5;
}

.reviews-swiper .swiper-pagination-bullet-active {
    background: #4ff9ff;
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .reviews-section h2 {
        font-size: 2.2rem;
    }
    
    .reviews-section p {
        font-size: 1rem;
        max-width: 700px;
    }
    
    .reviews-swiper {
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 3rem 0;
    }
    
    .reviews-section h2 {
        font-size: 2rem;
    }
    
    .reviews-section p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .stars {
        font-size: 1.3rem;
    }
    
    .review-text {
        font-size: 1rem;
    }
    
    .reviews-swiper {
        max-width: 600px;
    }
}

@media (max-width: 480px) {
    .reviews-section h2 {
        font-size: 1.8rem;
    }
    
    .reviews-section p {
        font-size: 0.9rem;
    }
    
    .review-card {
        padding: 1.2rem;
    }
    
    .stars {
        font-size: 1.2rem;
    }
    
    .review-text {
        font-size: 0.95rem;
    }
    
    .reviewer {
        font-size: 1rem;
    }
    
    .reviews-swiper {
        max-width: 300px;
    }
}
.reviews-swiper .swiper-button-next,
.reviews-swiper .swiper-button-prev {
    color: #4ff9ff;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.reviews-swiper .swiper-button-next:after,
.reviews-swiper .swiper-button-prev:after {
    font-size: 1.2rem;
}

.reviews-swiper .swiper-button-next:hover,
.reviews-swiper .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* FAQ Section Styles */
.faq-section {
    background: #000;
    color: #d6d6d6;
    padding: 4rem 0;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #d6d6d6;
    line-height: 1.2;
}

.faq-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-accordion {
    margin: 0 auto;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

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

.accordion-header h3 {
    font-size: 1.25rem;
    color: #4ff9ff;
    margin: 0;
}

.accordion-icon {
    color: #4ff9ff;
    transition: transform 0.3s ease;
}

.accordion-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.accordion-content ul, .accordion-content ol {
    color: rgba(255, 255, 255, 0.8);
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.accordion-content li {
    margin-bottom: 0.5rem;
}

.accordion-item.active .accordion-content {
    padding: 1.5rem;
    max-height: 1000px;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

/* Responsive Styles for FAQ Section */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-header {
        margin-bottom: 3rem;
    }
    
    .faq-title {
        font-size: 2.2rem;
    }
    
    .faq-description {
        font-size: 1.1rem;
    }
    
    .accordion-header {
        padding: 1.2rem;
    }
    
    .accordion-header h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 1.8rem;
    }
    
    .faq-description {
        font-size: 1rem;
    }
    
    .accordion-header {
        padding: 1rem;
    }
    
    .accordion-content {
        padding: 0 1rem;
    }
    
    .accordion-item.active .accordion-content {
        padding: 1rem;
    }
} 

/* Pricing Section Styles */
.pricing-section {
    background: #000;
    color: #d6d6d6;
    padding: 4rem 0;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.pricing-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #d6d6d6;
    line-height: 1.2;
}

.pricing-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 0.5px solid #4ff9ff;

}

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

.pricing-card.popular {
    background: rgba(7, 243, 255, 0.1);
    border: 2px solid #4ff9ff;
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #4ff9ff;
    color: #000;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.card-header h3 {
    font-size: 1.5rem;
    color: #4ff9ff;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

.period {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

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

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.features-list i {
    color: #4ff9ff;
}

.subscribe-btn {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.subscribe-btn.primary {
    background: #4ff9ff;
    color: #000;
}

.subscribe-btn.primary:hover {
    background: #4ff9ff;
}

.pricing-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    text-align: center;
}

.pricing-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-info i {
    color: #4ff9ff;
}

/* Responsive Styles for Pricing Section */
@media (max-width: 1138px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-title {
        font-size: 2.5rem;
    }
    
    .pricing-description {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 3rem 0;
    }
    
    .pricing-header {
        margin-bottom: 3rem;
    }
    
    .pricing-title {
        font-size: 2.2rem;
    }
    
    .pricing-description {
        font-size: 1.1rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .amount {
        font-size: 2rem;
    }
}

@media (max-width: 544px) {
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-title {
        font-size: 1.8rem;
    }
    
    .pricing-description {
        font-size: 1rem;
    }
    
    .pricing-info {
        flex-direction: column;
        gap: 1rem;
        margin-left: 25px;
    }
    
    .pricing-card {
        padding: 1.2rem;
    }
    
    .amount {
        font-size: 1.8rem;
    }
} 

/* Channels Section Styles */
.channels-section {
    background: #000;
    color: #fff;
    padding: 4rem 0;
}

.channels-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.channels-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.2;
}

.channels-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Search and Filter Styles */
.search-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    gap: 2rem;
}

.search-box {
    flex: 1;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: none;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
}

.country-filter select {
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

/* Country Section Styles */
.country-section {
    margin-bottom: 4rem;
}

.country-title {
    font-size: 2rem;
    color: #4ff9ff;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.channels-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.channel-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.channel-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.channel-card img {
    width: 100%;
    max-width: 120px;
    height: auto;
    margin-bottom: 1rem;
    object-fit: contain;
}

.channel-card h3 {
    font-size: 1.1rem;
    color: #fff;
    margin: 0;
    word-break: break-word;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .channels-title {
        font-size: 2.5rem;
    }
    
    .channels-description {
        font-size: 1.2rem;
    }
    
    .channels-list {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
    
    .group-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .channels-section {
        padding: 3rem 0;
    }
    
    .channels-header {
        margin-bottom: 3rem;
    }
    
    .channels-title {
        font-size: 2.2rem;
    }
    
    .channels-description {
        font-size: 1.1rem;
    }
    
    .search-filter {
        flex-direction: column;
        gap: 1rem;
    }
    
    .search-box,
    .country-filter {
        width: 100%;
    }
    
    .channels-list {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .channel-card {
        padding: 1rem;
        min-height: 80px;
    }
    
    .channel-card h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .channels-title {
        font-size: 1.8rem;
    }
    
    .channels-description {
        font-size: 1rem;
    }
    
    .country-title {
        font-size: 1.5rem;
    }
    
    .channels-list {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }
    
    .channel-card {
        padding: 0.8rem;
        min-height: 70px;
    }
    
    .channel-card img {
        max-width: 100px;
    }
    
    .channel-card h3 {
        font-size: 0.9rem;
    }
    
    .group-title {
        font-size: 1.2rem;
    }
}

/* Channel Group Styles */
.channel-group {
    margin-bottom: 3rem;
}

.group-title {
    font-size: 1.5rem;
    color: #4ff9ff;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Channel Subgroup Styles */
.channel-subgroup {
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    padding: 1.5rem;
}

.subgroup-title {
    font-size: 1.2rem;
    color: #4ff9ff;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Update Channels List Styles */
.channels-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.channel-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.channel-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.channel-card h3 {
    font-size: 1.1rem;
    color: #fff;
    margin: 0;
    word-break: break-word;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .channels-list {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
    
    .group-title {
        font-size: 1.3rem;
    }
    
    .subgroup-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .channels-list {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .channel-card {
        padding: 1rem;
        min-height: 80px;
    }
    
    .channel-card h3 {
        font-size: 1rem;
    }
    
    .channel-subgroup {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .channels-list {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }
    
    .channel-card {
        padding: 0.8rem;
        min-height: 70px;
    }
    
    .channel-card h3 {
        font-size: 0.9rem;
    }
    
    .group-title {
        font-size: 1.2rem;
    }
    
    .subgroup-title {
        font-size: 1rem;
    }
    
    .channel-subgroup {
        padding: 0.8rem;
    }
}
.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    padding: 6px 15px;
    background-color: #4ff9ff;
    color: rgb(0, 0, 0);
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-button i {
    font-size: 24px;
    margin-right: 8px;
}

.whatsapp-button span {
    font-family: Arial, sans-serif;
    font-size: 16px;
}
.pricing-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.pricing-btn {
    padding: 0.8rem 0.5rem;
    border: none;
    border-radius: 25px;
    background-color: #212222;
    color:#ededed;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-btn:hover {
    background-color:  #4ff9ff;
    color:#161616;
    transform: translateY(-2px);
}

.pricing-btn.active {
    background-color: #4ff9ff;
    color: #161616;;
    transform: translateY(-2px);
}
.pricings-section.active {
    display: block;
}


.pricings-section.active {
    animation: fadeIn 0.5s ease-out;
}
.pricings-section {
    display: none;
}

.pricings-section.active {
    display: block;
}
/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}