/*
Theme Name: Prime8KHub
Theme URI: https://prime8khub.com/
Author: Prime8KHub
Description: Prime8KHub Antigravity design converted to a WordPress theme. Original design and page content preserved.
Version: 2.0.0
Text Domain: prime8khub
*/
/* ==========================================================================
   PREMIUM STREAMING ENTERTAINMENT PLATFORM - STYLESHEET
   Aesthetics: Netflix + Disney+ + Apple TV (Dark Luxury, Neon Accents, Glassmorphism)
   ========================================================================== */

/* --- Google Fonts (loaded via <link> in HTML for non-blocking) --- */
/* Fallback fonts apply instantly while Google Fonts loads */

/* --- Core Variables --- */
:root {
    --bg-main: #04040a;
    --bg-card: rgba(13, 14, 33, 0.5);
    --bg-card-hover: rgba(20, 22, 50, 0.7);
    --border-color: rgba(255, 255, 255, 0.06);
    --border-glow: rgba(124, 58, 237, 0.3);
    
    --primary: #7c3aed; /* Electric Purple */
    --primary-glow: rgba(124, 58, 237, 0.6);
    --secondary: #2563eb; /* Deep Blue */
    --secondary-glow: rgba(37, 99, 235, 0.6);
    --accent: #06b6d4; /* Neon Cyan */
    --accent-glow: rgba(6, 182, 212, 0.5);
    --accent-pink: #d946ef; /* Hot Pink */
    
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --font-heading: 'Outfit', 'Segoe UI', system-ui, sans-serif;
    --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
    
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-blur: blur(10px);
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    --container-width: 1280px;
}

/* --- Resets & Base Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-main);
    color: var(--text-primary);
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: rgba(124, 58, 237, 0.3);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* --- Background Mesh & Glow Blobs --- */
.bg-glow-container {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
    background: radial-gradient(circle at 50% 100%, #0c0926, var(--bg-main) 70%);
}

.glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.28;
    will-change: transform;
    animation: blob-float 25s infinite alternate ease-in-out;
}

.glow-blob-1 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.glow-blob-2 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation-delay: -8s;
    animation-duration: 30s;
}

.glow-blob-3 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, var(--accent-pink) 0%, transparent 70%);
    top: 40%;
    left: 30%;
    opacity: 0.1;
    animation-delay: -15s;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.007) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.007) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
    opacity: 0.85;
}

/* --- Custom Utility & Animations --- */
@keyframes blob-float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, -25px) scale(1.08); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; filter: drop-shadow(0 0 15px var(--primary)); }
}

@keyframes slide-in-bottom {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.float-animation {
    animation: float 6s infinite ease-in-out;
}

/* Scroll Animation Trigger classes */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Container & Layout Helpers --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0 4rem;
    position: relative;
}

/* --- Typography & Headings --- */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 30%, var(--primary) 70%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.15);
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 3.5rem;
}

/* --- Navigation Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(4, 4, 10, 0.65);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.header.scrolled {
    padding: 0.6rem 0;
    background: rgba(4, 4, 10, 0.85);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
    transition: var(--transition-smooth);
}

.header.scrolled .nav-container {
    height: 60px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-primary);
}

.logo span {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 50%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-pink) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px var(--primary-glow);
}

/* Nav Links */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--text-primary);
}

/* CTA buttons in Nav */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

/* Burger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
    z-index: 101;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    margin: 6px 0;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 50%, var(--accent-pink) 100%);
    transition: width 0.1s ease-out;
}

/* --- Premium Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-bounce);
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #6366f1 50%, var(--secondary) 100%);
    color: var(--text-primary);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--primary) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.6);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.btn-neon {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.2);
}

.btn-neon:hover {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.6);
    transform: translateY(-3px);
}

.btn-trial {
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--primary) 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(217, 70, 239, 0.35);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-trial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-smooth);
}

.btn-trial:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(217, 70, 239, 0.55);
}

.btn-trial:hover::before {
    opacity: 1;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 140px;
    padding-bottom: 80px;
    position: relative;
    background: linear-gradient(to bottom, rgba(4, 4, 10, 0.85) 0%, rgba(4, 4, 10, 0.55) 50%, rgba(4, 4, 10, 0.92) 100%), url('hero-bg.png') no-repeat center center/cover;
    text-align: center;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to top, var(--bg-main), transparent);
    z-index: 1;
    pointer-events: none;
}

.hero-center-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.hero-content {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-title {
    font-size: 4.8rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
    max-width: 680px;
    line-height: 1.7;
    text-align: center;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.hero-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.8rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.trust-item svg {
    color: var(--accent);
}

.trust-item span {
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.hero-free-trial {
    margin-top: 0.5rem;
}

.free-trial-link {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.82rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.25s ease, transform 0.25s ease;
}

.free-trial-link:hover {
    color: var(--accent-pink);
    transform: translateY(-1px);
}

/* Floating Device Mockups Visual */
.hero-visual {
    display: none;
}

.mockup-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.glow-backdrop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.4) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    animation: pulse-glow 8s infinite alternate ease-in-out;
}

/* CSS-based High-Fidelity Mockups */
.mockup {
    position: absolute;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.12);
    overflow: hidden;
    background: #000;
}

/* TV Mockup */
.mockup-tv {
    width: 320px;
    height: 190px;
    top: 20px;
    left: 10px;
    border-radius: 8px;
    z-index: 2;
    animation: float 7s infinite ease-in-out;
}
.mockup-tv .tv-screen {
    width: 100%;
    height: calc(100% - 10px);
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="320" height="180" viewBox="0 0 320 180"><rect width="320" height="180" fill="%23050510"/><circle cx="160" cy="90" r="40" fill="%237c3aed" opacity="0.3"/><polygon points="150,75 180,90 150,105" fill="%23fff"/></svg>') no-repeat center/cover;
    position: relative;
}
.mockup-tv .tv-screen::after {
    content: 'LIVE SPORTS';
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(220, 38, 38, 0.85);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 8px;
    font-weight: 700;
    font-family: var(--font-heading);
}
.mockup-tv .tv-stand {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 10px;
    background: #2e2e3a;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Laptop Mockup */
.mockup-laptop {
    width: 260px;
    height: 165px;
    bottom: 30px;
    right: 10px;
    border-radius: 6px;
    z-index: 4;
    animation: float 6s infinite ease-in-out;
    animation-delay: -1.5s;
}
.mockup-laptop .laptop-screen {
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="260" height="165" viewBox="0 0 260 165"><rect width="260" height="165" fill="%230c0c20"/><rect x="15" y="20" width="80" height="110" rx="4" fill="%231e1e38"/><rect x="110" y="20" width="135" height="40" rx="4" fill="%231e1e38"/><rect x="110" y="70" width="135" height="60" rx="4" fill="%237c3aed" opacity="0.2"/></svg>') no-repeat center/cover;
}

/* Tablet Mockup */
.mockup-tablet {
    width: 140px;
    height: 200px;
    top: 60px;
    right: 40px;
    border-radius: 14px;
    z-index: 3;
    border: 6px solid #1a1a24;
    animation: float 8s infinite ease-in-out;
    animation-delay: -3s;
}
.mockup-tablet .tablet-screen {
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="128" height="188" viewBox="0 0 128 188"><rect width="128" height="188" fill="%23080815"/><circle cx="64" cy="94" r="24" fill="%2300f2fe" opacity="0.2"/></svg>') no-repeat center/cover;
}

/* Smartphone Mockup */
.mockup-phone {
    width: 85px;
    height: 170px;
    bottom: 50px;
    left: 80px;
    border-radius: 18px;
    z-index: 5;
    border: 4px solid #1c1c28;
    animation: float 5.5s infinite ease-in-out;
    animation-delay: -4.5s;
}
.mockup-phone .phone-screen {
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="77" height="162" viewBox="0 0 77 162"><rect width="77" height="162" fill="%230c0c1e"/><rect x="5" y="10" width="67" height="20" rx="2" fill="%237c3aed" opacity="0.5"/><rect x="5" y="35" width="31" height="40" rx="2" fill="%231e1e38"/><rect x="41" y="35" width="31" height="40" rx="2" fill="%231e1e38"/></svg>') no-repeat center/cover;
}
.mockup-phone::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 10px;
    background: #1c1c28;
    border-radius: 10px;
}

/* --- Animated Statistics Section --- */
.stats-section {
    position: relative;
    padding: 2.5rem 0;
    margin-top: -30px;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stats-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    transition: var(--transition-smooth);
}

.stats-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.15);
}

.stats-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 30%, var(--primary) 70%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(124, 58, 237, 0.12), transparent 60%);
    z-index: -1;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(124, 58, 237, 0.25);
    background: var(--bg-card-hover);
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.12), 0 0 1px rgba(124, 58, 237, 0.3) inset;
}

.feature-card:hover::before {
    background: radial-gradient(circle at top right, rgba(6, 182, 212, 0.15), transparent 70%);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: var(--transition-bounce);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--accent);
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.3);
}

.feature-title {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- Supported Devices Section --- */
.devices-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.device-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.25rem 1.5rem;
    text-align: center;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.device-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.device-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.device-card:hover::after {
    transform: scaleX(1);
}

.device-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.device-card:hover .device-icon-wrapper {
    color: var(--accent);
    background: rgba(6, 182, 212, 0.08);
    border-color: rgba(6, 182, 212, 0.2);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
}

.device-name {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.device-status {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}


/* ==========================================================================
   CHANNEL LIST SECTION — NETFLIX-STYLE STREAMING UI
   ========================================================================== */

.channel-list-section {
    background: radial-gradient(ellipse 100% 60% at 50% 0%, rgba(124,58,237,0.06) 0%, transparent 65%);
}

/* ── Header ──────────────────────────────────────────────────────────── */
.channel-list-header {
    margin-bottom: 2.5rem;
}

.channel-header-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

/* ── Search Bar ──────────────────────────────────────────────────────── */
.channel-search-wrap {
    position: relative;
    flex-shrink: 0;
    width: 320px;
}

.channel-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    transition: color 0.25s ease;
}

.channel-search-input {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 0.85rem 1rem 0.85rem 2.8rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.channel-search-input::placeholder {
    color: var(--text-muted);
}

.channel-search-input:focus {
    border-color: rgba(124,58,237,0.5);
    background: rgba(124,58,237,0.04);
    box-shadow: 0 0 0 3px rgba(124,58,237,0.12);
}

.channel-search-input:focus ~ .channel-search-icon,
.channel-search-wrap:focus-within .channel-search-icon {
    color: var(--primary);
}

/* ── Category Pills ──────────────────────────────────────────────────── */
.channel-cats-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding-bottom: 0.5rem;
}

.cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.5rem 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(.4,0,.2,1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.cat-pill:hover:not(.active) {
    color: #fff;
    border-color: rgba(124,58,237,0.3);
    background: rgba(124,58,237,0.07);
}

.cat-pill.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-pink) 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 16px rgba(124,58,237,0.35);
}

/* ── Channel Grid ────────────────────────────────────────────────────── */
.channel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.25rem;
}

/* ── Channel Card ────────────────────────────────────────────────────── */
.channel-card {
    position: relative;
    background: rgba(13,14,33,0.7);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    padding: 1.5rem 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.65rem;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(.34,1.56,.64,1),
                box-shadow 0.3s ease,
                border-color 0.3s ease;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

/* Gradient glow border on hover */
.channel-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--accent-pink));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.channel-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 17px;
    background: rgba(10,10,22,0.95);
    z-index: 0;
}

.channel-card > * {
    position: relative;
    z-index: 1;
}

.channel-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 40px rgba(124,58,237,0.15);
}

.channel-card:hover::before {
    opacity: 1;
}

/* ── Channel Logo ────────────────────────────────────────────────────── */
.channel-logo-wrap {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(6,182,212,0.1));
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    overflow: hidden;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.channel-card:hover .channel-logo-wrap {
    transform: scale(1.08);
}

.channel-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Channel Name ────────────────────────────────────────────────────── */
.channel-name {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    letter-spacing: -0.1px;
}

/* ── Channel Meta Row ────────────────────────────────────────────────── */
.channel-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.channel-flag {
    font-size: 1rem;
}

.channel-cat-badge {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.18rem 0.55rem;
    border-radius: 20px;
    background: rgba(124,58,237,0.15);
    border: 1px solid rgba(124,58,237,0.25);
    color: #a78bfa;
}

/* Category-specific badge colors */
.channel-cat-badge[data-cat="Sports"] { background:rgba(239,68,68,0.12); border-color:rgba(239,68,68,0.25); color:#f87171; }
.channel-cat-badge[data-cat="News"] { background:rgba(59,130,246,0.12); border-color:rgba(59,130,246,0.25); color:#60a5fa; }
.channel-cat-badge[data-cat="Movies"] { background:rgba(217,70,239,0.12); border-color:rgba(217,70,239,0.25); color:#e879f9; }
.channel-cat-badge[data-cat="Entertainment"] { background:rgba(234,179,8,0.12); border-color:rgba(234,179,8,0.25); color:#fbbf24; }
.channel-cat-badge[data-cat="Kids"] { background:rgba(34,197,94,0.12); border-color:rgba(34,197,94,0.25); color:#4ade80; }
.channel-cat-badge[data-cat="Documentaries"] { background:rgba(6,182,212,0.12); border-color:rgba(6,182,212,0.25); color:#22d3ee; }
.channel-cat-badge[data-cat="Music"] { background:rgba(168,85,247,0.12); border-color:rgba(168,85,247,0.25); color:#c084fc; }
.channel-cat-badge[data-cat="Regional"] { background:rgba(251,146,60,0.12); border-color:rgba(251,146,60,0.25); color:#fb923c; }

/* ── Watch Button ────────────────────────────────────────────────────── */
.channel-watch-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--accent-pink));
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0.5rem 0.8rem;
    font-size: 0.72rem;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.channel-card:hover .channel-watch-btn {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 6px 20px rgba(124,58,237,0.4);
}

/* ── No Results State ────────────────────────────────────────────────── */
.channel-no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.channel-no-results p {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   PRICING SECTION — PREMIUM REDESIGN
   Brand palette: #080810 bg · #7c3aed / #a855f7 purple · #06b6d4 cyan · #d946ef pink
   ========================================================================== */


/* Section wrapper */
.pricing-header-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ── Premium Features Strip ─────────────────────────────────────── */
.pricing-features-strip {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1.25rem;
    width: 100%;
    margin: 3rem 0 4rem;
    padding: 1.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.p-feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.p-feature-card:hover {
    transform: translateY(-5px);
}

.p-feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.18);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 0.85rem;
    transition: all 0.3s ease;
}

.p-feature-icon svg {
    width: 22px;
    height: 22px;
}

.p-feature-card:hover .p-feature-icon {
    background: rgba(6, 182, 212, 0.12);
    border-color: rgba(6, 182, 212, 0.3);
    color: var(--accent);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.25);
    transform: scale(1.08) rotate(5deg);
}

.p-feature-text h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
    letter-spacing: -0.1px;
}

.p-feature-text p {
    font-size: 0.72rem;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
}

@media (max-width: 1200px) {
    .pricing-features-strip {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        margin: 2.5rem 0 3.5rem;
    }
}

@media (max-width: 768px) {
    .pricing-features-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.25rem 1rem;
    }
}

/* ── Device Selector ─────────────────────────────────────────────── */
.screens-selector-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -1rem;
    margin-bottom: 4rem;
}

.screens-selector-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.screens-pills {
    display: flex;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 50px;
    padding: 5px;
    gap: 4px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

.screen-pill {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.78rem;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.28s cubic-bezier(.4,0,.2,1);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
}

.screen-pill:hover:not(.active) {
    color: #fff;
    background: rgba(255,255,255,0.06);
}

.screen-pill.active {
    color: #fff;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-pink) 100%);
    box-shadow: 0 4px 20px var(--primary-glow), 0 0 0 1px rgba(124,58,237,0.3);
    font-weight: 800;
}

/* ── Grid ────────────────────────────────────────────────────────── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: stretch;
}

/* ── Base Card ───────────────────────────────────────────────────── */
.pricing-card {
    background: linear-gradient(160deg, rgba(15,15,32,0.97) 0%, rgba(10,10,22,0.97) 100%);
    border: 1px solid rgba(124,58,237,0.18);
    border-radius: 28px;
    padding: 2.2rem 1.8rem 1.8rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(.4,0,.2,1),
                box-shadow 0.35s cubic-bezier(.4,0,.2,1),
                border-color 0.35s ease;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4), 0 0 40px rgba(124,58,237,0.04);
}

/* Purple gradient top accent stripe */
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent-pink));
    border-radius: 28px 28px 0 0;
    z-index: 2;
    opacity: 0.8;
    transition: opacity 0.35s ease;
}

.pricing-card:hover::before {
    opacity: 1;
}

/* Subtle inner-top shimmer line */
.pricing-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(160deg, rgba(124,58,237,0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.pricing-card > * {
    position: relative;
    z-index: 1;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(124, 58, 237, 0.45);
    box-shadow:
        0 30px 60px rgba(0,0,0,0.5),
        0 0 50px rgba(124,58,237,0.12),
        0 0 0 1px rgba(124,58,237,0.2),
        inset 0 1px 0 rgba(255,255,255,0.06);
}

/* ── Popular Card (12 Months) ────────────────────────────────────── */
.pricing-card.gold-popular {
    background: linear-gradient(160deg, rgba(10,18,35,0.98) 0%, rgba(8,12,24,0.98) 100%);
    border-color: rgba(6, 182, 212, 0.35);
    box-shadow:
        0 20px 50px rgba(0,0,0,0.5),
        0 0 60px rgba(6,182,212,0.06),
        inset 0 1px 0 rgba(6,182,212,0.15);
    transform: translateY(-6px);
}

.pricing-card.gold-popular::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary), var(--accent-pink));
    border-radius: 28px 28px 0 0;
    z-index: 2;
    opacity: 1;
    transition: none;
}

.pricing-card.gold-popular::after {
    content: '';
    position: absolute;
    top: 3px; left: 0; right: 0;
    height: 180px;
    background: radial-gradient(ellipse at 50% 0%, rgba(6,182,212,0.14) 0%, transparent 70%);
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
}

.pricing-card.gold-popular:hover {
    transform: translateY(-14px);
    border-color: rgba(6, 182, 212, 0.6);
    box-shadow:
        0 40px 70px rgba(0,0,0,0.55),
        0 0 80px rgba(6,182,212,0.12),
        inset 0 1px 0 rgba(6,182,212,0.22);
}

/* ── "Most Popular" Badge ────────────────────────────────────────── */
.gold-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 50%, var(--accent-pink) 100%);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.3rem 1.2rem;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.35);
    z-index: 10;
}

/* ── Plan Header ─────────────────────────────────────────────────── */
.plan-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.2rem;
    margin-top: 0.8rem;
}

.plan-name {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -0.3px;
    text-transform: uppercase;
}

.savings-tag {
    font-size: 0.65rem;
    font-weight: 800;
    color: #a855f7;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.25);
    padding: 0.22rem 0.6rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gold-popular .savings-tag {
    color: var(--accent);
    background: rgba(6, 182, 212, 0.08);
    border-color: rgba(6, 182, 212, 0.25);
}

.plan-desc {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    display: inline-block;
    margin-top: 0.25rem;
    margin-bottom: 0.75rem;
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
}

.pricing-card[data-plan="1-month"] .plan-desc {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: #e2e8f0;
}

.pricing-card[data-plan="3-months"] .plan-desc {
    border-color: rgba(168, 85, 247, 0.25);
    background: rgba(168, 85, 247, 0.08);
    color: #c084fc;
}

.pricing-card[data-plan="6-months"] .plan-desc {
    border-color: rgba(217, 70, 239, 0.25);
    background: rgba(217, 70, 239, 0.08);
    color: #f472b6;
}

.pricing-card[data-plan="12-months"] .plan-desc {
    border-color: rgba(6, 182, 212, 0.35);
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent);
}

/* ── Price Display ───────────────────────────────────────────────── */
.plan-price-wrap {
    display: flex;
    flex-direction: column;
    margin: 1.4rem 0 1rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.gold-popular .plan-price-wrap {
    border-bottom-color: rgba(6, 182, 212, 0.15);
}

.plan-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.15rem;
    line-height: 1;
}

.plan-currency {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    align-self: flex-start;
    margin-top: 0.55rem;
}

.plan-price {
    font-size: 4.2rem;
    font-weight: 900;
    line-height: 1;
    color: var(--text-primary);
    letter-spacing: -2px;
    transition: opacity 0.15s ease, transform 0.15s ease;
    font-family: var(--font-heading);
}

.gold-popular .plan-price {
    background: linear-gradient(135deg, #fff 30%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-cents {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    align-self: flex-start;
    margin-top: 0.55rem;
    color: var(--text-secondary);
}

.gold-popular .plan-cents {
    color: rgba(6, 182, 212, 0.8);
}

.plan-period {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    font-weight: 500;
}

.gold-popular .plan-period {
    color: rgba(6, 182, 212, 0.85);
}

/* ── Connection Badge ────────────────────────────────────────────── */
.connection-indicator-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border: 1px solid rgba(168, 85, 247, 0.2);
    background: rgba(168, 85, 247, 0.06);
    color: #a855f7;
    padding: 0.45rem 1rem;
    border-radius: 30px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 1.4rem;
    width: 100%;
}

.gold-popular .connection-indicator-badge {
    border-color: rgba(6, 182, 212, 0.25);
    background: rgba(6, 182, 212, 0.06);
    color: var(--accent);
}

/* ── Features List ───────────────────────────────────────────────── */
.plan-features-list {
    list-style: none;
    margin-bottom: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.plan-feature-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    line-height: 1.3;
}

.plan-feature-item svg {
    color: #7c3aed;
    flex-shrink: 0;
    opacity: 0.9;
}

.gold-popular .plan-feature-item svg {
    color: var(--accent);
}

.plan-feature-item.disabled {
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.45;
}

.plan-feature-item.disabled svg {
    color: var(--text-muted);
}

.pricing-card .btn {
    width: 100%;
    margin-top: auto;
}

/* ── VLC Player Activation Toggle Row ───────────────────────────── */
.player-activation-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255,255,255,0.07);
    padding: 0.75rem 1rem;
    border-radius: 14px;
    margin-bottom: 1.4rem;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.player-activation-wrap:hover {
    border-color: rgba(168, 85, 247, 0.25);
    background: rgba(168,85,247,0.04);
}

.gold-popular .player-activation-wrap:hover {
    border-color: rgba(6, 182, 212, 0.3);
    background: rgba(6,182,212,0.04);
}

.player-label-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.player-label-wrap svg {
    color: #a855f7;
    flex-shrink: 0;
}

.gold-popular .player-label-wrap svg {
    color: var(--accent);
}

/* +$10 badge */
.vlc-badge {
    display: inline-block;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.2px;
    color: #fff;
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    border-radius: 20px;
    padding: 2px 7px;
    margin-left: 5px;
    vertical-align: middle;
    text-transform: none;
    line-height: 1.4;
    box-shadow: 0 2px 8px rgba(124,58,237,0.4);
}

/* Toggle switch */
.switch {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 22px;
    flex-shrink: 0;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: rgba(255, 255, 255, 0.06);
    transition: 0.28s cubic-bezier(.4,0,.2,1);
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.1);
}

.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background: rgba(255,255,255,0.4);
    transition: 0.28s cubic-bezier(.4,0,.2,1);
    border-radius: 50%;
}

input:checked + .slider {
    background: rgba(124, 58, 237, 0.22);
    border-color: rgba(124, 58, 237, 0.6);
}

input:checked + .slider:before {
    transform: translateX(20px);
    background: #a855f7;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.7);
}

.gold-popular input:checked + .slider {
    background: rgba(6, 182, 212, 0.18);
    border-color: rgba(6, 182, 212, 0.6);
}

.gold-popular input:checked + .slider:before {
    background: var(--accent);
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.7);
}

/* ── CTA Button ──────────────────────────────────────────────────── */
.btn-gold {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-pink) 100%);
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.35);
    border-radius: 14px;
    font-weight: 800;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.95rem 1.8rem;
    width: 100%;
    margin-top: auto;
    transition: transform 0.28s cubic-bezier(.4,0,.2,1),
                box-shadow 0.28s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    cursor: pointer;
    border: none;
    outline: none;
    text-decoration: none;
}

/* Shine sweep on hover */
.btn-gold::before {
    content: '';
    position: absolute;
    top: 0; left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.28), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.btn-gold:hover {
    transform: translateY(-3px) scale(1.015);
    box-shadow: 0 14px 35px rgba(124, 58, 237, 0.5);
}

.btn-gold:hover::before {
    left: 125%;
}

.btn-gold:active {
    transform: translateY(-1px) scale(1.005);
}

.gold-popular .btn-gold {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.35);
}

.gold-popular .btn-gold:hover {
    box-shadow: 0 14px 35px rgba(6, 182, 212, 0.5);
}

/* ── "Instant Global Access" subtext ────────────────────────────── */
.gold-subtext {
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.85rem;
    display: block;
    opacity: 0.6;
}

/* --- Testimonials Carousel Section --- */
.testimonials-carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 1rem 0;
    margin: 0 auto;
}

.testimonials-carousel {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.testimonial-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 1.75rem;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    transition: var(--transition-smooth);
    position: relative;
    flex: 0 0 calc(33.333% - 1rem); /* Desktop: 3 visible cards */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 20px rgba(124, 58, 237, 0.05);
}

.stars-row {
    display: flex;
    gap: 0.25rem;
    color: #fbbf24; /* Amber star color */
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    object-fit: cover;
}

.author-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.author-role {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(13, 14, 33, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-bounce);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.carousel-btn:hover {
    background: var(--primary);
    border-color: transparent;
    box-shadow: 0 0 15px var(--primary-glow);
    color: #fff;
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.92);
}

.carousel-btn-prev {
    left: 8px;
}

.carousel-btn-next {
    right: 8px;
}

/* Dots Navigation */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

.carousel-dot.active {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    width: 20px;
    border-radius: 4px;
    box-shadow: 0 0 10px var(--primary-glow);
}

/* Responsive Rules for Carousel */
@media (max-width: 1023px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 0.75rem); /* Tablet: 2 visible cards */
    }
}

@media (max-width: 767px) {
    .testimonials-carousel-wrapper {
        padding: 0.5rem 0;
    }
    
    .testimonial-card {
        flex: 0 0 100%; /* Mobile: 1 visible card */
        padding: 1.5rem;
    }
    
    .carousel-btn {
        display: none; /* Hide arrows on mobile touch screens */
    }
}

/* --- FAQ Section --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    outline: none;
    padding: 1.5rem 2rem;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.faq-icon {
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
    padding: 0 2rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ Active State */
.faq-item.active {
    border-color: var(--border-glow);
    background: rgba(124, 58, 237, 0.03);
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.05);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--accent);
}

/* --- Contact Section --- */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-channels {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: var(--transition-smooth);
    text-decoration: none;
    color: var(--text-primary);
}

.contact-card:hover {
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.contact-card-icon.email {
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary);
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.contact-card-details h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.contact-card-details p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-bounce);
    text-decoration: none;
}

.social-icon:hover {
    color: var(--text-primary);
    border-color: var(--primary);
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.4);
}

/* Contact Form */
.contact-form-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input, .form-textarea {
    width: 100%;
    background: rgba(4, 4, 10, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    outline: none;
}

.form-input:focus, .form-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
    background: rgba(4, 4, 10, 0.8);
}

.form-textarea {
    resize: none;
    min-height: 120px;
}

.form-status-alert {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-size: 0.9rem;
    display: none;
}
.form-status-alert.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* --- Footer --- */
.footer {
    background: #020206;
    border-top: 1px solid var(--border-color);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1.25rem;
    line-height: 1.6;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-link:hover {
    color: var(--text-primary);
    transform: translateX(3px);
}

/* Newsletter */
.footer-newsletter p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

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

.newsletter-input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 0.8rem 1.25rem;
    color: var(--text-primary);
    outline: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.newsletter-input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

.newsletter-form .btn {
    padding: 0.8rem 1.2rem;
}

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

.footer-copy {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}


/* ==========================================================================
   IPTV GLOBAL CHANNELS LIST - SCREENSHOT MATCH LAYOUT
   ========================================================================== */

:root {
    --gold-primary: var(--primary);
    --gold-secondary: var(--secondary);
    --gold-glow: rgba(139, 92, 246, 0.15);
}

.italic-hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -1.5px;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: #fff;
    text-align: center;
}

.gradient-text-gold {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ── Branded Gold Logo & Buttons ──────────────────────────────────────── */
.logo-gold {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo-gold span {
    color: var(--gold-primary);
}

.logo-gold-icon {
    background: var(--gold-primary);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px var(--gold-glow);
}

.logo-gold-icon i {
    color: #000;
}

.btn-gold-cta {
    background: linear-gradient(135deg, #fcd34d 0%, var(--gold-primary) 100%);
    color: #000;
    font-weight: 700;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.35);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
}

.btn-gold-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.5);
    filter: brightness(1.08);
}

/* ── Continent Select Bar ────────────────────────────────────────────── */
.continent-tabs {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.5rem 0.25rem 0.75rem;
    margin-bottom: 2.5rem;
    scrollbar-width: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.continent-tabs::-webkit-scrollbar {
    display: none;
}

.continent-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 0.75rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-secondary);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.continent-tab span.tab-prefix {
    font-size: 0.7rem;
    opacity: 0.6;
    font-weight: 900;
}

.continent-tab:hover:not(.active) {
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.3);
    color: #fff;
}

.continent-tab.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.35);
}

.continent-tab.active span.tab-prefix {
    color: #fff;
    opacity: 0.85;
}

/* ── Country Cards Grid ──────────────────────────────────────────────── */
.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 0.85rem;
    margin-bottom: 4rem;
}

.country-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 0.9rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
                border-color 0.25s ease,
                background-color 0.25s ease,
                box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.country-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 10%, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.country-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(139, 92, 246, 0.4);
    background-color: rgba(255, 255, 255, 0.04);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5), 0 0 20px rgba(139, 92, 246, 0.1);
}

.country-card:hover::before {
    opacity: 1;
}

.country-card-prefix {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary);
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 0.18rem 0.42rem;
    border-radius: 6px;
    min-width: 32px;
    text-align: center;
    text-transform: uppercase;
    font-family: var(--font-heading);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.country-card-flag {
    flex-shrink: 0;
    line-height: 1;
}

.country-card:hover .country-card-prefix {
    background: var(--primary);
    color: #fff;
    border-color: transparent;
}

.country-card-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.2s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.country-card:hover .country-card-name {
    color: #fff;
}

/* ── Glassmorphic Channels Modal ────────────────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 4, 8, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    padding: 1.5rem;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    background: rgba(13, 14, 33, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    width: 100%;
    max-width: 850px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 50px rgba(139, 92, 246, 0.08);
    transform: scale(0.92) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.modal-title-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.modal-flag {
    font-size: 1.5rem;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
}

.modal-search-wrap {
    position: relative;
    width: 250px;
}

.modal-search-input {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 0.6rem 1rem 0.6rem 2.2rem;
    color: #fff;
    font-size: 0.85rem;
    outline: none;
    transition: all 0.25s ease;
}

.modal-search-input:focus {
    border-color: rgba(139, 92, 246, 0.5);
    background: rgba(139, 92, 246, 0.03);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.modal-search-icon {
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.modal-close-btn {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    color: var(--text-muted);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-close-btn:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
    transform: scale(1.05);
}

.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

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

.modal-no-results {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--text-muted);
}

/* ── Live Channel Card in Modal ──────────────────────────────────────── */
.modal-channel-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.65rem;
    transition: all 0.25s ease;
    cursor: pointer;
}

.modal-channel-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.modal-channel-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.modal-channel-name {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.modal-channel-cat {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.15rem 0.5rem;
    border-radius: 12px;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: var(--primary);
}

.modal-watch-btn {
    width: 100%;
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.45rem;
    font-size: 0.72rem;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    transition: all 0.2s ease;
}

.modal-watch-btn:hover {
    filter: brightness(1.12);
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.4);
}

/* --- Responsive Media Queries --- */
@media (max-width: 1200px) {
    :root {
        --container-width: 960px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .pricing-grid, .features-grid {
        gap: 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .dashboard-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-top: 7rem;
    }
    
    .player-sidebar {
        position: static;
        width: 100%;
    }

    :root {
        --container-width: 720px;
    }
    
    .section {
        padding: 6rem 0 3rem;
    }
    
    /* Navigation Drawer */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(8, 8, 20, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border-left: 1px solid var(--border-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: var(--transition-smooth);
        z-index: 99;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -7px);
    }
    
    .nav-actions {
        display: none; /* Can merge in mobile menu if needed */
    }
    
    /* Hero */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-visual {
        height: 380px;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Devices */
    .devices-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Channel List */
    .channel-header-top {
        flex-direction: column;
        align-items: flex-start;
    }
    .channel-search-wrap {
        width: 100%;
    }
    .channel-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --container-width: 100%;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .hero-title {
        font-size: 2.85rem;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .mockup-tv { width: 220px; height: 130px; left: 10px; }
    .mockup-laptop { width: 180px; height: 115px; right: 10px; bottom: 10px; }
    .mockup-tablet { width: 95px; height: 140px; top: 40px; right: 30px; border-width: 4px; }
    .mockup-phone { width: 60px; height: 120px; left: 60px; bottom: 20px; border-width: 3px; }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .channel-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .devices-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
    }
}

/* ==========================================================================
   Sales Notification Toast Popup
   ========================================================================== */
.sales-popup {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9999;
    max-width: 380px;
    width: calc(100% - 48px);
    background: rgba(10, 11, 26, 0.95);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.5), 
        0 0 30px rgba(124, 58, 237, 0.15);
    transform: translateY(120px) scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
}

.sales-popup.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.sales-popup-content {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    position: relative;
}

.sales-avatar {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.sales-initials {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.sales-check {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #10b981;
    border: 2px solid #060714;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.sales-check-icon {
    width: 10px;
    height: 10px;
    stroke-width: 3.5px;
}

.sales-info {
    flex-grow: 1;
    padding-right: 12px;
}

.sales-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 3px;
}

.sales-cart-icon {
    width: 12px;
    height: 12px;
    color: #fbbf24;
    stroke-width: 2.5px;
}

.sales-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    color: #fbbf24;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.sales-buyer {
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--text-secondary);
}

.buyer-name {
    font-weight: 600;
    color: #ffffff;
}

.buyer-from {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    margin: 0 2px;
}

.buyer-location {
    font-weight: 500;
    color: #ffffff;
}

.sales-product-row {
    font-size: 0.8rem;
    line-height: 1.4;
    margin-top: 1px;
    color: var(--text-secondary);
}

.product-action {
    color: rgba(255, 255, 255, 0.4);
}

.product-name {
    font-weight: 600;
    color: #fbbf24;
}

.sales-time {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-top: 4px;
    text-transform: uppercase;
}

.sales-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    line-height: 1;
    padding: 4px;
}

.sales-close:hover {
    color: #ffffff;
    transform: scale(1.1);
}

/* Responsive Styles for Mobile */
@media (max-width: 576px) {
    .sales-popup {
        left: 16px;
        bottom: 16px;
        width: calc(100% - 32px);
        max-width: none;
    }
}

/* ============================================================
   Static Checkout Page — Styles
   ============================================================ */
.checkout-section {
    padding: 140px 0 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.summary-card-centered {
    background: linear-gradient(160deg, rgba(15,15,32,0.95) 0%, rgba(10,10,22,0.95) 100%);
    border: 1px solid rgba(124,58,237,0.22);
    border-radius: 28px;
    padding: 3.5rem 3rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 40px rgba(124,58,237,0.06);
    backdrop-filter: blur(20px);
    max-width: 600px;
    width: 100%;
    position: relative;
    text-align: center;
}

.summary-card-centered::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent-pink));
    border-radius: 28px 28px 0 0;
}

.summary-title-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: rgba(124,58,237,0.15);
    border: 1px solid rgba(124,58,237,0.3);
    color: #c4b5fd;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 1.25rem;
}

.summary-plan-name {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #fff;
    margin-bottom: 0.5rem;
}

.summary-device-count {
    font-size: 1.05rem;
    color: var(--text-secondary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 2rem;
}

.summary-device-count i {
    color: var(--primary);
}

.summary-price-box {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 0.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    width: 100%;
    justify-content: center;
}

.summary-currency {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    align-self: flex-start;
    margin-top: 0.5rem;
}

.summary-price {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1;
    background: linear-gradient(135deg, #fff 40%, var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.summary-cents {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-secondary);
    align-self: flex-start;
    margin-top: 0.5rem;
}

.summary-period {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-weight: 500;
    display: block;
}

.checkout-features {
    margin-top: 2rem;
    text-align: left;
}

.checkout-features-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    text-align: center;
}

.checkout-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    max-width: 420px;
    margin: 0 auto;
}

.checkout-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

.checkout-feature-item i {
    color: #10b981;
    flex-shrink: 0;
}

.checkout-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 2.5rem;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff !important;
    border: none;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    border-radius: 14px;
    padding: 1.15rem 1.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
}

.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.015);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
    filter: brightness(1.08);
}

.btn-back-home {
    background: var(--glass-bg);
    color: #fff !important;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.15rem 1.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
}

.btn-back-home:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.18);
    transform: translateY(-2px);
}


/* ============================================================
   CONTENT SHOWCASE CAROUSEL
   ============================================================ */

.content-showcase-section {
    padding-bottom: 0;
    overflow: hidden;
}

.content-showcase-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
}

/* --- Category Tabs --- */
.showcase-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 2.8rem;
    flex-wrap: wrap;
}

.showcase-tab {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    letter-spacing: 0.3px;
}

.showcase-tab:hover {
    color: #fff;
    border-color: rgba(124,58,237,0.4);
    background: rgba(124,58,237,0.1);
}

.showcase-tab.active {
    background: linear-gradient(135deg, #7c3aed, #d946ef);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 20px rgba(124,58,237,0.4);
}

/* --- Track Wrapper — full bleed with fade edges --- */
.showcase-track-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1rem 0 2rem;
    cursor: grab;
}

.showcase-track-wrap:active {
    cursor: grabbing;
}

/* Faded edge masks */
.showcase-track-wrap::before,
.showcase-track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 140px;
    z-index: 2;
    pointer-events: none;
}
.showcase-track-wrap::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-main) 0%, transparent 100%);
}
.showcase-track-wrap::after {
    right: 0;
    background: linear-gradient(-90deg, var(--bg-main) 0%, transparent 100%);
}

/* --- Scrolling Track --- */
.showcase-track {
    display: flex;
    gap: 1.2rem;
    width: max-content;
    animation: showcaseScroll 40s linear infinite;
    will-change: transform;
    padding: 0 1rem;
}

.showcase-track:hover,
.showcase-track-wrap.paused .showcase-track {
    animation-play-state: paused;
}

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

/* --- Individual Card --- */
.showcase-card {
    flex: 0 0 auto;
    width: 180px;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-card:hover {
    transform: translateY(-8px) scale(1.04);
    z-index: 5;
}

/* Hide filtered cards */
.showcase-card.hidden {
    display: none;
}

/* --- Poster Art --- */
.sc-poster {
    position: relative;
    width: 180px;
    height: 260px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.35s ease;
}

.sc-poster img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-card:hover .sc-poster img {
    transform: scale(1.08);
}

.showcase-card:hover .sc-poster {
    box-shadow: 0 16px 48px rgba(0,0,0,0.7), 0 0 0 1px rgba(124,58,237,0.3);
}

.sc-poster-art {
    font-size: 5rem;
    opacity: 0.85;
    user-select: none;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.6));
}

/* Bottom gradient overlay on poster */
.sc-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.8rem 0.7rem 0.6rem;
    background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, transparent 100%);
    display: flex;
    gap: 0.4rem;
    align-items: flex-end;
    z-index: 2;
}

/* --- Badges --- */
.sc-badge {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 3px 7px;
    border-radius: 5px;
    line-height: 1;
}

.badge-movie  { background: #f59e0b; color: #000; }
.badge-sport  { background: #10b981; color: #000; }
.badge-series { background: #7c3aed; color: #fff; }
.badge-serie  { background: #7c3aed; color: #fff; }
.badge-uhd    { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.badge-live   { background: #ef4444; color: #fff; animation: badgePulse 1.5s ease-in-out infinite; }

/* Sport card labels in green, serie labels in violet */
.showcase-card[data-cat="sport"] .sc-label { color: #10b981; }
.showcase-card[data-cat="serie"] .sc-label  { color: #a78bfa; }

@keyframes badgePulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.6; }
}

/* --- Card Info Below Poster --- */
.sc-info {
    padding: 0.65rem 0.2rem 0;
}

.sc-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #f59e0b;
    margin-bottom: 0.25rem;
}

.sc-title {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* --- CTA Row below carousel --- */
.showcase-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem 0 1rem;
    flex-wrap: wrap;
}

.showcase-cta-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .showcase-card { width: 140px; }
    .sc-poster { width: 140px; height: 200px; }
    .sc-poster-art { font-size: 3.5rem; }
    .showcase-track-wrap::before,
    .showcase-track-wrap::after { width: 60px; }
    .showcase-cta { flex-direction: column; gap: 0.8rem; }
}

/* --- Rendering & Performance Optimizations --- */
#features {
    content-visibility: auto;
    contain-intrinsic-size: 1px 600px;
}
#devices {
    content-visibility: auto;
    contain-intrinsic-size: 1px 400px;
}
#pricing {
    content-visibility: auto;
    contain-intrinsic-size: 1px 800px;
}
#faq {
    content-visibility: auto;
    contain-intrinsic-size: 1px 300px;
}
#contact {
    content-visibility: auto;
    contain-intrinsic-size: 1px 650px;
}
.footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 450px;
}

/* ============================================================
   NEW CONTENT SPLIT SHOWCASE
   ============================================================ */
.content-split-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.content-left-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.content-left-text .section-title {
    text-align: left;
    margin-bottom: 1.2rem;
    font-size: 2.8rem;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.showcase-category-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.showcase-category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    flex-shrink: 0;
    font-size: 1.25rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

.showcase-category-icon.sport {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
}

.showcase-category-icon.movie {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.2);
}

.showcase-category-icon.serie {
    color: #a78bfa;
    background: rgba(167, 139, 250, 0.1);
    border-color: rgba(167, 139, 250, 0.2);
}

.showcase-category-info h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
}

.showcase-category-info p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.5;
}

/* --- Right Images Grid/Stack --- */
.content-right-images {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-showcase-card {
    position: absolute;
    width: 200px;
    height: 290px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Three overlapping cards styled dynamically */
.card-sport {
    transform: rotate(-10deg) translate(-80px, -40px);
    z-index: 1;
}

.card-movie {
    transform: rotate(0deg) translate(0, 0) scale(1.05);
    z-index: 3;
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 25px 50px rgba(0,0,0,0.8), 0 0 15px rgba(124,58,237,0.2);
}

.card-serie {
    transform: rotate(8deg) translate(90px, 30px);
    z-index: 2;
}

/* Hover effects */
.image-showcase-card:hover {
    z-index: 10;
    transform: scale(1.1) rotate(0deg);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 30px 60px rgba(0,0,0,0.9);
}

/* Rotator Slide Animation Styles */
.rotator-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    transform: scale(0.95);
    display: flex;
    align-items: center;
    justify-content: center;
}

.rotator-slide.active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}


@media (max-width: 991px) {
    .content-split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .content-right-images {
        height: 380px;
    }
    .image-showcase-card {
        width: 170px;
        height: 245px;
    }
    .card-sport {
        transform: rotate(-10deg) translate(-60px, -30px);
    }
    .card-serie {
        transform: rotate(8deg) translate(70px, 20px);
    }
}




