/*
 * Kingdom IPTV Theme Main CSS
 */

:root {
    --background: #060814;
    --surface: #0e1227;
    --surface-light: #161c3c;
    --primary: #3b82f6; /* Modern royal blue */
    --primary-glow: rgba(59, 130, 246, 0.4);
    --accent: #10b981; /* Bright emerald for highlight/WA */
    --accent-glow: rgba(16, 185, 129, 0.4);
    --text: #f8fafc;
    --text-muted: #94a3b8;
    --border: #1e293b;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #60a5fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* Badge Oval */
.badge-oval {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--primary);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--primary);
    background-color: rgba(59, 130, 246, 0.1);
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.15);
}

.badge-kids {
    border-color: #ec4899;
    color: #ec4899;
    background-color: rgba(236, 72, 153, 0.1);
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.15);
}

.badge-reseller {
    border-color: #f59e0b;
    color: #f59e0b;
    background-color: rgba(245, 158, 11, 0.1);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.15);
}

/* Pulse Dot */
.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--accent);
    border-radius: 50%;
    top: 0;
    left: 0;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text);
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--text);
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}

.btn-accent:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--border);
    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--primary);
    background-color: rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.btn-md { padding: 12px 24px; font-size: 0.95rem; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-glow {
    position: relative;
    z-index: 1;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 12px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: -1;
    opacity: 0.4;
    filter: blur(8px);
    transition: opacity 0.3s;
}

.btn-glow:hover::after {
    opacity: 0.8;
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* HEADER STYLE */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(6, 8, 20, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
    transition: background-color 0.3s;
}

.site-header.scrolled {
    background-color: #060814;
}

.header-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-branding .logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-family: var(--font-heading);
}

.site-branding img {
    max-height: 50px;
    width: auto;
    display: block;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu .current-menu-item a {
    color: var(--text);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--text);
    transition: all 0.3s ease;
}

.mobile-cta-wrapper {
    display: none;
}

/* HERO SECTION */
.hero-section {
    padding-top: 180px;
    padding-bottom: 100px;
    background-size: cover;
    background-position: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.dynamic-word-wrapper {
    display: inline-block;
    min-width: 200px;
    position: relative;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-actions {
    margin-bottom: 48px;
}

.hero-features-list {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-feat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
}

.hero-feat i {
    color: var(--primary);
}

/* SECTION HEADER */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* SPORTS TICKER */
.sports-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border);
}

.channels-ticker-wrapper {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    background-color: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    margin-bottom: 60px;
}

.channels-ticker {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-track {
    display: flex;
    animation: scroll-ticker 30s linear infinite;
    gap: 40px;
}

.ticker-item {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 12px;
}

.ticker-item i {
    color: var(--primary);
}

@keyframes scroll-ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.sports-banners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.sport-card {
    height: 320px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    cursor: pointer;
}

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

.sport-badge {
    background-color: var(--primary);
    color: var(--text);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 12px;
}

.sport-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.sport-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* DEVICES COMPATIBILITY */
.devices-section {
    padding: 100px 0;
    background-color: var(--surface);
    border-bottom: 1px solid var(--border);
}

.devices-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.devices-image-col {
    display: flex;
    justify-content: center;
}

.mockup-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

.devices-content-col h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
}

.devices-content-col .desc {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.compatibility-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.compatibility-list li {
    display: flex;
    gap: 20px;
}

.list-icon {
    width: 50px;
    height: 50px;
    background-color: var(--surface-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.list-info h4 {
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.list-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* CINEMA SECTION */
.movies-section {
    padding: 100px 0;
}

.movies-marquee {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    padding: 20px 0;
}

.marquee-track {
    display: flex;
    gap: 24px;
    animation: scroll-marquee 40s linear infinite;
    width: max-content;
}

.movie-card {
    width: 180px;
    height: 270px;
    border-radius: 12px;
    background-color: var(--surface);
    border: 1px solid var(--border);
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.movie-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
}

.movie-card span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text);
    z-index: 2;
    background-color: rgba(59, 130, 246, 0.85);
    padding: 2px 8px;
    border-radius: 4px;
}

/* Movie poster placeholders fallback styles */
.m1 { background: radial-gradient(circle, #ff007f 0%, #111 100%); }
.m2 { background: radial-gradient(circle, #7f00ff 0%, #111 100%); }
.m3 { background: radial-gradient(circle, #00ffff 0%, #111 100%); }
.m4 { background: radial-gradient(circle, #ffaa00 0%, #111 100%); }
.m5 { background: radial-gradient(circle, #00ff66 0%, #111 100%); }
.m6 { background: radial-gradient(circle, #ff3333 0%, #111 100%); }
.m7 { background: radial-gradient(circle, #3333ff 0%, #111 100%); }

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* VALUE PROP SECTION */
.valprop-section {
    padding: 60px 0;
}

.valprop-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.valprop-glow {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%);
    pointer-events: none;
}

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

.valprop-inner h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.valprop-inner p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.valprop-specs {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.spec-item .number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(59,130,246,0.3);
}

/* KIDS SECTION */
.kids-section {
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    position: relative;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.kids-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.kids-content {
    max-width: 500px;
}

.kids-content h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
}

.kids-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* PRICING PLANS */
.pricing-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.15);
}

.pricing-popular {
    border-color: var(--primary);
    background-color: var(--surface-light);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
}

.pricing-popular::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    z-index: -1;
}

.card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--text);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-name {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.pricing-popular .plan-name {
    color: var(--text);
}

.plan-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-val {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.price-period {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 8px;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.plan-features li i {
    color: var(--primary);
    font-size: 0.9rem;
}

.pricing-popular .plan-features li i {
    color: var(--accent);
}

.pricing-popular .plan-features li {
    color: var(--text);
}

.card-footer {
    margin-top: auto;
}

/* RESELLERS SECTION */
.resellers-section {
    padding: 100px 0;
    background-color: var(--surface);
    border-bottom: 1px solid var(--border);
}

.resellers-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.resellers-text-col h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
}

.resellers-text-col p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.stats-counters-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-counter-card {
    background-color: var(--surface-light);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: border-color 0.3s;
}

.stat-counter-card:hover {
    border-color: var(--primary);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    padding: 100px 0 140px;
}

.trustpilot-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.tp-stars {
    color: #00b67a; /* Trustpilot Green */
    font-size: 1.2rem;
}

.tp-text {
    font-weight: 500;
    font-size: 0.95rem;
}

.testimonials-slider-wrapper {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer-meta h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.reviewer-meta .country {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.reviewer-rating {
    color: #ffb800;
    font-size: 0.9rem;
}

.review-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.7;
}

/* FOOTER SECTION */
.site-footer {
    background-color: #03040b;
    border-top: 1px solid var(--border);
    padding: 80px 0 100px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-family: var(--font-heading);
}

.footer-logo img {
    max-height: 50px;
    width: auto;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 320px;
}

.footer-title {
    font-size: 1.15rem;
    margin-bottom: 24px;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-menu a:hover {
    color: var(--text);
}

.footer-socials {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 1.2rem;
    transition: all 0.3s;
}

.whatsapp-social:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 0 15px var(--accent-glow);
}

.footer-divider {
    border: 0;
    height: 1px;
    background-color: var(--border);
    margin-bottom: 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.payment-methods {
    display: flex;
    gap: 16px;
    font-size: 1.75rem;
    color: var(--text-muted);
}

.payment-methods i:hover {
    color: var(--text);
}

/* FLOATING BOTTOM BAR */
.floating-bottom-bar {
    position: fixed;
    bottom: -100px; /* Hidden initially */
    left: 0;
    width: 100%;
    background-color: rgba(6, 8, 20, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    padding: 16px 0;
    z-index: 999;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
    transition: bottom 0.4s ease;
}

.floating-bottom-bar.show {
    bottom: 0;
}

.floating-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.floating-bar-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-bar-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

/* WHATSAPP FLOAT WIDGET */
.whatsapp-float-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 998;
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-float-widget:hover .whatsapp-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    background-color: var(--surface);
    color: var(--text);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.whatsapp-float-widget:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* RESPONSIVE STYLES */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .header-actions {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .menu-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--background);
        border-left: 1px solid var(--border);
        padding: 100px 40px;
        display: flex;
        flex-direction: column;
        gap: 40px;
        transition: right 0.4s ease;
        z-index: 1000;
    }
    
    .site-navigation.open .menu-wrapper {
        right: 0;
    }
    
    .site-navigation.open .menu-toggle .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .site-navigation.open .menu-toggle .bar:nth-child(2) {
        opacity: 0;
    }
    
    .site-navigation.open .menu-toggle .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 24px;
    }
    
    .mobile-cta-wrapper {
        display: block;
        margin-top: auto;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .sports-banners-grid {
        grid-template-columns: 1fr;
    }
    
    .devices-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .resellers-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .floating-bar-info {
        display: none;
    }
    
    .floating-bar-container {
        justify-content: center;
    }
    
    .floating-bar-action {
        width: 100%;
    }
    
    .floating-bar-action .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-counters-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   INTERACTIVE HERO COMPONENTS STYLING
   ========================================== */

/* Hero Glow Overlay */
.hero-glow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    transition: background 0.8s ease;
    background: radial-gradient(circle at 80% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
}

/* Hero Two-Column Grid */
.hero-two-col-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 5;
    width: 100%;
}

.hero-interactive-column {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Category Selector Tags */
.hero-category-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.category-tag {
    background-color: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.category-tag:hover {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.category-tag.active {
    color: #ffffff;
    border-color: var(--primary);
    background-color: var(--primary);
    box-shadow: 0 4px 15px var(--primary-glow);
}

/* Active tag specific colors on select */
.category-tag.active[data-category="sports"] {
    background-color: #3b82f6;
    border-color: #3b82f6;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.category-tag.active[data-category="movies"] {
    background-color: #8b5cf6;
    border-color: #8b5cf6;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.category-tag.active[data-category="live"] {
    background-color: #f59e0b;
    border-color: #f59e0b;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.category-tag.active[data-category="kids"] {
    background-color: #ec4899;
    border-color: #ec4899;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
}

/* Live Player Mockup Card */
.stream-preview-card {
    width: 100%;
    max-width: 460px;
    background: rgba(14, 18, 39, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 
                0 0 40px rgba(59, 130, 246, 0.1);
    transition: all 0.5s ease;
}

.stream-preview-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.7), 
                0 0 50px rgba(59, 130, 246, 0.2);
}

.player-header {
    background-color: rgba(6, 8, 20, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.player-dots {
    display: flex;
    gap: 6px;
}

.player-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.dot-red { background-color: #ff5f56; }
.dot-yellow { background-color: #ffbd2e; }
.dot-green { background-color: #27c93f; }

.player-title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.player-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}

.player-screen {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #03040b;
    overflow: hidden;
}

.player-preview-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s ease;
    transform: scale(1.05);
}

.player-preview-slide.active {
    opacity: 1;
    z-index: 2;
    transform: scale(1);
}

.player-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    z-index: 10;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.channel-badge {
    background-color: var(--primary);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
}

.player-info-overlay h4 {
    font-size: 1.1rem;
    font-weight: 700;
}

/* Play Overlay Control */
.player-controls-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 15;
    background-color: rgba(0,0,0,0.2);
    transition: background-color 0.3s;
}

.play-btn {
    width: 54px;
    height: 54px;
    background-color: rgba(59, 130, 246, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.play-btn i {
    transform: translateX(2px);
}

.play-btn:hover {
    background-color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.6);
}

.play-btn.playing {
    background-color: rgba(16, 185, 129, 0.85);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
}

.play-btn.playing:hover {
    background-color: var(--accent);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.6);
}

/* Neon soundwaves visualizer */
.sound-wave-visualizer {
    position: absolute;
    bottom: 16px;
    right: 20px;
    z-index: 12;
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 24px;
}

.wave-bar {
    width: 3px;
    background-color: var(--accent);
    border-radius: 2px;
    height: 4px;
    transition: height 0.3s ease;
}

.sound-wave-visualizer.playing .wave-bar {
    animation: bounce-wave 1.2s ease-in-out infinite alternate;
}

.sound-wave-visualizer.playing .bar-1 { animation-delay: 0.1s; }
.sound-wave-visualizer.playing .bar-2 { animation-delay: 0.4s; }
.sound-wave-visualizer.playing .bar-3 { animation-delay: 0.2s; }
.sound-wave-visualizer.playing .bar-4 { animation-delay: 0.5s; }
.sound-wave-visualizer.playing .bar-5 { animation-delay: 0.3s; }

@keyframes bounce-wave {
    0% { height: 4px; }
    100% { height: 22px; }
}

/* Responsive override for Hero Two-Col */
@media (max-width: 991px) {
    .hero-section {
        padding-top: 140px;
        padding-bottom: 60px;
    }
    
    .hero-two-col-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-category-selector {
        justify-content: center;
    }
    
    .hero-features-list {
        justify-content: center;
    }
}

