:root {
    /* Primary Colors */
    --primary-color: #8e2f7d;
    --primary-dark: #7d2a6e;
    --primary-light: #9f3f8e;
    
    /* Background Colors - Original */
    --background-color: #00031c;
    --background-light: #000428;
    --background-darker: #000210;
    
    /* Text Colors */
    --text-primary: #F8FAFC;
    --text-secondary: #CBD5E1;
    --text-muted: #94A3B8;
    
    /* Accent Colors */
    --accent-success: #059669;
    --accent-warning: #D97706;
    --accent-danger: #DC2626;
    
    /* UI Elements */
    --card-bg: rgba(0, 3, 28, 0.7);
    --border-color: rgba(142, 47, 125, 0.1);
    --hover-bg: rgba(142, 47, 125, 0.1);
    
    /* Transitions */
    --transition-fast: 0.2s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.3);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
}

body {
    min-height: 100vh;
    background-color: var(--background-color) !important;
    font-family: "Roboto Condensed", sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

header video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7);
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(
        to bottom,
        rgba(2, 6, 23, 0.699),
        rgba(2, 6, 23, 0.63)
    );
    z-index: 2;
}

/* .roundedNav{
    border: 1px solid var(--primary-color);
} */

.roundedNav ul li a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.roundedNav ul li a:hover {
    background-color: var(--hover-bg);
    color: var(--primary-light);
}

.roundedNav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-normal);
    transform: translateX(-50%);
}

.roundedNav ul li a:hover::after {
    width: 80%;
}

.LargeNav .contactList li a {
    background-color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.LargeNav .contactList li a:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

header .carousel img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.ctaButtons a {
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 8px 15px;
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.ctaButtons a:hover {
    transform: scale(1.1);
}

.sectionMovies {
    margin-top: 8rem;
    padding: 2rem 0;
}

.sectionMovies .titleSection,
.sectionSports .titleSection h2,
.sectionplan h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary-light), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sectionMovies p {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.swiper {
    overflow: hidden;
    padding: 30px 0;
}

/* Movies Swiper - Coverflow Effect */
.moviesSwiper {
    padding: 50px 0 100px !important;
}

.moviesSwiper .swiper-slide {
    width: 400px;
    transition: all 0.4s;
    transform: scale(0.85);
}

@media screen and (max-width: 540px) {
    .moviesSwiper .swiper-slide {
        width: 310px;
    }
}

.moviesSwiper .swiper-slide-active {
    transform: scale(1);
    z-index: 10;
}

.movie-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(8px);
}

.movie-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

.movie-card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: var(--transition-normal);
}

.movie-card:hover img {
    transform: scale(1.05);
}

.movie-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 2rem 1.5rem;
    background: linear-gradient(transparent, rgba(5, 5, 7, 0.95));
    color: var(--text-primary);
    transform: translateY(100px);
    transition: var(--transition-normal);
}

.movie-card:hover .movie-info {
    transform: translateY(0);
}

.swiper-button-next,
.swiper-button-prev {
    color: white !important;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.sectionSports {
    margin-top: 6rem;
    padding: 4rem 0;
    background: linear-gradient(to bottom, var(--background-color), var(--background-darker));
}

.sportsSwiper {
    padding: 30px 0;
    overflow: hidden;
}

.sportsSwiper .swiper-slide {
    transition: transform 0.3s;
}

.sportsSwiperRight .channel-box {
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
    backdrop-filter: blur(8px);
}

.sportsSwiperRight .channel-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.rightswiperDesc h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 0.75rem;
}

.rightswiperDesc p,
.ourCollection p {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.6;
    padding: 0.5rem 0;
}

.rightswiperDesc a,
.ourCollection a {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    background-color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    display: inline-block;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

.rightswiperDesc a:hover,
.ourCollection a:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.sectionunderSwipers {
    background-image: url("/images/sportimages/backgrondsectionsport.webp");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
}

.ourCollection h2 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
}

.ourCollection ul li {
    color: #fff;
    font-weight: 600;
    margin-top: 10px;
}

.card .cardTitle {
    background-color: var(--primary-color);
    font-size: 25px;
    font-weight: 700;
    text-align: center;
    border-radius: 8px;
    padding: 10px;
}

.card .planPrice {
    font-size: 45px;
    font-weight: 700;
}

.card i {
    margin-right: 10px;
}

.sectionplan li {
    font-size: 16px;
    font-size: 800;
}

.sectionplan a {
    background-image: linear-gradient(
        117deg,
        var(--primary-color) 0%,
        var(--background-color) 100%
    );
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    padding: 10px;
    border-radius: 8px;
    width: 100%;
    text-align: center;
    transition: all 0.2s ease;
}

.sectionplan a:hover {
    transform: scale(1.02);
}

.freeTrial .firstSection h1 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 50px;
}

.freeTrial .firstSection p {
    color: #cccdd2;
    font-size: 18px;
    font-weight: 600;
}

.freeTrial label {
    font-size: 18px;
    font-weight: 600;
    margin: 8px 0;
}

.freeTrial input {
    border: none;
    border-radius: 8px;
    padding: 6px;
    box-shadow: 0 0 3px 0px #c519a7;
    outline: none;
}

.freeTrial .secondSection form button {
    width: 100%;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    padding: 10px;
}

.secondSection .setup h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.secondSection .setup p {
    color: #cccdd2;
    font-size: 18px;
    font-weight: 600;
    margin-left: 10px;
    padding: 0 10px;
}

footer {
    background: linear-gradient(to bottom, var(--background-darker), var(--background-color));
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

footer a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-block;
}

footer a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

footer p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

footer h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

footer h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

footer .subscribe {
    position: relative;
    max-width: 400px;
}

footer .subscribe input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background: var(--background-light);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition-normal);
}

footer .subscribe input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px var(--primary-color);
}

footer .subscribe button {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: var(--text-primary);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
}

footer .subscribe button:hover {
    background-color: var(--primary-dark);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-light);
    border-radius: 50%;
    transition: var(--transition-normal);
    border: 1px solid var(--border-color);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.social-links i {
    color: var(--text-primary);
    font-size: 1.25rem;
}

.sectioncounter p {
    font-size: 18px;
    font-weight: 700;
    color: #fff !important;
}

.sectioncounter h2 {
    font-size: 50px;
    font-weight: 700;
}

/* Accordion Customization */
.custom-accordion .accordion-item {
    background-color: #0a1124; /* Dark blue background */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle white border */
}

.custom-accordion .accordion-header {
    background-color: #0a1124;
}

.custom-accordion .accordion-button {
    background-color: #0a1124;
    color: #fff; /* White text */
    font-weight: bold;
    border: none;
    box-shadow: none;
    padding: 15px;
}

.custom-accordion .accordion-button::after {
    filter: invert(100%); /* Makes arrow icon white */
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: #14213d; /* Darker shade when active */
    color: var(--primary-color);
}

.custom-accordion .accordion-body {
    background-color: #0a1124;
    color: #ddd; /* Light gray text */
    padding: 20px;
    font-size: 16px;
}

/* Adjust text color in paragraphs and lists */
.custom-accordion .accordion-body p,
.custom-accordion .accordion-body li {
    color: #ccc;
}

.custom-accordion .accordion-item:not(:last-child) {
    margin-bottom: 5px; /* Space between items */
}

.accordion-button:focus {
    box-shadow: none !important;
}

.custom-accordion .accordion-button {
    padding: 20px 15px !important;
}

.smallnav .expanddrawermenu {
    border: none;
}

.smallnav .expanddrawermenu span {
    color: #fff;
}

.expanddrawermenu:focus {
    border: none !important;
    outline: none !important;
}

.smallnav .offcanvas-body ul li {
    margin-bottom: 10px;
}

.smallnav .offcanvas-body ul li a:hover {
    box-shadow: 2px 2px 5px 0px rgb(61, 3, 78);
    color: #7a7a7a;
}

.smallnav .offcanvas-body ul li a {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    padding: 5px 25px;
    transition: all 0.3s ease;
}

.carousel-caption {
    left: 8px !important;
}

.Blogs .Blogsheader {
    background-image: url("/images/bg_gradient_blogs.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 300px !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.redMoreblog {
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    display: inline-block;
}

.redMoreblog:hover {
    background-color: var(--primary-color);
}

.Blogs .blogHeader {
    background-image: url("/images/backgroundimgblog.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 300px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    box-shadow: 0 0 10px 0px #0000009e;
}

.blogdetailsHeader .blogdetailsHeadertitle {
    width: 100%;
    height: 300px;
    background-image: linear-gradient(180deg, #ffffff2b 0%, #ffffff00 100%);
    border: 1px solid #ffffff2b;
    background-color: transparent;
    border-radius: 10px;
}

.latestBlogcontent h4 a:hover {
    color: var(--primary-color) !important;
    transition: all 0.3s ease-in-out;
}

.blogdetailsHeaderannonce {
    background-image: radial-gradient(
        at center center,
        #7237bd 0%,
        #070b20 100%
    );
}



.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background-color: #25d366;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}



.sectionfeedback {
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.02);
}

.feedback-card {
    background: rgba(10, 17, 36, 0.8);
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(142, 47, 125, 0.1);
}

.feedback-card img {
    width: 100%;
    height: 520px;
    object-fit: contain;
    padding: 15px;
}

.feedbackSwiper {
    padding: 20px 0;

}


.feedbackSwiper .swiper-button-next,
.feedbackSwiper .swiper-button-prev {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.feedbackSwiper .swiper-button-next:after,
.feedbackSwiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.feedbackSwiper .swiper-pagination {
    position: relative;
    margin-top: 20px;
}

.feedbackSwiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
}

.feedbackSwiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

.sectionfeedback h2 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}