/* Global Variables */
:root {
    --primary-color: #00d2ff;
    /* Neon Blue */
    --secondary-color: #ff9900;
    /* Neon Orange */
    --bg-color: #050505;
    --bg-secondary: #0f0f0f;
    --text-color: #ffffff;
    --text-muted: #aaaaaa;
    --card-bg: #161616;
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(to right, var(--primary-color), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dark-alt {
    background-color: var(--bg-secondary);
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 0 25px rgba(0, 210, 255, 0.7);
    transform: translateY(-2px);
}

.btn-secondary {
    background: #25d366;
    /* WhatsApp Green */
    color: #fff;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

.btn-secondary:hover {
    background: #1fbd59;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #000;
}

.glow {
    animation: glow-pulse 2s infinite;
}

@keyframes glow-pulse {
    0% {
        box-shadow: 0 0 10px rgba(0, 210, 255, 0.5);
    }

    50% {
        box-shadow: 0 0 25px rgba(0, 210, 255, 0.8), 0 0 5px rgba(255, 255, 255, 0.5);
    }

    100% {
        box-shadow: 0 0 10px rgba(0, 210, 255, 0.5);
    }
}

.pulse {
    animation: btn-pulse 1.5s infinite;
}

@keyframes btn-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-action {
    display: block;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('assets/hero/hero-bg.png') no-repeat center center/cover;
    position: relative;
    padding-top: 80px;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.3) 0%, rgba(5, 5, 5, 1) 90%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.trust-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    opacity: 0.7;
    flex-wrap: wrap;
}

.trust-badges img {
    height: 30px;
    object-fit: contain;
    filter: grayscale(100%) brightness(200%);
    transition: 0.3s;
}

.trust-badges img:hover {
    filter: grayscale(0%) brightness(100%);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.1);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Sliders */
.slider-title {
    margin: 30px 0 15px;
    font-size: 1.5rem;
    color: #fff;
    padding-left: 20px;
    border-left: 4px solid var(--secondary-color);
}

.carousel-container {
    overflow-x: auto;
    white-space: nowrap;
    padding: 20px 0;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

.carousel-container::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome */
}

.carousel-track img {
    height: 250px;
    /* Poster height */
    margin-right: 15px;
    border-radius: 10px;
    transition: 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.carousel-track img:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: center;
    /* V-align */
}

.pricing-card {
    background: var(--card-bg);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: 0.3s;
}

.pricing-card.featured {
    background: #111;
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 10;
    padding: 40px 20px;
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.1);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
}

.plan-header h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.features-list {
    margin-bottom: 30px;
    text-align: left;
}

.features-list li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.features-list li i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.features-list li strong {
    color: #fff;
}

/* Devices */
.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    text-align: center;
}

.device-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s;
}

.device-item:hover {
    background: #222;
}

.device-item i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--text-muted);
    transition: 0.3s;
}

.device-item:hover i {
    color: var(--primary-color);
}

/* How It Works */
.steps-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #000;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.5);
}

.step h3 {
    margin-bottom: 10px;
}

.step p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    background: var(--card-bg);
    transition: 0.3s;
}

.faq-question:hover {
    background: #222;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: 0.3s ease-out;
    background: #111;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Approximate max height */
    padding: 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Footer */
footer {
    background: #000;
    padding: 50px 0 20px;
    border-top: 1px solid #222;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-brand h3 {
    font-size: 1.5rem;
}

.footer-brand span {
    color: var(--primary-color);
}

.footer-links a {
    margin: 0 15px;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: #fff;
}

.footer-social a {
    margin-left: 15px;
    font-size: 1.2rem;
    color: #fff;
}

.footer-bottom {
    text-align: center;
    color: #555;
    font-size: 0.8rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Responsive */
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links,
    .nav-action {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* --- Phase 2 Additions --- */

/* Page Header */
.page-header {
    margin-top: 80px;
    /* Offset fixed nav */
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(rgba(5, 5, 5, 0.7), rgba(5, 5, 5, 1)), url('assets/hero/hero-bg.png');
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #fff;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

/* Setup Tabs */
.setup-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 15px 30px;
    background: #111;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: 0.3s;
    font-family: inherit;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
}

.tab-content {
    display: none;
    animation: fadeEffect 0.5s;
}

.tab-content.active {
    display: block;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.guide-steps {
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background: var(--card-bg);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-num {
    background: var(--primary-color);
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.text-link {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Channel & Country Grids */
/* Premium Sports Grid */
.channel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.channel-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.channel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(var(--primary-rgb), 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.channel-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.channel-card:hover::before {
    opacity: 1;
}

.channel-card img {
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
    transition: transform 0.3s;
}

.channel-card:hover img {
    transform: scale(1.1);
}

.channel-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 700;
}

.channel-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.country-card {
    font-weight: 600;
    font-size: 1.1rem;
}

.vod-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.vod-item {
    max-width: 400px;
    text-align: center;
}

.vod-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Sports Schedule Widget */
.sports-schedule {
    margin-top: 50px;
    background: linear-gradient(135deg, #111, #0a0a0a);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sports-schedule h3 {
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-align: center;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    align-items: center;
}

.schedule-item .time {
    font-weight: 800;
    color: var(--primary-color);
}

.schedule-item .match {
    flex-grow: 1;
    text-align: center;
    font-weight: 600;
}

.schedule-item .league {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Reseller Section */
.reseller-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.reseller-item {
    font-size: 1.2rem;
    font-weight: 600;
}

.reseller-item i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-color);
}

/* Content Wall */
.content-wall {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.wall-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: default;
}

.wall-item:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.3);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.user-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    color: #000;
}

.user-info h4 {
    margin: 0;
    font-size: 1.1rem;
}

.location {
    font-size: 0.9rem;
    color: #aaa;
}

.stars {
    color: #FFD700;
    margin-top: 1rem;
    font-size: 1.2rem;
}

/* Hero Ticker */
.hero-ticker {
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    white-space: nowrap;
}

.ticker-content {
    display: inline-block;
    padding-left: 100%;
    animation: ticker 30s linear infinite;
}

.ticker-content span {
    display: inline-block;
    padding: 0 40px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
}

@keyframes ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* Hero Chips */
.hero-chips {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.chip {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
}

.chip i {
    color: var(--primary-color);
}

/* Expanded Badges */
.badge-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
    opacity: 0.8;
}

.brand-badge {
    font-weight: 900;
    font-size: 1.2rem;
    padding: 5px 10px;
    letter-spacing: -0.5px;
    transition: 0.3s;
    cursor: default;
}

.brand-badge:hover {
    transform: scale(1.1);
    opacity: 1;
}

.netflix {
    color: #E50914;
}

.prime {
    color: #00A8E1;
}

.spotify {
    color: #1DB954;
}

.disney {
    background: linear-gradient(to right, #113CCF, #2AF0EA);
    -webkit-background-clip: text;
    color: transparent;
}

.apple {
    color: #A2AAAD;
}

.hbo {
    color: #fff;
}

.sky {
    background: linear-gradient(to right, #f60, #d30320);
    -webkit-background-clip: text;
    color: transparent;
}

.bein {
    color: #9d3191;
}

.dazn {
    color: #fff;
    background: #000;
    padding: 2px 8px;
}

.hulu {
    color: #1ce783;
}

/* Adjustments */
.hero {
    padding-top: 140px;
}

/* Space for ticker */

/* Accordion Styling */
.country-accordion {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.country-item {
    background: var(--card-bg);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.country-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.country-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    transition: background 0.3s;
}

.country-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.country-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.flag {
    font-size: 1.5rem;
}

.country-header i {
    transition: transform 0.3s ease;
}

.country-item.active .country-header i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

/* Accordion Body */
.country-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: rgba(0, 0, 0, 0.3);
}

.country-item.active .country-body {
    max-height: 1000px;
    /* Arbitrary large height */
    transition: max-height 0.6s ease-in-out;
}

.channel-list-container {
    padding: 25px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.channel-category h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 5px;
    font-size: 1rem;
}

.channel-category ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.channel-category li {
    color: var(--text-muted);
    margin-bottom: 8px;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.channel-category li:hover {
    color: #fff;
    padding-left: 5px;
}