/**
 * Super IPTV+ — Consolidated CSS Patches
 * Merged from: hero-adjustments.css, mobile-fixes.css, mobile-header-fix.css,
 *              fix-empty-cards.css, main-fixes-2026.css
 * Date: 2026-02-22
 */

/* ═══════════════════════════════════════════
   1. HERO ADJUSTMENTS
   ═══════════════════════════════════════════ */

.nav-link {
    font-size: 0.9rem !important;
}

.header-actions .btn {
    padding: 0.65rem 1.25rem !important;
    font-size: 0.85rem !important;
}

.hero-stats {
    gap: 1rem !important;
}

@media (min-width: 480px) {
    .hero-stats { gap: 1.5rem !important; }
}
@media (min-width: 640px) {
    .hero-stats { gap: 2rem !important; }
}
@media (min-width: 768px) {
    .hero-stats { gap: 2.5rem !important; }
}

.stat-value { font-size: 1.35rem !important; }
@media (min-width: 400px) { .stat-value { font-size: 1.6rem !important; } }
@media (min-width: 480px) { .stat-value { font-size: 1.85rem !important; } }
@media (min-width: 640px) { .stat-value { font-size: 2rem !important; } }
@media (min-width: 768px) { .stat-value { font-size: 2.75rem !important; } }

.stat-label { font-size: 0.45rem !important; }
@media (min-width: 400px) { .stat-label { font-size: 0.5rem !important; } }
@media (min-width: 480px) { .stat-label { font-size: 0.575rem !important; } }
@media (min-width: 640px) { .stat-label { font-size: 0.7rem !important; } }
@media (min-width: 768px) { .stat-label { font-size: 0.8rem !important; } }

.hero-badge {
    padding: 0.35rem 0.7rem !important;
    font-size: 0.7rem !important;
    margin-bottom: 0.85rem !important;
}
@media (min-width: 640px) {
    .hero-badge { padding: 0.45rem 0.9rem !important; font-size: 0.8rem !important; margin-bottom: 1rem !important; }
}
@media (min-width: 768px) {
    .hero-badge { padding: 0.55rem 1.1rem !important; font-size: 0.9rem !important; margin-bottom: 1.25rem !important; }
}

.hero-title { font-size: 2.4rem !important; margin-bottom: 0.35rem !important; }
@media (min-width: 400px) { .hero-title { font-size: 2.85rem !important; margin-bottom: 0.4rem !important; } }
@media (min-width: 640px) { .hero-title { font-size: 3.5rem !important; margin-bottom: 0.45rem !important; } }
@media (min-width: 768px) { .hero-title { font-size: 4.25rem !important; margin-bottom: 0.55rem !important; } }
@media (min-width: 1024px) { .hero-title { font-size: 5.75rem !important; margin-bottom: 0.65rem !important; } }
@media (min-width: 1280px) { .hero-title { font-size: 7.75rem !important; margin-bottom: 0.75rem !important; } }

.hero-subtitle { font-size: 1.05rem !important; margin-bottom: 0.85rem !important; }
@media (min-width: 400px) { .hero-subtitle { font-size: 1.3rem !important; margin-bottom: 0.95rem !important; } }
@media (min-width: 640px) { .hero-subtitle { font-size: 1.6rem !important; margin-bottom: 1.05rem !important; } }
@media (min-width: 768px) { .hero-subtitle { font-size: 2.65rem !important; margin-bottom: 1.25rem !important; } }
@media (min-width: 1024px) { .hero-subtitle { font-size: 3.25rem !important; margin-bottom: 1.5rem !important; } }

.hero-description { font-size: 0.825rem !important; }
@media (min-width: 640px) { .hero-description { font-size: 0.95rem !important; } }
@media (min-width: 768px) { .hero-description { font-size: 1.05rem !important; } }
@media (min-width: 1024px) { .hero-description { font-size: 1.175rem !important; } }

/* SEO content section */
.seo-content-section {
    background: linear-gradient(135deg, rgba(20,20,20,0.5) 0%, rgba(36,36,36,0.3) 100%) !important;
}
.seo-content-section .section-header { margin-bottom: 3rem !important; }
.seo-content-section .section-label { display: block !important; margin-bottom: 0.75rem !important; font-size: 0.875rem !important; color: var(--primary) !important; text-transform: uppercase !important; letter-spacing: 0.1em !important; font-weight: 600 !important; }
.seo-content-section .section-title { margin-bottom: 0.75rem !important; font-size: 2.5rem !important; color: #fff !important; }
.seo-content-section .section-subtitle { margin-bottom: 2rem !important; color: var(--muted-foreground) !important; font-size: 1.1rem !important; }

.seo-features-grid { display: grid !important; grid-template-columns: 1fr !important; gap: 1.5rem !important; }
@media (min-width: 768px) { .seo-features-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 2rem !important; } }
@media (min-width: 1024px) { .seo-features-grid { grid-template-columns: repeat(3, 1fr) !important; } }

.seo-feature-card { background: rgba(20, 20, 20, 0.6) !important; border: 1px solid rgba(255, 255, 255, 0.05) !important; border-radius: 1.25rem !important; padding: 2rem 1.5rem !important; transition: all 0.3s ease !important; position: relative !important; overflow: hidden !important; }
.seo-feature-card::before { content: '' !important; position: absolute !important; top: 0 !important; left: 0 !important; right: 0 !important; height: 3px !important; background: linear-gradient(90deg, var(--primary), transparent) !important; opacity: 0 !important; transition: opacity 0.3s ease !important; }
.seo-feature-card:hover { transform: translateY(-4px) !important; border-color: rgba(255, 0, 0, 0.3) !important; box-shadow: 0 12px 40px rgba(255, 0, 0, 0.15) !important; }
.seo-feature-card:hover::before { opacity: 1 !important; }

.seo-feature-icon { width: 64px !important; height: 64px !important; background: linear-gradient(135deg, rgba(255, 0, 0, 0.15), rgba(255, 0, 0, 0.05)) !important; border: 2px solid rgba(255, 0, 0, 0.2) !important; border-radius: 1rem !important; display: flex !important; align-items: center !important; justify-content: center !important; margin-bottom: 1.25rem !important; transition: all 0.3s ease !important; }
.seo-feature-card:hover .seo-feature-icon { background: linear-gradient(135deg, rgba(255, 0, 0, 0.25), rgba(255, 0, 0, 0.1)) !important; border-color: rgba(255, 0, 0, 0.4) !important; transform: scale(1.05) !important; }
.seo-feature-icon i { font-size: 1.75rem !important; color: var(--primary) !important; }

.seo-feature-card h3 { font-family: 'Bebas Neue', sans-serif !important; font-size: 1.5rem !important; color: var(--foreground) !important; margin: 0 0 0.75rem 0 !important; line-height: 1.3 !important; transition: color 0.3s ease !important; }
.seo-feature-card:hover h3 { color: var(--primary) !important; }
.seo-feature-card p { font-size: 1rem !important; line-height: 1.7 !important; color: var(--muted-foreground) !important; margin: 0 !important; }

/* Promo card */
.promo-card { background: linear-gradient(135deg, rgba(255, 0, 0, 0.15) 0%, rgba(36, 36, 36, 0.5) 100%) !important; border: 2px solid rgba(255, 0, 0, 0.2) !important; border-radius: 1.5rem !important; padding: 2.5rem 2rem !important; position: relative !important; overflow: hidden !important; }
@media (min-width: 768px) { .promo-card { padding: 3rem 2.5rem !important; border-radius: 2rem !important; } }
.promo-decoration { opacity: 0.08 !important; }
.promo-glow { opacity: 0.6 !important; }
.promo-content { gap: 2.5rem !important; }
@media (min-width: 1024px) { .promo-content { gap: 3rem !important; } }
.promo-icon { font-size: 3.5rem !important; filter: drop-shadow(0 4px 12px rgba(255, 0, 0, 0.4)) !important; }
@media (min-width: 768px) { .promo-icon { font-size: 4.5rem !important; } }
.promo-left .promo-title { font-family: 'Bebas Neue', sans-serif !important; font-size: 2.5rem !important; margin: 0.5rem 0 0.25rem 0 !important; line-height: 1 !important; color: #fff !important; text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important; }
@media (min-width: 768px) { .promo-left .promo-title { font-size: 3.5rem !important; } }
.promo-subtitle { font-size: 1.15rem !important; color: rgba(255, 255, 255, 0.8) !important; margin: 0 !important; }
@media (min-width: 768px) { .promo-subtitle { font-size: 1.35rem !important; } }
.promo-offer-title { font-family: 'Bebas Neue', sans-serif !important; font-size: 1.35rem !important; color: var(--primary) !important; margin: 0 0 0.5rem 0 !important; text-transform: uppercase !important; letter-spacing: 0.05em !important; }
@media (min-width: 768px) { .promo-offer-title { font-size: 1.65rem !important; } }
.promo-right p { font-size: 1rem !important; line-height: 1.6 !important; color: rgba(255, 255, 255, 0.85) !important; margin-bottom: 1.5rem !important; max-width: 400px !important; }
@media (min-width: 768px) { .promo-right p { font-size: 1.1rem !important; } }
.promo-right .btn-hero { padding: 0.85rem 2rem !important; font-size: 1rem !important; font-weight: 700 !important; box-shadow: 0 8px 24px rgba(255, 0, 0, 0.35) !important; }
.promo-right .btn-hero:hover { transform: scale(1.05) translateY(-2px) !important; box-shadow: 0 12px 32px rgba(255, 0, 0, 0.5) !important; }

/* Hero features */
.hero-features { display: flex !important; flex-wrap: wrap !important; gap: 1rem 2rem !important; list-style: none !important; margin-top: 0 !important; }
@media (min-width: 768px) { .hero-features { gap: 1rem 3rem !important; } }
.hero-feature { display: flex !important; align-items: center !important; gap: 0.5rem !important; font-size: 0.85rem !important; color: rgba(255, 255, 255, 0.8) !important; padding: 0 !important; background: none !important; border: none !important; }
@media (min-width: 640px) { .hero-feature { font-size: 0.9rem !important; } }
@media (min-width: 768px) { .hero-feature { font-size: 0.95rem !important; } }
.hero-feature i { color: var(--primary) !important; font-size: 1rem !important; flex-shrink: 0 !important; }
@media (min-width: 768px) { .hero-feature i { font-size: 1.1rem !important; } }
.hero-feature span { line-height: 1.4 !important; }

/* Hero buttons */
.hero-buttons { gap: 1rem !important; }
@media (min-width: 768px) { .hero-buttons { gap: 1.25rem !important; } }
.btn-hero { padding: 0.75rem 1.15rem !important; font-size: 0.8rem !important; }
@media (min-width: 640px) { .btn-hero { padding: 0.85rem 1.35rem !important; font-size: 0.9rem !important; } }
@media (min-width: 768px) { .btn-hero { padding: 0.95rem 1.75rem !important; font-size: 1rem !important; } }
.btn-hero-outline { padding: 0.75rem 1.15rem !important; font-size: 0.8rem !important; }
@media (min-width: 640px) { .btn-hero-outline { padding: 0.85rem 1.35rem !important; font-size: 0.9rem !important; } }
@media (min-width: 768px) { .btn-hero-outline { padding: 0.95rem 1.75rem !important; font-size: 1rem !important; } }

/* ═══════════════════════════════════════════
   2. MOBILE FIXES & BUTTON CLICK IMPROVEMENTS
   ═══════════════════════════════════════════ */

@media (hover: none) and (pointer: coarse) {
    * { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
    .btn:hover, button:hover, a:hover { transform: none !important; }
}

.btn, button, a[href], .clickable { cursor: pointer; -webkit-tap-highlight-color: rgba(255, 0, 0, 0.2); touch-action: manipulation; user-select: none; -webkit-user-select: none; }
button, .btn, a { -webkit-touch-callout: none; -webkit-user-select: none; }
a, button, input, select, textarea, label { touch-action: manipulation; }

@media (max-width: 768px) {
    .about-section { padding: 40px 15px !important; }
    .about-section .section-title { font-size: 1.8rem !important; margin-bottom: 15px !important; }
    .about-section .section-subtitle { font-size: 0.95rem !important; margin-bottom: 30px !important; }
    .about-grid, .features-grid { display: grid !important; grid-template-columns: 1fr !important; gap: 15px !important; padding: 0 !important; }
    .about-card, .feature-card { padding: 20px 15px !important; border-radius: 12px !important; min-height: auto !important; height: auto !important; }
    .about-card .card-icon, .feature-card .card-icon { width: 50px !important; height: 50px !important; font-size: 1.3rem !important; margin-bottom: 12px !important; }
    .about-card h3, .feature-card h3 { font-size: 1.1rem !important; margin-bottom: 8px !important; }
    .about-card p, .feature-card p { font-size: 0.85rem !important; line-height: 1.5 !important; margin: 0 !important; }
    .why-choose-section { padding: 40px 15px !important; }
    .why-choose-section .section-title { font-size: 1.8rem !important; margin-bottom: 15px !important; }
    .why-choose-grid { display: grid !important; grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; padding: 0 !important; }
    .why-card { padding: 15px 10px !important; border-radius: 10px !important; text-align: center !important; }
    .why-card .icon { width: 45px !important; height: 45px !important; font-size: 1.2rem !important; margin: 0 auto 10px !important; }
    .why-card h4 { font-size: 0.9rem !important; margin-bottom: 5px !important; }
    .why-card p { font-size: 0.75rem !important; line-height: 1.4 !important; display: -webkit-box !important; -webkit-line-clamp: 2 !important; -webkit-box-orient: vertical !important; overflow: hidden !important; }
}

@media (max-width: 480px) {
    .about-section, .why-choose-section { padding: 30px 10px !important; }
    .section-title { font-size: 1.5rem !important; }
    .section-subtitle { font-size: 0.85rem !important; }
    .why-choose-grid { grid-template-columns: 1fr !important; }
    .why-card { padding: 15px !important; }
}

@media (max-width: 768px) {
    .pricing-section { padding: 40px 15px !important; }
    .pricing-grid { grid-template-columns: 1fr !important; gap: 20px !important; max-width: 400px !important; margin: 0 auto !important; }
    .pricing-card { padding: 25px 20px !important; }
    .device-tabs { display: flex !important; flex-wrap: wrap !important; gap: 8px !important; justify-content: center !important; margin-bottom: 25px !important; }
    .device-tab { padding: 8px 15px !important; font-size: 0.85rem !important; flex: 0 0 auto !important; min-width: 80px !important; }
}

@media (max-width: 768px) {
    .hero-section { min-height: 500px !important; padding: 80px 15px 40px !important; }
    .hero-content h1 { font-size: 2rem !important; line-height: 1.2 !important; }
    .hero-content p { font-size: 1rem !important; margin: 15px 0 25px !important; }
    .channels-section { padding: 40px 15px !important; }
    .channels-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 15px !important; }
    .channel-card { padding: 15px 10px !important; }
    .channel-card .icon { width: 50px !important; height: 50px !important; font-size: 1.5rem !important; }
    .channel-card h3 { font-size: 0.9rem !important; }
    .channel-card p { font-size: 0.75rem !important; }
    .faq-section { padding: 40px 15px !important; }
    .faq-item { padding: 15px !important; }
    .faq-question { font-size: 0.95rem !important; padding-right: 30px !important; }
    .faq-answer { font-size: 0.85rem !important; padding-top: 12px !important; }
    .footer { padding: 30px 15px 20px !important; }
    .footer-grid { grid-template-columns: 1fr !important; gap: 25px !important; text-align: center !important; }
    .footer-column h4 { font-size: 1rem !important; margin-bottom: 12px !important; }
    .footer-column ul li { margin-bottom: 8px !important; }
    .footer-column ul li a { font-size: 0.85rem !important; }
}

@media (max-width: 992px) {
    .navbar { padding: 12px 15px !important; }
    .nav-actions .btn-outline, .nav-actions a[href*="login"], .nav-actions a[href*="sign-in"], .nav-actions a[href*="account"],
    .header-actions .btn-outline, .header-actions a[href*="login"], .header-actions a[href*="sign-in"], .header-actions a[href*="account"] { display: none !important; }
    .nav-actions .btn-primary, .header-actions .btn-primary { display: inline-flex !important; }
    .navbar-container, .nav-container { display: flex !important; align-items: center !important; justify-content: space-between !important; gap: 10px !important; }
    .logo-area, .navbar-brand { flex-shrink: 0 !important; }
    .nav-actions, .header-actions { display: flex !important; align-items: center !important; gap: 8px !important; flex-shrink: 0 !important; }
    .menu-toggle, .hamburger, .mobile-menu-btn { width: 40px !important; height: 40px !important; display: flex !important; align-items: center !important; justify-content: center !important; background: rgba(255, 255, 255, 0.05) !important; border-radius: 8px !important; border: 1px solid rgba(255, 255, 255, 0.1) !important; cursor: pointer !important; flex-shrink: 0 !important; }
    .nav-menu { position: fixed !important; top: 60px !important; left: 0 !important; right: 0 !important; background: rgba(10, 10, 10, 0.98) !important; backdrop-filter: blur(10px) !important; padding: 20px !important; max-height: calc(100vh - 60px) !important; overflow-y: auto !important; }
    .nav-menu.active { display: block !important; }
    .nav-links { flex-direction: column !important; gap: 15px !important; }
    .nav-link { padding: 12px 15px !important; width: 100% !important; text-align: center !important; border-radius: 8px !important; background: rgba(255, 255, 255, 0.05) !important; }
}

@media (min-width: 768px) and (max-width: 992px) {
    .nav-actions .btn-outline, .header-actions .btn-outline { display: inline-flex !important; padding: 8px 16px !important; font-size: 0.85rem !important; }
}

@media (max-width: 480px) {
    .navbar { padding: 10px 12px !important; }
    .logo-text { font-size: 1.1rem !important; }
    .logo-text .plus { font-size: 0.9rem !important; }
    .nav-actions .btn-primary, .header-actions .btn-primary { padding: 8px 16px !important; font-size: 0.85rem !important; white-space: nowrap !important; }
    .lang-switcher { margin-left: 5px !important; }
    .lang-btn { padding: 6px 10px !important; font-size: 0.8rem !important; }
    .menu-toggle, .hamburger, .mobile-menu-btn { width: 36px !important; height: 36px !important; }
}

@media (max-width: 768px) {
    .btn, button, a.btn, .nav-link, .device-tab, .faq-question { min-height: 44px !important; min-width: 44px !important; display: inline-flex !important; align-items: center !important; justify-content: center !important; }
    .btn + .btn, button + button { margin-top: 10px !important; }
}

@media (max-width: 768px) {
    input[type="text"], input[type="email"], input[type="password"], input[type="tel"], input[type="number"], select, textarea { font-size: 16px !important; }
}

html { scroll-behavior: smooth; -webkit-overflow-scrolling: touch; }

@media (hover: none) { *:focus { outline: none !important; } }

.btn:active, button:active, a:active { transform: scale(0.98) !important; opacity: 0.9 !important; }
.btn:disabled, button:disabled { opacity: 0.6 !important; cursor: not-allowed !important; pointer-events: none !important; }


/* ═══════════════════════════════════════════
   3. MOBILE HEADER OPTIMIZATION
   ═══════════════════════════════════════════ */

a, button, .btn, input[type="submit"], input[type="button"],
[role="button"], .clickable, .nav-link, .menu-toggle,
.pricing-select-btn, .contact-option, .lang-btn {
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: transparent !important;
}

@media (hover: none) and (pointer: coarse) {
    a:hover, button:hover, .btn:hover { transition-delay: 0s !important; }
}

@media (max-width: 767px) {
    .hero-features { display: none !important; height: 0 !important; margin: 0 !important; padding: 0 !important; overflow: hidden !important; }
    .features-section { display: none !important; }
    .hero-stats { display: flex !important; justify-content: center !important; gap: 15px !important; margin-top: 20px !important; padding: 15px !important; background: rgba(255, 255, 255, 0.05) !important; border-radius: 12px !important; border: 1px solid rgba(255, 255, 255, 0.1) !important; }
    .hero-stats .stat { text-align: center !important; flex: 1 !important; }
    .hero-stats .stat-value { font-size: 1.4rem !important; font-weight: 700 !important; color: #ff0000 !important; }
    .hero-stats .stat-label { font-size: 0.7rem !important; color: rgba(255, 255, 255, 0.7) !important; text-transform: uppercase !important; letter-spacing: 0.5px !important; }
}

@media (max-width: 992px) {
    .navbar, header.navbar, .header { padding: 10px 15px !important; min-height: 60px !important; display: flex !important; align-items: center !important; background: rgba(10, 10, 10, 0.95) !important; backdrop-filter: blur(10px) !important; border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important; }
    .navbar-container, .nav-container, .header-container { width: 100% !important; max-width: 100% !important; display: flex !important; align-items: center !important; justify-content: space-between !important; gap: 10px !important; padding: 0 !important; margin: 0 !important; }
    .logo-area, .navbar-brand, .header-logo { display: flex !important; align-items: center !important; gap: 8px !important; flex-shrink: 0 !important; text-decoration: none !important; height: 40px !important; }
    .logo-icon, .logo-area img, .navbar-brand img { width: 32px !important; height: 32px !important; object-fit: contain !important; }
    .logo-text { font-family: 'Bebas Neue', sans-serif !important; font-size: 1.3rem !important; line-height: 1 !important; letter-spacing: -0.02em !important; display: flex !important; align-items: baseline !important; gap: 2px !important; }
    .logo-text .super { color: #fff !important; }
    .logo-text .iptv { color: #ff0000 !important; }
    .logo-text .plus { color: #ff0000 !important; font-weight: bold !important; font-size: 1rem !important; }
    .nav-actions, .header-actions, .navbar-actions { display: flex !important; align-items: center !important; gap: 8px !important; flex-shrink: 0 !important; height: 40px !important; }
    .nav-actions .btn-outline, .header-actions .btn-outline, .navbar-actions .btn-outline,
    .nav-actions a[href*="login"], .header-actions a[href*="login"],
    .nav-actions a[href*="sign-in"], .header-actions a[href*="sign-in"],
    .nav-actions a[href*="account"], .header-actions a[href*="account"] { display: none !important; }
    .nav-actions .btn-primary, .header-actions .btn-primary, .navbar-actions .btn-primary { display: inline-flex !important; align-items: center !important; justify-content: center !important; padding: 10px 18px !important; font-size: 0.9rem !important; font-weight: 600 !important; height: 40px !important; border-radius: 8px !important; background: #ff0000 !important; color: white !important; border: none !important; white-space: nowrap !important; text-decoration: none !important; transition: all 0.3s ease !important; }

    .lang-switcher { position: relative !important; height: 40px !important; margin: 0 !important; }
    .lang-btn { display: flex !important; align-items: center !important; justify-content: center !important; gap: 5px !important; padding: 8px 12px !important; height: 40px !important; font-size: 0.85rem !important; background: rgba(255, 255, 255, 0.05) !important; border: 1px solid rgba(255, 255, 255, 0.1) !important; border-radius: 8px !important; color: white !important; cursor: pointer !important; white-space: nowrap !important; }
    .lang-btn i { font-size: 0.8rem !important; }
    .menu-toggle, .hamburger, .mobile-menu-btn, .nav-toggle { display: flex !important; align-items: center !important; justify-content: center !important; width: 40px !important; height: 40px !important; background: rgba(255, 255, 255, 0.05) !important; border: 1px solid rgba(255, 255, 255, 0.1) !important; border-radius: 8px !important; cursor: pointer !important; flex-shrink: 0 !important; color: white !important; font-size: 1.2rem !important; transition: all 0.3s ease !important; }
    .menu-toggle:hover, .hamburger:hover, .mobile-menu-btn:hover { background: rgba(255, 255, 255, 0.1) !important; }
    .hamburger-icon, .menu-icon { display: flex !important; flex-direction: column !important; gap: 4px !important; width: 20px !important; }
    .hamburger-icon span, .menu-icon span { display: block !important; width: 100% !important; height: 2px !important; background: white !important; border-radius: 2px !important; transition: all 0.3s ease !important; }
}

@media (max-width: 480px) {
    .navbar, header.navbar, .header { padding: 8px 12px !important; min-height: 56px !important; }
    .logo-area, .navbar-brand { height: 36px !important; }
    .logo-icon, .logo-area img, .navbar-brand img { width: 28px !important; height: 28px !important; }
    .logo-text { font-size: 1.15rem !important; }
    .logo-text .plus { font-size: 0.9rem !important; }
    .nav-actions, .header-actions, .navbar-actions { gap: 6px !important; height: 36px !important; }
    .nav-actions .btn-primary, .header-actions .btn-primary, .navbar-actions .btn-primary { padding: 8px 14px !important; font-size: 0.85rem !important; height: 36px !important; }
    .lang-btn { padding: 6px 10px !important; height: 36px !important; font-size: 0.8rem !important; }
    .menu-toggle, .hamburger, .mobile-menu-btn, .nav-toggle { width: 36px !important; height: 36px !important; font-size: 1.1rem !important; }
    .hamburger-icon, .menu-icon { width: 18px !important; gap: 3px !important; }
}

@media (max-width: 360px) {
    .navbar, header.navbar, .header { padding: 8px 10px !important; }
    .lang-switcher { display: none !important; }
    .logo-text { font-size: 1.05rem !important; }
    .logo-text .plus { font-size: 0.85rem !important; }
    .nav-actions .btn-primary, .header-actions .btn-primary { padding: 8px 12px !important; font-size: 0.8rem !important; }
}

@media (min-width: 768px) and (max-width: 992px) {
    .nav-actions .btn-outline, .header-actions .btn-outline { display: inline-flex !important; align-items: center !important; justify-content: center !important; padding: 10px 16px !important; font-size: 0.85rem !important; height: 40px !important; border-radius: 8px !important; background: transparent !important; color: white !important; border: 1px solid rgba(255, 255, 255, 0.2) !important; white-space: nowrap !important; }
    .nav-actions, .header-actions { gap: 10px !important; }
}

@media (max-width: 992px) {
    .navbar.sticky, header.navbar.sticky, .header.sticky { position: fixed !important; top: 0 !important; left: 0 !important; right: 0 !important; z-index: 1000 !important; background: rgba(10, 10, 10, 0.98) !important; backdrop-filter: blur(15px) !important; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important; }
    .nav-menu, .mobile-menu { position: fixed !important; top: 60px !important; left: 0 !important; right: 0 !important; background: rgba(10, 10, 10, 0.98) !important; backdrop-filter: blur(10px) !important; padding: 20px !important; max-height: calc(100vh - 60px) !important; overflow-y: auto !important; display: none !important; z-index: 999 !important; border-top: 1px solid rgba(255, 255, 255, 0.05) !important; }
    .nav-menu.active, .mobile-menu.active { display: block !important; }
    .nav-links { display: flex !important; flex-direction: column !important; gap: 12px !important; list-style: none !important; padding: 0 !important; margin: 0 !important; }
    .nav-link { display: block !important; padding: 14px 20px !important; text-align: center !important; color: white !important; text-decoration: none !important; background: rgba(255, 255, 255, 0.05) !important; border-radius: 8px !important; font-size: 0.95rem !important; font-weight: 500 !important; transition: all 0.3s ease !important; }
    .nav-link:hover, .nav-link.active { background: rgba(255, 0, 0, 0.1) !important; color: #ff0000 !important; }
    .navbar *, .header * { box-sizing: border-box !important; }
    .logo-area *, .nav-actions *, .header-actions * { margin: 0 !important; }
    .btn, button, a.btn { white-space: nowrap !important; flex-shrink: 0 !important; }
    .btn-primary:active, .lang-btn:active, .menu-toggle:active { transform: scale(0.95) !important; opacity: 0.9 !important; }
}


/* ═══════════════════════════════════════════
   4. FIX EMPTY CONTENT CARDS
   ═══════════════════════════════════════════ */

.content-card { opacity: 1 !important; visibility: visible !important; display: flex !important; flex-direction: column !important; min-height: 300px !important; }
.content-poster { display: block !important; position: relative !important; width: 100% !important; aspect-ratio: 2/3 !important; background: rgba(20, 20, 20, 0.5) !important; border-radius: 0.75rem !important; overflow: hidden !important; margin-bottom: 0.75rem !important; }
.content-poster img { display: block !important; width: 100% !important; height: 100% !important; object-fit: cover !important; transition: opacity 0.3s ease, transform 0.7s ease !important; }
.content-poster img[loading="lazy"] { opacity: 0; animation: fadeInImage 0.5s ease forwards; }
@keyframes fadeInImage { from { opacity: 0; } to { opacity: 1; } }

.content-poster .placeholder-icon { position: absolute !important; top: 50% !important; left: 50% !important; transform: translate(-50%, -50%) !important; z-index: 1 !important; font-size: 3rem !important; color: rgba(255, 255, 255, 0.3) !important; pointer-events: none !important; }
.content-poster:has(.placeholder-icon) { background: linear-gradient(135deg, rgba(255, 0, 0, 0.2) 0%, rgba(20, 20, 20, 0.9) 100%) !important; display: flex !important; align-items: center !important; justify-content: center !important; }

.content-title { display: block !important; opacity: 1 !important; visibility: visible !important; font-weight: 600 !important; font-size: 0.9rem !important; white-space: nowrap !important; overflow: hidden !important; text-overflow: ellipsis !important; padding: 0 0.25rem !important; margin-bottom: 0.25rem !important; }
.content-year { display: block !important; opacity: 1 !important; visibility: visible !important; font-size: 0.8rem !important; color: var(--muted-foreground) !important; padding: 0 0.25rem !important; }
.content-rating, .content-badge { display: block !important; opacity: 1 !important; visibility: visible !important; z-index: 2 !important; }
.content-overlay { display: flex !important; opacity: 0 !important; transition: opacity 0.3s ease !important; }
.content-card:hover .content-overlay { opacity: 1 !important; }

.content-scroll { display: flex !important; gap: 1rem !important; overflow-x: auto !important; overflow-y: hidden !important; padding-bottom: 1rem !important; scroll-snap-type: x mandatory !important; -webkit-overflow-scrolling: touch !important; }
.content-scroll::-webkit-scrollbar { display: none !important; }
.content-scroll { -ms-overflow-style: none !important; scrollbar-width: none !important; }

@media (min-width: 640px) {
    .content-card { min-height: 320px !important; }
    .content-title { font-size: 0.95rem !important; }
    .content-year { font-size: 0.85rem !important; }
}
@media (min-width: 1024px) {
    .content-card { min-height: 360px !important; }
    .content-title { font-size: 1rem !important; }
    .content-year { font-size: 0.9rem !important; }
    .content-scroll { gap: 1.25rem !important; }
}

.content-card.video { min-height: 200px !important; }
.content-card.video .content-poster { aspect-ratio: 16/9 !important; }
@media (min-width: 640px) { .content-card.video { min-height: 220px !important; } }
@media (min-width: 1024px) { .content-card.video { min-height: 250px !important; } }

.content-card.loading { opacity: 0.6 !important; }
.content-card.loading .content-poster { background: linear-gradient(90deg, rgba(20, 20, 20, 0.5) 0%, rgba(40, 40, 40, 0.5) 50%, rgba(20, 20, 20, 0.5) 100%) !important; background-size: 200% 100% !important; animation: shimmer 1.5s infinite !important; }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

.content-card.error .content-poster { background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(20, 20, 20, 0.8) 100%) !important; border: 1px solid rgba(255, 0, 0, 0.2) !important; }
.content-card:focus-visible { outline: 2px solid var(--primary) !important; outline-offset: 2px !important; }
.content-poster img { background: rgba(30, 30, 30, 0.5) !important; }


/* ═══════════════════════════════════════════
   5. MAIN FIXES 2026 — Contact button, mobile, icons
   ═══════════════════════════════════════════ */

#floating-contact-widget { position: fixed !important; bottom: 20px !important; right: 20px !important; z-index: 9999 !important; }
#floating-contact-widget .contact-main-btn { width: 60px !important; height: 60px !important; min-width: 60px !important; min-height: 60px !important; max-width: 60px !important; max-height: 60px !important; border-radius: 50% !important; background: linear-gradient(135deg, #e50914, #b8070f) !important; display: flex !important; align-items: center !important; justify-content: center !important; cursor: pointer !important; box-shadow: 0 4px 20px rgba(229, 9, 20, 0.45) !important; border: none !important; outline: none !important; padding: 0 !important; margin: 0 !important; overflow: visible !important; position: relative !important; transition: transform 0.3s ease, box-shadow 0.3s ease !important; animation: contact-pulse 3s ease-in-out infinite !important; -webkit-tap-highlight-color: transparent !important; touch-action: manipulation !important; }
#floating-contact-widget .contact-main-btn:hover { transform: scale(1.08) !important; box-shadow: 0 6px 28px rgba(229, 9, 20, 0.6) !important; }
#floating-contact-widget .contact-main-btn:active { transform: scale(0.95) !important; }
#floating-contact-widget .contact-main-btn.expanded { background: linear-gradient(135deg, #555, #444) !important; animation: none !important; transform: rotate(45deg) !important; }
#floating-contact-widget .contact-main-btn i { color: #fff !important; font-size: 26px !important; line-height: 1 !important; display: flex !important; align-items: center !important; justify-content: center !important; width: auto !important; height: auto !important; margin: 0 !important; padding: 0 !important; transition: transform 0.3s ease !important; }
#floating-contact-widget .contact-main-btn.expanded i { transform: rotate(-45deg) !important; }
#floating-contact-widget .contact-notification { position: absolute !important; top: -6px !important; right: -6px !important; width: 22px !important; height: 22px !important; min-width: 22px !important; background: #ff3333 !important; color: #fff !important; border-radius: 50% !important; font-size: 11px !important; font-weight: 700 !important; display: flex !important; align-items: center !important; justify-content: center !important; border: 2px solid #fff !important; line-height: 1 !important; padding: 0 !important; z-index: 1 !important; }
#floating-contact-widget .contact-options { position: absolute !important; bottom: 72px !important; right: 0 !important; display: flex !important; flex-direction: column !important; gap: 12px !important; }
#floating-contact-widget .contact-option { display: flex !important; align-items: center !important; gap: 10px !important; background: #fff !important; padding: 10px 16px !important; border-radius: 50px !important; cursor: pointer !important; box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important; min-width: 140px !important; border: 2px solid transparent !important; transition: all 0.3s ease !important; white-space: nowrap !important; }
#floating-contact-widget .contact-option .option-icon { width: 30px !important; height: 30px !important; min-width: 30px !important; border-radius: 50% !important; display: flex !important; align-items: center !important; justify-content: center !important; flex-shrink: 0 !important; }
#floating-contact-widget .contact-option .option-icon i { font-size: 16px !important; color: #fff !important; line-height: 1 !important; }
#floating-contact-widget .contact-option .option-label { font-size: 13px !important; font-weight: 600 !important; color: #333 !important; }
@keyframes contact-pulse { 0%, 100% { box-shadow: 0 4px 20px rgba(229, 9, 20, 0.45); } 50% { box-shadow: 0 4px 20px rgba(229, 9, 20, 0.7), 0 0 0 8px rgba(229, 9, 20, 0.1); } }

@media (max-width: 767px) {
    #floating-contact-widget { bottom: 16px !important; right: 16px !important; }
    #floating-contact-widget .contact-main-btn { width: 52px !important; height: 52px !important; min-width: 52px !important; min-height: 52px !important; max-width: 52px !important; max-height: 52px !important; }
    #floating-contact-widget .contact-main-btn i { font-size: 22px !important; }
    #floating-contact-widget .contact-options { bottom: 64px !important; }

    .hero { min-height: 100svh !important; min-height: 100vh !important; }
    .hero > .container { padding-top: 5rem !important; padding-bottom: 1.5rem !important; padding-left: 1rem !important; padding-right: 1rem !important; display: flex !important; flex-direction: column !important; justify-content: center !important; }
    .hero-title { font-size: 2.2rem !important; line-height: 0.92 !important; margin-bottom: 0.3rem !important; }
    .hero-subtitle { font-size: 1.1rem !important; margin-bottom: 0.75rem !important; }
    .hero-description { font-size: 0.8rem !important; line-height: 1.5 !important; margin-bottom: 1.25rem !important; max-width: 100% !important; }
    .hero-buttons { display: flex !important; flex-direction: column !important; gap: 0.6rem !important; margin-bottom: 1.25rem !important; width: 100% !important; }
    .hero-buttons .btn-hero, .hero-buttons .btn-hero-outline { width: 100% !important; justify-content: center !important; padding: 0.85rem 1rem !important; font-size: 0.9rem !important; border-radius: 0.75rem !important; }
    .hero-stats { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 0.5rem !important; margin-bottom: 1rem !important; padding-bottom: 1rem !important; text-align: center !important; }
    .hero-stats .stat-value { font-size: 1.3rem !important; }
    .hero-stats .stat-label { font-size: 0.5rem !important; }
    .section { padding: 2.5rem 0 !important; }
    .section-header { margin-bottom: 1.5rem !important; }
    .section-title { font-size: 1.75rem !important; }
    .section-subtitle { font-size: 0.9rem !important; }
    .section-label { font-size: 0.75rem !important; }
    .content-row { padding: 1.5rem 0 !important; }
    .content-row-header { padding: 0 1rem !important; margin-bottom: 1rem !important; }
    .content-row-title { font-size: 1.25rem !important; }
    .content-scroll { padding-left: 1rem !important; gap: 0.75rem !important; }
    .content-card { width: 120px !important; min-height: auto !important; }
    .content-card.video { width: 220px !important; }
    .content-title { font-size: 0.75rem !important; }
    .promo-section { padding: 2rem 1rem !important; }
    .promo-card { padding: 1.5rem 1.25rem !important; border-radius: 1rem !important; }
    .promo-icon { font-size: 2.5rem !important; }
    .promo-title { font-size: 2rem !important; }
    .promo-subtitle { font-size: 1rem !important; }
    .promo-right h3 { font-size: 1.2rem !important; }
    .promo-right p { font-size: 0.85rem !important; }
    .steps-grid { gap: 1.5rem !important; padding: 0 1rem !important; }
    .step-icon { width: 64px !important; height: 64px !important; margin-bottom: 1rem !important; }
    .step-icon i { font-size: 1.5rem !important; }
    .step-number { width: 26px !important; height: 26px !important; font-size: 0.85rem !important; }
    .step-title { font-size: 1.25rem !important; }
    .step-desc { font-size: 0.85rem !important; }
    .pricing-grid { padding: 0 0.5rem !important; }
    .platforms-strip { padding: 1.25rem 0 !important; }
    .platforms-strip p { font-size: 0.75rem !important; margin-bottom: 0.75rem !important; }
    .platform-item { font-size: 1.1rem !important; }
    .platforms-scroll { gap: 2rem !important; }
    .faq-item { margin-bottom: 0.5rem !important; }
    .cta-section .cta-buttons { flex-direction: column !important; gap: 0.75rem !important; }
    .cta-section .cta-buttons .btn-hero, .cta-section .cta-buttons .btn-hero-outline { width: 100% !important; max-width: 320px !important; margin: 0 auto !important; }
    .footer { padding: 2rem 1rem 1.5rem !important; }
    .footer-grid { gap: 1.5rem !important; }
    .footer-support-buttons { justify-content: center !important; flex-wrap: wrap !important; gap: 0.5rem !important; }
    .features-grid, .seo-features-grid { grid-template-columns: 1fr !important; gap: 1rem !important; padding: 0 1rem !important; }
    .seo-feature-card, .feature-card { padding: 1.25rem 1rem !important; }
    .seo-feature-icon, .feature-icon { width: 48px !important; height: 48px !important; margin-bottom: 0.75rem !important; }
    .seo-feature-icon i, .feature-icon i { font-size: 1.25rem !important; }
    .seo-feature-card h3, .feature-card h3 { font-size: 1.15rem !important; margin-bottom: 0.5rem !important; }
    .seo-feature-card p, .feature-card p { font-size: 0.85rem !important; line-height: 1.5 !important; }
}

@media (max-width: 399px) {
    .hero-title { font-size: 1.9rem !important; }
    .hero-subtitle { font-size: 0.95rem !important; }
    .hero-stats .stat-value { font-size: 1.15rem !important; }
    .hero-stats .stat-label { font-size: 0.45rem !important; }
    .content-card { width: 110px !important; }
    .content-card.video { width: 200px !important; }
    .section-title { font-size: 1.5rem !important; }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .hero > .container { padding-left: 2.5rem !important; padding-right: 2.5rem !important; }
    .hero-buttons { flex-direction: row !important; }
    .content-card { width: 150px !important; }
    .content-card.video { width: 280px !important; }
}

/* Font Awesome icon rendering */
.fa, .fas, .far, .fal, .fad, .fab { -webkit-font-smoothing: antialiased !important; -moz-osx-font-smoothing: grayscale !important; font-style: normal !important; font-variant: normal !important; text-rendering: auto !important; line-height: 1 !important; display: inline-block !important; }
.feature-icon i, .step-icon i, .seo-feature-icon i, .hero-feature i, .btn i, .btn-hero i, .btn-hero-outline i, .footer-social a i, .footer-whatsapp i, .footer-telegram i, .nav-link i, .faq-question i { display: inline-block !important; visibility: visible !important; opacity: 1 !important; }

/* Scroll padding & performance */
html { scroll-behavior: smooth !important; scroll-padding-top: 80px !important; }
