/*
Theme Name: IPTV Starter Light
Theme URI: https://example.com/iptv-starter-light
Author: Custom Theme
Author URI: https://example.com
Description: A modern, light-themed IPTV streaming service WordPress theme with stunning visuals and smooth animations.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: iptv-starter-light
*/

/* ===================================
   CSS Variables & Root Styles
   =================================== */
:root {
    /* Light Theme - Fresh Modern Palette */
    --bg-primary: #fafafa;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f1f5f9;
    --bg-card: rgba(255, 255, 255, 0.95);
    --bg-card-hover: rgba(255, 255, 255, 1);

    /* Vibrant Accent Colors - Teal/Cyan + Coral/Orange */
    --accent-primary: #0891b2;
    --accent-secondary: #06b6d4;
    --accent-tertiary: #22d3ee;
    --accent-warm: #f97316;
    --accent-coral: #fb923c;
    --accent-pink: #f472b6;

    /* Gradients - Fresh and Energetic */
    --gradient-primary: linear-gradient(135deg, #0891b2 0%, #06b6d4 50%, #22d3ee 100%);
    --gradient-secondary: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    --gradient-mixed: linear-gradient(135deg, #0891b2 0%, #06b6d4 40%, #22d3ee 60%, #f97316 100%);
    --gradient-hero: linear-gradient(180deg, rgba(8, 145, 178, 0.03) 0%, transparent 50%);
    --gradient-card: linear-gradient(145deg, rgba(8, 145, 178, 0.03) 0%, rgba(249, 115, 22, 0.02) 100%);
    --gradient-button: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
    --gradient-cta: linear-gradient(135deg, #f97316 0%, #ea580c 100%);

    /* Text Colors - Rich Dark */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;

    /* Border & Effects - STRONGER BORDERS */
    --border-color: rgba(15, 23, 42, 0.15);
    --border-strong: rgba(15, 23, 42, 0.25);
    --border-glow: rgba(8, 145, 178, 0.5);
    --glass-bg: rgba(255, 255, 255, 0.95);
    --shadow-glow: 0 0 40px rgba(8, 145, 178, 0.15);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-button: 0 4px 20px rgba(8, 145, 178, 0.35);
    --shadow-cta: 0 4px 20px rgba(249, 115, 22, 0.35);

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Outfit', 'Inter', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===================================
   FORCE HIDE ADMIN BAR
   =================================== */
#wpadminbar,
.admin-bar #wpadminbar,
html #wpadminbar,
body #wpadminbar,
#wp-admin-bar-root-default {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    pointer-events: none !important;
    z-index: -9999 !important;
}

/* Remove admin bar spacing */
html,
body,
html.admin-bar,
body.admin-bar {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Hide search bar if it appears */
#adminbarsearch,
.ab-search,
.search-field {
    display: none !important;
}

/* ===================================
   Reset & Base Styles
   =================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 15% 15%, rgba(8, 145, 178, 0.06) 0%, transparent 45%),
        radial-gradient(ellipse at 85% 25%, rgba(249, 115, 22, 0.04) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 85%, rgba(6, 182, 212, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

/* ===================================
   Typography
   =================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.text-gradient {
    background: linear-gradient(135deg, #0e7490 0%, #0891b2 40%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 800;
}

.section-title .text-gradient {
    background: linear-gradient(135deg, #0c4a5e 0%, #0891b2 50%, #c2410c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* ===================================
   Container & Layout
   =================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
    position: relative;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: none;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-button);
    color: #ffffff;
    box-shadow: var(--shadow-button);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(8, 145, 178, 0.5);
}

.btn-secondary {
    background: #ffffff;
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
    box-shadow: var(--shadow-card);
}

.btn-secondary:hover {
    background: var(--accent-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--accent-warm);
    border: 2px solid var(--accent-warm);
}

.btn-outline:hover {
    background: var(--gradient-cta);
    color: #ffffff;
    border-color: transparent;
    box-shadow: var(--shadow-cta);
    transform: translateY(-2px);
}

/* CTA Button - Warm Orange for Action */
.btn-cta {
    background: var(--gradient-cta);
    color: #ffffff;
    box-shadow: var(--shadow-cta);
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.5);
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.125rem;
}

/* Focus styles for accessibility */
.btn:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

/* Skip link for keyboard users */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 100000;
    background: var(--accent-primary);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0 0 8px 0;
}

.skip-link:focus {
    position: fixed;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    overflow: visible;
}

/* ===================================
   Header & Navigation
   =================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-normal);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    margin-left: 20px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
    display: block;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(8, 145, 178, 0.06) 0%, transparent 60%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1.1);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #ffffff;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero-title {
    font-size: clamp(2.75rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-title .text-gradient {
    background: linear-gradient(135deg, #0c4a5e 0%, #0891b2 50%, #c2410c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.stat-item h4 {
    font-size: 2rem;
    margin-bottom: 4px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: 26px;
    z-index: -1;
    opacity: 0.5;
}

.hero-image {
    width: 100%;
    border-radius: 24px;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    background: #ffffff;
    backdrop-filter: blur(20px);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.floating-card.card-1 {
    top: 20%;
    left: -60px;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 20%;
    right: -40px;
    animation-delay: 1s;
}

.floating-card-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.floating-card-text h5 {
    font-size: 0.875rem;
    margin-bottom: 2px;
}

.floating-card-text p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

/* ===================================
   Features Section
   =================================== */
.features {
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #ffffff;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px rgba(8, 145, 178, 0.15);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(8, 145, 178, 0.25);
}

.feature-card h3 {
    font-size: 1.375rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   Channels Section
   =================================== */
.channels {
    position: relative;
}

.channels-showcase {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.channel-logo {
    background: #ffffff;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    aspect-ratio: 1;
    box-shadow: var(--shadow-card);
}

.channel-logo:hover {
    border-color: var(--accent-primary);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(8, 145, 178, 0.15);
}

.channel-logo img {
    max-width: 80%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    transition: var(--transition-normal);
}

.channel-logo:hover img {
    filter: grayscale(0%) brightness(1);
}

.channels-info {
    text-align: center;
}

.channels-count {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 1rem;
}

.channels-count strong {
    color: var(--accent-primary);
}

/* ===================================
   Pricing Section
   =================================== */
.pricing {
    background: var(--bg-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: var(--transition-normal);
}

.pricing-card.featured {
    border-color: var(--accent-primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: 26px;
    z-index: -1;
    opacity: 0.3;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gradient-primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pricing-header {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.pricing-name {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-period {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
    border: none;
}

.pricing-features li::before {
    content: '✓';
    width: 24px;
    height: 24px;
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    flex-shrink: 0;
}

.pricing-card .btn {
    width: 100%;
}

/* ===================================
   FAQ Section
   =================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--accent-primary);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--accent-primary);
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: var(--glass-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition-normal);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: var(--accent-primary);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 30px 24px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===================================
   CTA Section
   =================================== */
.cta {
    text-align: center;
    position: relative;
}

.cta-box {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(ellipse at center, rgba(79, 70, 229, 0.05) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   Footer
   =================================== */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-description {
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.footer-links a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: var(--accent-primary);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-text {
        max-width: 700px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        margin-top: 20px;
    }

    /* Hide hero visual (TV mockup) on tablet */
    .hero-visual {
        display: none;
    }

    .channels-showcase {
        grid-template-columns: repeat(4, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--bg-secondary);
        border-bottom: 1px solid var(--border-color);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-cta {
        margin-left: 0;
    }

    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
    }

    .hero-text {
        order: 1;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 30px;
        padding-top: 30px;
    }

    /* Hide hero visual (TV mockup) on mobile/tablet */
    .hero-visual {
        display: none;
    }

    .channels-showcase {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }

    .pricing-card {
        padding: 30px 25px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .cta-box {
        padding: 50px 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .channels-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================================
   WordPress Core Styles
   =================================== */
.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
    padding: 0.5rem;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Page Content */
.page-content,
.entry-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.page-content p,
.entry-content p {
    margin-bottom: 1.5rem;
}

/* ===================================
   TV Mockup Styles
   =================================== */
.tv-mockup {
    width: 100%;
    aspect-ratio: 16/10;
    background: linear-gradient(145deg, #0d0d14, #1a1a2e);
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid #2a2a3e;
    box-shadow:
        0 0 0 1px rgba(99, 102, 241, 0.1),
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.tv-screen {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 15px;
}

.tv-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    margin-bottom: 15px;
}

.tv-logo {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--accent-primary);
}

.tv-nav {
    display: flex;
    gap: 15px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.tv-nav span {
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition-fast);
}

.tv-nav span.active,
.tv-nav span:hover {
    color: #ffffff;
}

.tv-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tv-channel-row {
    display: flex;
    gap: 10px;
}

.tv-channel {
    flex: 1;
    padding: 12px 10px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    transition: var(--transition-fast);
    cursor: pointer;
}

.tv-channel:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.tv-channel span {
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    color: #ffffff;
}

.tv-channel small {
    font-size: 0.6rem;
    opacity: 0.8;
    color: #ffffff;
}

.tv-featured {
    flex: 1;
}

.tv-movie {
    width: 100%;
    height: 100%;
    min-height: 80px;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
}

.tv-movie::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.1));
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

.movie-info {
    position: relative;
    z-index: 1;
}

.movie-tag,
.review-status {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 3px 8px;
    background: var(--accent-primary);
    color: #ffffff;
    border-radius: 4px;
    margin-bottom: 6px;
    animation: blink 2s infinite;
}

.movie-info h4 {
    font-size: 0.9rem;
    margin: 0 0 2px 0;
    font-weight: 700;
    color: #ffffff;
}

.movie-info p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.tv-channel-row.small {
    gap: 8px;
}

.tv-thumb {
    flex: 1;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
}

.tv-thumb:hover {
    transform: translateY(-2px);
    filter: brightness(1.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.tv-thumb.tf1 {
    background: linear-gradient(135deg, #0055a4, #003366);
}

.tv-thumb.fr2 {
    background: linear-gradient(135deg, #e2001a, #a00012);
}

.tv-thumb.m6 {
    background: linear-gradient(135deg, #333333, #000000);
}

.tv-thumb.rtl {
    background: linear-gradient(135deg, #ffcc00, #e6b800);
    color: #000;
}

.tv-thumb.la1 {
    background: linear-gradient(135deg, #00a1e1, #0077a8);
}

/* Responsive TV Mockup */
@media (max-width: 768px) {
    .tv-screen {
        padding: 10px;
    }

    .tv-header {
        padding: 8px 10px;
    }

    .tv-logo {
        font-size: 0.75rem;
    }

    .tv-nav {
        display: none;
    }

    .tv-channel span {
        font-size: 0.6rem;
    }

    .tv-channel small {
        display: none;
    }

    .movie-info h4 {
        font-size: 0.75rem;
    }

    .tv-thumb {
        height: 30px;
    }
}

@media (max-width: 480px) {
    .tv-channel-row {
        flex-wrap: wrap;
    }

    .tv-channel {
        flex: 1 1 45%;
        padding: 8px;
    }

    .tv-channel-row.small .tv-thumb:nth-child(4),
    .tv-channel-row.small .tv-thumb:nth-child(5) {
        display: none;
    }
}

/* ===================================
   IPTV App Interface Styles
   =================================== */
.iptv-app-wrapper {
    margin-bottom: 50px;
}

.iptv-app {
    display: flex;
    background: linear-gradient(145deg, #0d0d14, #1a1a2e);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(99, 102, 241, 0.2);
    box-shadow:
        0 0 0 1px rgba(99, 102, 241, 0.1),
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    min-height: 450px;
}

/* IPTV Sidebar */
.iptv-sidebar {
    width: 180px;
    background: rgba(0, 0, 0, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
    flex-shrink: 0;
}

.iptv-category {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.iptv-category:hover {
    background: rgba(99, 102, 241, 0.1);
}

.iptv-category.active {
    background: rgba(99, 102, 241, 0.15);
    border-left-color: var(--accent-primary);
}

.cat-icon {
    font-size: 1.1rem;
}

.cat-name {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.iptv-category.active .cat-name {
    color: #ffffff;
}

/* IPTV Channels List */
.iptv-channels {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.channels-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-weight: 600;
    font-size: 0.9rem;
    color: #ffffff;
}

.channel-count {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.channel-list {
    flex: 1;
    overflow-y: auto;
}

.channel-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: all 0.2s ease;
}

.channel-item:hover {
    background: rgba(99, 102, 241, 0.08);
}

/* Highlighted Channel */
.channel-item.highlighted {
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.25), rgba(139, 92, 246, 0.15));
    border-left: 3px solid var(--accent-primary);
    border-bottom-color: rgba(99, 102, 241, 0.2);
    position: relative;
}

.channel-item.highlighted::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.05));
    animation: pulse-bg 2s ease-in-out infinite;
}

@keyframes pulse-bg {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.ch-num {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
    min-width: 30px;
}

.ch-logo {
    width: 45px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: white;
    flex-shrink: 0;
}

.ch-info {
    flex: 1;
    min-width: 0;
}

.ch-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ch-program {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2px;
}

.channel-item.highlighted .ch-program {
    color: var(--accent-primary);
}

.ch-quality {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.9);
}

.ch-quality.hd {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
}

.now-playing {
    width: 28px;
    height: 28px;
    background: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: white;
    animation: pulse 1.5s ease-in-out infinite;
}

/* Responsive IPTV App */
@media (max-width: 768px) {
    .iptv-app {
        flex-direction: column;
        min-height: auto;
    }

    .iptv-sidebar {
        width: 100%;
        display: flex;
        overflow-x: auto;
        padding: 10px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .iptv-category {
        flex-direction: column;
        padding: 10px 15px;
        gap: 5px;
        min-width: fit-content;
        border-left: none;
        border-bottom: 3px solid transparent;
    }

    .iptv-category.active {
        border-left-color: transparent;
        border-bottom-color: var(--accent-primary);
    }

    .cat-name {
        font-size: 0.7rem;
    }

    .channel-item {
        padding: 10px 15px;
        gap: 10px;
    }

    .ch-logo {
        width: 38px;
        height: 28px;
    }

    .ch-name {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .channels-header {
        padding: 12px 15px;
    }

    .ch-num {
        display: none;
    }

    .ch-quality {
        display: none;
    }
}

/* ===================================
   Multi-Device Showcase
   =================================== */
.device-showcase {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

/* Device Base Styles */
.device {
    position: absolute;
    transition: transform 0.3s ease;
}

.device:hover {
    transform: translateY(-10px);
}

.device-frame {
    background: linear-gradient(145deg, #1a1a2e, #0d0d14);
    border-radius: 12px;
    padding: 8px;
    border: 2px solid rgba(99, 102, 241, 0.3);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.device-screen {
    background: #0a0a12;
    border-radius: 6px;
    overflow: hidden;
}

.screen-content {
    padding: 12px;
    position: relative;
}

/* Smart TV Device */
.device-tv {
    z-index: 3;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    animation: floatTV 4s ease-in-out infinite;
}

@keyframes floatTV {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-15px);
    }
}

.device-tv .device-frame {
    width: 320px;
    border-radius: 16px;
    padding: 10px;
}

.device-tv .device-screen {
    width: 300px;
    height: 170px;
    border-radius: 8px;
}

.device-stand {
    width: 100px;
    height: 40px;
    background: linear-gradient(145deg, #1a1a2e, #0d0d14);
    margin: 0 auto;
    border-radius: 0 0 10px 10px;
    position: relative;
}

.device-stand::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 8px;
    background: linear-gradient(145deg, #1a1a2e, #0d0d14);
    border-radius: 4px;
}

/* TV Live Content */
.tv-content-live {
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 146px;
}

.live-badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 10px;
    background: rgba(239, 68, 68, 0.9);
    border-radius: 4px;
    width: fit-content;
    animation: blink 1.5s infinite;
}

.content-info {
    margin-top: auto;
}

.content-info .channel-name {
    font-size: 0.6rem;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.content-info h4 {
    font-size: 1rem;
    margin: 4px 0;
    font-weight: 700;
}

.content-info p {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin: 0;
}

.score-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 15px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.score-overlay span {
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
}

.score-divider {
    font-size: 1rem !important;
    color: var(--text-muted) !important;
}

/* Laptop Device */
.device-laptop {
    z-index: 2;
    bottom: 0;
    left: 5%;
    animation: floatSide 4s ease-in-out infinite 0.5s;
}

.device-laptop .device-frame {
    width: 180px;
    border-radius: 10px 10px 0 0;
    padding: 6px;
}

.device-laptop .device-screen {
    width: 168px;
    height: 105px;
    border-radius: 4px;
}

.laptop-keyboard {
    width: 200px;
    height: 10px;
    background: linear-gradient(145deg, #1a1a2e, #0d0d14);
    border-radius: 0 0 6px 6px;
    margin-left: -10px;
}

.laptop-content {
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e, #2d1b4e);
    display: flex;
    gap: 10px;
    min-height: 81px;
}

.movie-poster {
    width: 50px;
    height: 70px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 4px;
    flex-shrink: 0;
}

.movie-details {
    flex: 1;
}

.movie-details .tag {
    font-size: 0.5rem;
    background: var(--accent-primary);
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 600;
}

.movie-details h5 {
    font-size: 0.75rem;
    margin: 6px 0 4px;
    font-weight: 700;
}

.movie-details .rating {
    font-size: 0.6rem;
    color: #f39c12;
}

/* Phone Device */
.device-phone {
    z-index: 2;
    bottom: 0;
    right: 5%;
    animation: floatSide 4s ease-in-out infinite 1s;
}

.device-phone .device-frame {
    width: 90px;
    border-radius: 14px;
    padding: 6px;
}

.device-phone .device-screen {
    width: 78px;
    height: 140px;
    border-radius: 10px;
}

.phone-content {
    background: linear-gradient(180deg, #0d0d14, #1a1a2e);
    height: 100%;
    min-height: 116px;
}

.phone-header {
    font-size: 0.55rem;
    font-weight: 600;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 8px;
}

.channel-mini {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 0;
    font-size: 0.5rem;
    border-radius: 4px;
    transition: all 0.2s;
}

.channel-mini.active {
    background: rgba(99, 102, 241, 0.2);
    padding: 6px;
    margin: 0 -6px;
}

.ch-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.channel-mini .playing {
    margin-left: auto;
    color: var(--accent-primary);
    font-size: 0.5rem;
}

/* Device Labels */
.device-label {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.label-icon {
    font-size: 1rem;
}

.label-tv {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.label-laptop {
    bottom: 120px;
    left: 10%;
}

.label-phone {
    bottom: 150px;
    right: 10%;
}

@keyframes floatSide {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Responsive Device Showcase */
@media (max-width: 1200px) {
    .device-showcase {
        height: 400px;
    }

    .device-tv .device-frame {
        width: 280px;
    }

    .device-tv .device-screen {
        width: 260px;
        height: 150px;
    }

    .device-laptop .device-frame {
        width: 150px;
    }

    .device-laptop .device-screen {
        width: 138px;
        height: 85px;
    }

    .laptop-content {
        min-height: 61px;
    }

    .device-phone .device-frame {
        width: 75px;
    }

    .device-phone .device-screen {
        width: 63px;
        height: 110px;
    }

    .phone-content {
        min-height: 86px;
    }
}

/* ===================================
   Simple TV Design
   =================================== */
.simple-tv {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.tv-frame {
    background: linear-gradient(145deg, #1a1a2e, #0d0d14);
    border-radius: 20px;
    padding: 12px;
    border: 3px solid rgba(99, 102, 241, 0.3);
    box-shadow:
        0 0 0 1px rgba(99, 102, 241, 0.1),
        0 30px 80px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.tv-screen-content {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
    border-radius: 12px;
    padding: 25px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.tv-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3CradialGradient id='a' cx='50%25' cy='50%25'%3E%3Cstop offset='0%25' stop-color='%236366f1' stop-opacity='0.1'/%3E%3Cstop offset='100%25' stop-color='transparent'/%3E%3C/radialGradient%3E%3C/defs%3E%3Cellipse cx='200' cy='150' rx='180' ry='120' fill='url(%23a)'/%3E%3C/svg%3E");
    background-size: cover;
    opacity: 0.5;
}

.tv-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.live-indicator {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    background: rgba(239, 68, 68, 0.9);
    border-radius: 6px;
    animation: blink 1.5s infinite;
}

.channel-badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 6px 12px;
    background: rgba(99, 102, 241, 0.3);
    border: 1px solid rgba(99, 102, 241, 0.5);
    border-radius: 6px;
    color: var(--accent-primary);
}

.tv-main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.tv-main-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 8px;
    background: linear-gradient(135deg, #fff, #c7d2fe);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tv-main-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0 0 20px;
}

.match-score {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.4);
    padding: 15px 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.match-score span {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
}

.match-score .divider {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.tv-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.quality-badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 5px 10px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.viewers {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.tv-stand-simple {
    width: 120px;
    height: 50px;
    background: linear-gradient(145deg, #1a1a2e, #0d0d14);
    margin: 0 auto;
    border-radius: 0 0 12px 12px;
    position: relative;
}

.tv-stand-simple::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 10px;
    background: linear-gradient(145deg, #1a1a2e, #0d0d14);
    border-radius: 5px;
}

/* Floating Cards Styles */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    z-index: 10;
}

.floating-card-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.floating-card-text h5 {
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0 0 2px;
}

.floating-card-text p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

.floating-card.card-1 {
    top: 20%;
    left: -30px;
    animation: floatLeft 4s ease-in-out infinite;
}

.floating-card.card-2 {
    bottom: 25%;
    right: -30px;
    animation: floatRight 4s ease-in-out infinite 0.5s;
}

@keyframes floatLeft {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-15px) translateX(-5px);
    }
}

@keyframes floatRight {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-15px) translateX(5px);
    }
}

/* Simple TV Responsive */
@media (max-width: 600px) {
    .simple-tv {
        max-width: 100%;
    }

    .tv-screen-content {
        min-height: 220px;
        padding: 20px;
    }

    .tv-main-content h3 {
        font-size: 1.2rem;
    }

    .match-score span {
        font-size: 2rem;
    }

    .floating-card {
        display: none;
    }
}

/* ===================================
   Trustpilot-Style Reviews Section
   =================================== */
.reviews {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.reviews-header {
    text-align: center;
    margin-bottom: 60px;
}

.trustpilot-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.tp-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tp-star {
    font-size: 1.5rem;
    color: #00b67a;
}

.tp-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.tp-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.tp-stars {
    display: flex;
    gap: 4px;
}

.tp-stars .star {
    width: 28px;
    height: 28px;
    background: #00b67a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    border-radius: 2px;
}

.tp-score {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.tp-count {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.review-stars span {
    width: 24px;
    height: 24px;
    background: #00b67a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    border-radius: 3px;
}

.review-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--text-primary);
}

.review-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 20px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.author-location {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.verified-badge {
    font-size: 0.7rem;
    font-weight: 600;
    color: #00b67a;
    background: rgba(0, 182, 122, 0.1);
    padding: 5px 10px;
    border-radius: 20px;
    flex-shrink: 0;
}

/* Reviews Responsive */
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .trustpilot-badge {
        padding: 15px 25px;
    }

    .tp-stars .star {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .review-card {
        padding: 20px;
    }

    .review-author {
        flex-wrap: wrap;
    }

    .verified-badge {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
}

/* ===================================
   Blog Styles
   =================================== */

/* Blog Hero */
.blog-hero {
    padding: 180px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(99, 102, 241, 0.15) 0%, transparent 60%);
}

.blog-hero-content {
    position: relative;
    z-index: 1;
}

.blog-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.blog-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin: 0 0 16px;
}

.blog-hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Section */
.blog-section {
    background: var(--bg-primary);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Blog Card */
.blog-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.blog-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 3rem;
    background: linear-gradient(135deg, var(--bg-secondary), rgba(99, 102, 241, 0.1));
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    background: var(--accent-primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-card-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.blog-meta span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.blog-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.blog-card-title a:hover {
    color: var(--accent-primary);
}

.blog-card-excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 20px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s;
}

.blog-read-more:hover {
    gap: 12px;
}

/* Blog Pagination */
.blog-pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.blog-pagination .nav-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.blog-pagination a,
.blog-pagination span {
    padding: 12px 18px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
}

.blog-pagination a:hover,
.blog-pagination span.current {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
}

/* Blog Empty State */
.blog-empty {
    text-align: center;
    padding: 80px 20px;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.blog-empty h2 {
    font-size: 1.5rem;
    margin: 0 0 10px;
}

.blog-empty p {
    color: var(--text-muted);
    margin: 0 0 30px;
}

/* ===================================
   Single Post Styles
   =================================== */

/* Single Hero */
.single-hero {
    padding: 180px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.single-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.single-category {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.single-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin: 0 0 30px;
    line-height: 1.3;
}

.single-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
}

.author-details {
    text-align: left;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
}

.post-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.post-stats {
    display: flex;
    gap: 20px;
}

.read-time {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Single Featured Image */
.single-featured-image {
    padding: 0 0 40px;
    background: var(--bg-primary);
}

.featured-image-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.featured-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Single Content */
.single-content {
    background: var(--bg-primary);
}

.post-article {
    max-width: 800px;
    margin: 0 auto;
}

.post-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.post-body h2,
.post-body h3,
.post-body h4 {
    color: var(--text-primary);
    margin-top: 2em;
    margin-bottom: 0.5em;
}

.post-body p {
    margin-bottom: 1.5em;
}

.post-body a {
    color: var(--accent-primary);
    text-decoration: underline;
}

.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2em 0;
}

.post-body blockquote {
    border-left: 4px solid var(--accent-primary);
    padding-left: 20px;
    margin: 2em 0;
    font-style: italic;
    color: var(--text-muted);
}

.post-body ul,
.post-body ol {
    margin-bottom: 1.5em;
    padding-left: 1.5em;
}

.post-body li {
    margin-bottom: 0.5em;
}

/* Post Tags */
.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.tags-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

.tag-link {
    padding: 6px 14px;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s;
}

.tag-link:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
}

/* Post Share */
.post-share {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.share-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
    font-weight: 700;
}

.share-btn.whatsapp {
    background: #25d366;
    color: white;
}

.share-btn.email {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Author Box */
.author-box {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.author-box-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--accent-primary);
}

.author-box-info {
    flex: 1;
}

.author-box-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.author-box-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 5px 0 10px;
}

.author-box-bio {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Post Navigation */
.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.nav-post {
    padding: 25px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s;
}

.nav-post:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
}

.nav-prev {
    text-align: left;
}

.nav-next {
    text-align: right;
}

.nav-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.nav-title {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    display: block;
}

/* Related Posts */
.related-posts {
    margin-top: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.related-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.related-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.related-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.3);
}

.related-image {
    height: 150px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-secondary), rgba(99, 102, 241, 0.1));
    font-size: 2rem;
}

.related-content {
    padding: 20px;
}

.related-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.related-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 8px 0 0;
    line-height: 1.4;
}

.related-content h3 a {
    color: var(--text-primary);
    text-decoration: none;
}

.related-content h3 a:hover {
    color: var(--accent-primary);
}

/* Blog Responsive */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-hero-title {
        font-size: 2rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .single-title {
        font-size: 2rem;
    }

    .single-meta {
        flex-direction: column;
        gap: 15px;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
    }

    .post-navigation {
        grid-template-columns: 1fr;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        padding: 150px 0 60px;
    }

    .blog-hero-title {
        font-size: 1.75rem;
    }

    .blog-card-content {
        padding: 20px;
    }

    .single-hero {
        padding: 150px 0 40px;
    }

    .single-title {
        font-size: 1.5rem;
    }

    .post-body {
        font-size: 1rem;
    }
}

/* ===================================
   Latest Posts Section (Homepage)
   =================================== */
.latest-posts {
    background: var(--bg-secondary);
}

.latest-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.latest-posts-cta {
    text-align: center;
}

/* Mobile: 1 column */
@media (max-width: 768px) {
    .latest-posts-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Installation Guide Page
   =================================== */

/* Guide Hero */
.guide-hero {
    padding: 180px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
}

.guide-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(99, 102, 241, 0.15) 0%, transparent 60%);
}

.guide-hero-content {
    position: relative;
    z-index: 1;
}

.guide-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.guide-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin: 0 0 16px;
}

.guide-hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Device Tabs Section */
.device-tabs {
    background: var(--bg-primary);
}

.tabs-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* Tabs Navigation */
.tabs-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-btn {
    padding: 16px 28px;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}

.tab-btn:hover {
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-3px);
    background: var(--bg-secondary);
}

.tab-btn.active {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Guide Card */
.guide-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
}

.guide-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}


.guide-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 5px;
}

.guide-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* Guide Info Box */
.guide-info-box {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
    padding: 20px;
    background: var(--glass-bg);
    border-radius: 12px;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.info-label {
    font-weight: 600;
    color: var(--accent-primary);
}

/* Guide Steps */
.guide-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.step {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.step:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateX(5px);
}

.step-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 8px;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.step-content strong {
    color: var(--accent-primary);
}

/* Guide Tip */
.guide-tip {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
}

.tip-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.guide-tip strong {
    color: var(--accent-primary);
}

/* Need Help Box */
.need-help-box {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 60px;
    padding: 40px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
}

.help-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.help-content {
    flex: 1;
}

.help-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 8px;
}

.help-content p {
    color: var(--text-secondary);
    margin: 0;
}

/* Installation Guide Responsive */
@media (max-width: 768px) {
    .guide-hero {
        padding: 150px 0 60px;
    }

    .guide-hero-title {
        font-size: 2rem;
    }

    .tabs-nav {
        gap: 8px;
    }

    .tab-btn {
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    .guide-card {
        padding: 25px;
    }

    .guide-header {
        flex-direction: column;
        text-align: center;
    }

    .guide-info-box {
        flex-direction: column;
        gap: 10px;
    }

    .step {
        flex-direction: column;
        gap: 15px;
    }

    .need-help-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .tab-btn {
        padding: 10px 14px;
        font-size: 0.75rem;
    }
}

/* ===================================
   Pricing Section - Modern Minimal Design
   =================================== */

.pricing {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-tertiary) 100%);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    opacity: 0.3;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #94a3b8, #cbd5e1);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(8, 145, 178, 0.12);
}

.pricing-card:hover::before {
    height: 6px;
    background: var(--gradient-primary);
}

/* Featured Card */
.pricing-card.featured {
    background: #ffffff;
    box-shadow: 0 8px 40px rgba(8, 145, 178, 0.15);
    transform: scale(1.02);
}

.pricing-card.featured::before {
    height: 6px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-warm));
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-12px);
    box-shadow: 0 24px 50px rgba(8, 145, 178, 0.2);
}

/* Badge */
.pricing-badge {
    position: absolute;
    top: 25px;
    /* right: 8px; */
    left: 227px;
    width: 160px;
    background: linear-gradient(135deg, var(--accent-warm), #ea580c);
    color: white;
    font-size: 9px;
    font-weight: 700;
    padding: 7px 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transform: rotate(45deg);
    /* box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3); */
    z-index: 10;
}

/* Card Inner Content */
.pricing-header {
    padding: 32px 28px 24px;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
}

.pricing-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #64748b;
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pricing-popular {
    display: none;
    /* Replaced by badge */
}

.pricing-price {
    margin: 0 !important;
    line-height: 1 !important;
    display: flex !important;
    align-items: baseline !important;
    justify-content: center !important;
    gap: 2px !important;
}

.pricing-price .price-amount {
    font-size: 3rem !important;
    font-weight: 800 !important;
    color: var(--text-primary) !important;
    font-style: normal !important;
    letter-spacing: -0.02em;
}

.pricing-card.featured .pricing-price .price-amount {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-warm));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-price .price-suffix {
    font-size: 1rem !important;
    font-weight: 500 !important;
    color: #94a3b8 !important;
}

.pricing-period {
    font-size: 0.85rem !important;
    color: var(--accent-primary) !important;
    margin: 12px 0 0 !important;
    font-weight: 600 !important;
    background: rgba(8, 145, 178, 0.08);
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
}

/* Screen Selector */
.screen-selector {
    padding: 20px 28px;
    background: #f8fafc;
}

.screen-label {
    font-size: 0.8rem !important;
    color: #64748b !important;
    margin: 0 0 12px !important;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.screen-options {
    display: flex !important;
    justify-content: center !important;
    gap: 8px !important;
}

.screen-option {
    width: 38px !important;
    height: 38px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 10px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: #64748b !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    background: #ffffff !important;
}

.screen-option:hover {
    border-color: var(--accent-primary) !important;
    color: var(--accent-primary) !important;
    background: rgba(8, 145, 178, 0.05) !important;
}

.screen-option.active {
    background: var(--accent-primary) !important;
    border-color: var(--accent-primary) !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(8, 145, 178, 0.3) !important;
}

/* Pricing Features */
.pricing-features {
    list-style: none;
    padding: 24px 28px;
    margin: 0;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: none;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(6, 182, 212, 0.1));
    color: var(--accent-primary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-card.featured .pricing-features li::before {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
}

/* Card Footer with Button */
.pricing-card .btn {
    margin: 0 28px 28px;
    width: calc(100% - 56px);
    text-align: center;
    border-radius: 12px;
    padding: 16px 24px;
    font-weight: 600;
}

.pricing-card .btn-primary {
    background: #f1f5f9;
    color: var(--text-primary);
    box-shadow: none;
}

.pricing-card .btn-primary:hover {
    background: var(--gradient-button);
    color: white;
    box-shadow: var(--shadow-button);
}

.pricing-card.featured .btn-primary {
    background: var(--gradient-cta);
    color: white;
    box-shadow: var(--shadow-cta);
}

.pricing-card.featured .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

/* Pricing Responsive */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 20px;
    }

    .pricing-card.featured {
        transform: scale(1);
        order: -1;
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

/* ===================================
   Features Section
   =================================== */

.features {
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   FAQ Section
   =================================== */

.faq {
    background: var(--bg-primary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-primary);
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent-primary);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: var(--accent-primary);
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 28px 22px;
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================
   CTA Section
   =================================== */

.cta {
    background: var(--bg-secondary);
}

.cta-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 32px;
    padding: 60px;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.cta-content {
    width: 100% !important;
    text-align: center !important;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 15px;
    text-align: center !important;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0 auto 30px !important;
    text-align: center !important;
    max-width: 800px !important;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cta-box {
        padding: 40px 25px;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #20BA5A;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===================================
   Intl-Tel-Input Overrides
   =================================== */
.iti {
    width: 100%;
}

.iti__flag {
    background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@18.2.1/build/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .iti__flag {
        background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@18.2.1/build/img/flags@2x.png");
    }
}

.iti__selected-flag {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px 0 0 12px;
}

.iti__country-list {
    background-color: #1a1a2e !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    z-index: 10000 !important;
    /* Ensure it appears above modal */
}

.iti__country.iti__highlight {
    background-color: rgba(109, 40, 217, 0.5);
}

/* ===================================
   Modal Styles
   =================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #ffffff;
    border: 1px solid rgba(79, 70, 229, 0.15);
    border-radius: 24px;
    padding: 2.5rem;
    width: 90%;
    max-width: 480px;
    position: relative;
    transform: scale(0.95) translateY(20px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 1.5rem;
    color: #64748b;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 10;
    line-height: 1;
}

.modal-close:hover {
    background: #e2e8f0;
    color: #1e293b;
    transform: rotate(90deg);
}

.btn-whatsapp-modal {
    background: #25d366;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, .4);
    display: flex;
    align-items: center;
    gap: .5rem;
    justify-content: center;
    white-space: nowrap;
    font-size: 1rem;
    padding: .8rem 1.5rem;
    width: 100%;
    border-radius: 50px;
    transition: transform 0.2s;
    border: none;
    text-decoration: none;
}

.btn-whatsapp-modal:hover {
    transform: translateY(-2px);
    color: #fff;
}

.modal-section-title {
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.modal-text-highlight {
    color: #4f46e5;
}

.trial-subtitle {
    color: #64748b;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.5;
}

.modal-form-group {
    margin-bottom: 1.25rem;
}

.modal-form-group label {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .5rem;
    color: #475569;
    font-weight: 500;
    font-size: 0.9rem;
}

.modal-input {
    width: 100%;
    padding: .8rem 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    color: #1e293b;
    font-family: inherit;
    transition: all 0.3s;
}

.modal-input:focus {
    outline: none;
    border-color: #4f46e5;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.btn-block {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: .8rem;
    margin-top: 1.5rem;
}

.modal-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
    color: #94a3b8;
    font-size: 0.85rem;
}

.modal-divider::before,
.modal-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e2e8f0;
}

.modal-divider::before {
    margin-right: .5em;
}

.modal-divider::after {
    margin-left: .5em;
}

.success-message {
    text-align: center;
    padding: 1rem 0;
}

.success-message h2 {
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.icon-wrapper {
    background: rgba(79, 70, 229, .1);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #4f46e5;
}