/* CSS Reset and Globals */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --background: #0a0a12;
    --background-secondary: #111116;
    --text: #f0f0f0;
    --text-secondary: #a0a0a0;
    --primary: #4361ee;
    --accent: #ff00e5;
    --border: rgba(48, 54, 61, 0.5);
    --primary-gradient: linear-gradient(45deg, #4361ee, #ff00e5, #00f2ff, #4361ee);
    --text-gradient: linear-gradient(90deg, #ff00e5, #4361ee, #00f2ff);
    --card-gradient: linear-gradient(145deg, rgba(26, 28, 44, 0.5), rgba(19, 20, 31, 0.9));
    --glow-blue: 0 0 20px rgba(67, 97, 238, 0.7);
    --radius: 12px;
    --transition: all 0.3s ease;
    --container-width: 1200px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(67, 97, 238, 0.05), transparent 30%),
                radial-gradient(circle at 90% 40%, rgba(255, 0, 229, 0.05), transparent 30%),
                radial-gradient(circle at 50% 80%, rgba(0, 242, 255, 0.05), transparent 30%);
    z-index: -1;
}

a { text-decoration: none; color: var(--text); transition: var(--transition); }
a:hover { color: var(--primary); }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

h1, h2, h3, h4 { line-height: 1.2; margin-bottom: 1rem; }
h1 { font-size: 3rem; font-weight: 700; }
h2 { font-size: 2.2rem; font-weight: 700; text-align: center; margin-bottom: 2rem; }
h3 { font-size: 1.5rem; font-weight: 600; }
p { margin-bottom: 1rem; color: var(--text-secondary); }

section {
    padding: 5rem 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.subtitle {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.d-none { display: none !important; }

/* Animations */
@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--primary-gradient);
    background-size: 400% auto;
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    animation: gradientAnimation 8s linear infinite;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--glow-blue); }

.btn-nav {
    background: var(--primary-gradient);
    background-size: 400% auto;
    color: white;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    transition: all 0.4s ease;
    animation: gradientAnimation 8s linear infinite;
}
.btn-nav:hover { transform: translateY(-2px); box-shadow: var(--glow-blue); }

/* Navigation */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 1rem 0;
    background-color: rgba(10, 10, 18, 0.9);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}
nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.6rem;
    font-weight: 700;
}
.logo img { height: 35px; }
.logo span {
    background: var(--text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 300% 300%;
    animation: gradientAnimation 4s ease infinite;
}
.nav-links ul {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}
.nav-links a {
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.menu-icon, .close-menu { display: none; font-size: 1.5rem; cursor: pointer; }


/* Hero Section */
.hero {
    padding: 10rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-content { max-width: 800px; margin: 0 auto 3rem; position: relative; z-index: 1; }
.hero h1 span {
    background: var(--text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 300% 300%;
    animation: gradientAnimation 4s ease infinite;
}
.hero p { font-size: 1.1rem; max-width: 700px; margin: 0 auto 2.5rem; }
.brand-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 4rem;
}

/* SLIDER CSS (Works on Desktop & Mobile) */
.channels-section {
    padding: 3rem 0;
    width: 100%;
    overflow: hidden; /* Important for preventing horizontal scroll issues */
}
.channel-logos {
    width: 100%;
}
.top-slider {
    width: 100%;
    margin: 2rem 0;
}
.top-slider .slick-list {
    padding: 0 50px; /* Add padding to sides for better centerMode appearance on desktop */
}
/* Style the slide container */
.top-slider .slick-slide {
    padding: 0 10px; /* Space between slides */
    transform: scale(0.9); /* Smaller for non-centered slides */
    transition: transform 0.4s ease;
    display: flex; /* Ensure images are properly aligned within slide */
    justify-content: center;
}
/* Style the image inside the slide */
.top-slider .slick-slide img {
    width: 170px; /* Fixed width for consistency */
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #fff;
}
/* Style for the centered slide */
.top-slider .slick-center {
    transform: scale(1.1); /* Make the center slide larger */
}


/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
}
.feature-card {
    background: var(--card-gradient);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    text-align: center; /* Centered for all screen sizes */
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--glow-blue); }
.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem auto; /* Centered */
    animation: gradientAnimation 6s linear infinite;
}
.feature-icon i { font-size: 1.8rem; color: white; }

/* Coverage Section */
.coverage-section .content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    text-align: left;
}
.coverage-features li {
    display: flex;
    align-items: flex-start; /* Align icon and text at start */
    gap: 0.8rem;
    margin-bottom: 1rem;
}
.coverage-features i { color: var(--primary); font-size: 1.2rem; min-width: 1.2rem; }
.coverage-image img { border-radius: var(--radius); }

/* Plans Section */
.plans-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
}
.plan-card {
    background: var(--card-gradient);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    text-align: left; /* Keep text left-aligned in card */
}
.plan-card:hover { transform: translateY(-5px); box-shadow: var(--glow-blue); }
.plan-card.popular {
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(255, 0, 229, 0.2);
    position: relative;
}
.popular-tag {
    background-color: var(--accent);
    color: white;
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    position: absolute;
    top: 12px;
    right: 12px;
}
.plan-header {
    text-align: left;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}
.price { font-size: 1.25rem; color: #f1f1f180; text-decoration: line-through; }
.discount-price { font-size: 2.2rem; font-weight: 700; color: var(--primary); }
.plan-features { flex-grow: 1; padding-top: 1.5rem; }
.plan-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}
.plan-feature i { color: var(--primary); min-width: 1.2rem; }
.btn-claim {
    background: var(--primary-gradient);
    background-size: 400% auto;
    margin-top: 1.5rem;
    display: block;
    width: 100%;
    padding: 0.8rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    border: none;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-claim:hover { transform: translateY(-2px); }

/* CTA Section */
.cta-section { text-align: center; }
.cta-section h2 { max-width: 800px; margin-left: auto; margin-right: auto; }
.cta-section p { max-width: 700px; margin-left: auto; margin-right: auto; margin-bottom: 2.5rem; }

/* Footer */
footer {
    padding: 5rem 0 1rem;
    position: relative;
    width: 100%;
    background-color: var(--background);
}
.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
    text-align: left;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.footer-column h4 { margin-bottom: 1.5rem; font-size: 1.2rem; color: var(--primary); }
.footer-column ul li { margin-bottom: 0.7rem; }
.footer-column ul li i { margin-right: 0.5rem; color: var(--primary); }
.social-icons { display: flex; gap: 1rem; margin-top: 1.5rem; justify-content: flex-start; /* Align to left */ }
.social-icons a { font-size: 1.5rem; color: var(--text-secondary); }
.social-icons a:hover { color: var(--primary); }
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
}

/* Claim Popup */
.covers {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.covers:not(.d-none) { opacity: 1; visibility: visible; }
.locker {
    width: 90%;
    max-width: 500px;
    background-color: var(--background-secondary);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    text-align: center;
}
.main { text-align: center; }
#pro-title { font-size: 1.2rem; margin-bottom: 0.5rem; }
#pro-per { font-size: 2rem; font-weight: 700; color: #12b5e5; margin-bottom: 1.5rem; }
.op {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
    text-align: left;
}
.op:last-child { border-bottom: none; }
.op div:first-child { color: var(--text-secondary); }
.op div:last-child { color: var(--text); font-weight: 500; word-break: break-all; }
#mored p { margin-top: 1.5rem; font-size: 0.95rem; color: var(--text-secondary); text-align: center; }
.btn-ver {
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    background-color: #12b5e5;
    border: none;
    border-radius: 6px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-ver:hover { transform: translateY(-2px); box-shadow: 0 0 10px rgba(18, 181, 229, 0.5); }


/* ========================================= */
/* === MOBILE RESPONSIVE FIXES START HERE === */
/* ========================================= */
@media (max-width: 768px) {
    .container { padding: 0 1rem; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }

    /* Mobile Navigation */
    .menu-icon { display: block; order: 1; }
    .logo { order: 0; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--background-secondary);
        transition: right 0.4s ease;
        z-index: 1001;
        box-shadow: -5px 0 25px rgba(0,0,0,0.3);
        padding-top: 5rem;
        display: flex;
        flex-direction: column;
    }
    .nav-links.active { right: 0; }
    .close-menu { display: block; position: absolute; top: 1.5rem; left: 1.5rem; font-size: 1.8rem; }
    .nav-links ul { flex-direction: column; align-items: flex-start; width: 100%; gap: 0; }
    .nav-links ul li { width: 100%; border-bottom: 1px solid var(--border); }
    .nav-links ul li:last-child { border-bottom: none; }
    .nav-links ul li a { padding: 1rem 1.5rem; display: block; width: 100%; text-align: left; }
    .nav-links ul li a.btn-nav { margin: 1rem 1.5rem; text-align: center; }

    /* Hero Section Mobile */
    .hero-content { margin-bottom: 2rem; }
    .brand-logos { gap: 1.5rem; margin-top: 2rem; }

    /* Slider Fixes for Mobile (using default .slick-slide styles) */
    .top-slider .slick-list {
        padding: 0 10px; /* Adjust padding for mobile view to show more of center slide */
    }
    .top-slider .slick-slide img {
        width: 150px; /* Slightly smaller on mobile */
        height: 220px; /* Adjust height */
    }

    /* Features Section Mobile */
    .features-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .feature-card { padding: 1.5rem; } /* Already centered by default */

    /* Coverage Section Mobile */
    .coverage-section .content-wrapper { grid-template-columns: 1fr; text-align: center; }
    .coverage-features { text-align: left; display: inline-block; margin-left: auto; margin-right: auto; }

    /* Plans Section Mobile */
    .plans-container { grid-template-columns: 1fr; gap: 1rem; }
    .plan-card { padding: 1rem; }
    .plan-header { text-align: center; }
    .plan-feature { justify-content: flex-start; }
    .popular-tag { top: 8px; right: 8px; }

    /* Footer Mobile */
    .footer-content { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .footer-links { grid-template-columns: 1fr; gap: 1rem; }
    .footer-column { padding: 1rem 0; border-bottom: 1px solid var(--border); }
    .footer-column:last-child { border-bottom: none; }
    .social-icons { justify-content: center; }
    .footer-bottom { padding-top: 1rem; }

    /* Locker Popup Mobile */
    .locker { padding: 1rem; }
    .op { flex-direction: column; gap: 0.2rem; text-align: center; }
    .op div:first-child { margin-bottom: 0.3rem; }
    #pro-per { font-size: 1.8rem; }
    #pro-title { font-size: 1rem; }
}