/*
Theme Name: Webolance
Theme URI: https://webolance.com/
Author: Webolance
Author URI: https://webolance.com/
Description: Webolance is a modern and clean WordPress theme suitable for any kind of Domain-Hosting provider and Digital Agency.
Version: 4.3.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: webolance
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
/* =====================================================
   XTREAM MOVIES PRO + SITE CSS – UNIFIED
   Font: Urbanist + Cairo (Arabic support)
   Base: 16px+
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;500;600;700;800;900&family=Cairo:wght@400;500;600;700;800;900&display=swap');

/* ══════════════════════════════
   CSS VARIABLES
   ══════════════════════════════ */
:root,
.mvxt {
      --primary:       #6366f1;
  --primary-light: #818cf8;
  --accent:        #a78bfa;
  --accent2:       #0ad2b8;
  --bg:            #06060f;
  --card:          #0e0e22;
  --card-hover:    #14143a;
  --border:        rgba(99,102,241,0.18);
  --text:          #e2e8f0;
  --muted:         #64748b;
  --live:          #ef4444;
  --gold:          #f5c518;
  --radius:        18px;
  --radius-sm:     10px;
  --font:          'Urbanist', 'Cairo', system-ui, sans-serif; 'Cairo', system-ui, sans-serif;
}

/* ══════════════════════════════
   BASE
   ══════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

/* ── Noise overlay ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0; opacity: .4;
}


.xt-pro {
    font-family: var(--font);
    font-size: 16px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 20px 50px 20px;
    color: var(--text);
    line-height: 1.6;
}
/* ══════════════════════════════
   HEADER / NAV
   ══════════════════════════════ */
.header-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  height: 80px;
  background: rgba(6,6,15,0.72);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-size: 1.7rem; font-weight: 900;
  background: linear-gradient(135deg, #a78bfa, #0ad2b8);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
  text-decoration: none;
}

.nav-links {
  display: flex; gap: 32px; list-style: none;
}
.nav-links a {
  color: var(--muted); text-decoration: none; font-weight: 600; font-size: 1rem;
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }

.primary-btn {
  background: linear-gradient(135deg, #6366f1, #a78bfa);
  color: white; padding: 10px 26px; border-radius: 50px;
  font-weight: 700; text-decoration: none; font-size: .95rem;
  box-shadow: 0 4px 18px rgba(99,102,241,.4);
  transition: transform .2s, box-shadow .2s;
}
.primary-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(99,102,241,.55); }

/* ══════════════════════════════
   HERO
   ══════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  position: relative;
  padding: 120px 20px 80px;
  overflow: hidden;
}

/* Gradient mesh background */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(99,102,241,0.22) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(10,210,184,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 70%, rgba(167,139,250,0.1) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}

/* Animated orbs */
.orb {
  position: absolute; border-radius: 50%; filter: blur(80px);
  pointer-events: none; animation: orbFloat 8s ease-in-out infinite;
}
.orb1 { width: 500px; height: 500px; background: rgba(99,102,241,0.15); top: -100px; left: -100px; animation-delay: 0s; }
.orb2 { width: 400px; height: 400px; background: rgba(10,210,184,0.1); bottom: -80px; right: -80px; animation-delay: -3s; }
.orb3 { width: 300px; height: 300px; background: rgba(167,139,250,0.12); top: 40%; left: 60%; animation-delay: -5s; }
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

.hero-inner { position: relative; z-index: 1; margin: 0 auto; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(10,210,184,0.1); border: 1px solid rgba(10,210,184,0.3);
  color: var(--accent2); padding: 7px 18px; border-radius: 50px;
  font-size: .88rem; font-weight: 700; margin-bottom: 28px;
  letter-spacing: .5px; text-transform: uppercase;
  animation: fadeSlideDown .7s ease both;
}
.live-dot-hero { width: 8px; height: 8px; background: var(--accent2); border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }

.hero-title {
  font-size: clamp(2.8rem, 7vw, 3.5rem);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
  animation: fadeSlideDown .7s .15s ease both;
}

.hero-title .grad {
  background: linear-gradient(135deg, #a78bfa 0%, #6366f1 40%, #0ad2b8 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.2rem; color: var(--muted); max-width: 700px; margin: 0 auto 36px;
  line-height: 1.7; animation: fadeSlideDown .7s .3s ease both;
}

.hero-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: fadeSlideDown .7s .45s ease both;
}

.btn-primary {
  background: linear-gradient(135deg, #6366f1, #a78bfa);
  color: white; padding: 15px 36px; border-radius: 50px;
  font-weight: 800; font-size: 1.05rem; text-decoration: none;
  box-shadow: 0 8px 28px rgba(99,102,241,.45);
  transition: transform .25s, box-shadow .25s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 38px rgba(99,102,241,.6); }

.btn-outline {
  background: transparent; border: 1.5px solid var(--border);
  color: var(--text); padding: 15px 36px; border-radius: 50px;
  font-weight: 700; font-size: 1.05rem; text-decoration: none;
  transition: border-color .2s, background .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { border-color: var(--primary); background: rgba(99,102,241,.08); }

/* Stats bar */
.hero-stats {
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
  margin-top: 64px; padding-top: 40px;
  border-top: 1px solid var(--border);
  animation: fadeSlideDown .7s .6s ease both;
}
.stat { text-align: center; }
.stat-num {
  font-size: 2.2rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, #a78bfa, #0ad2b8);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { font-size: .88rem; color: var(--muted); font-weight: 600; margin-top: 4px; }

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* ══════════════════════════════
   FEATURES SECTION
   ══════════════════════════════ */
.feat-section { padding: 100px 0px; max-width: 1300px; margin: 0 auto; }
.section-tag {
  display: inline-block; font-size: .82rem; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--accent); background: rgba(167,139,250,.12);
  border: 1px solid rgba(167,139,250,.25); padding: 5px 16px; border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; letter-spacing: -1px;
  line-height: 1.15; margin-bottom: 16px;
}
.section-sub { color: var(--muted); font-size: 1.05rem; max-width: 560px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px; margin-top: 60px;
}

.feat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: all .3s;
  position: relative; overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent2));
  opacity: 0; transition: opacity .3s;
}
.feat-card:hover { border-color: rgba(99,102,241,0.4); transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.4); }
.feat-card:hover::before { opacity: 1; }

.feat-icon {
  font-size: 2.2rem; margin-bottom: 18px; display: block;
  line-height: 1;
}
.feat-title {
  font-size: 1.1rem; font-weight: 800; color: var(--text); margin-bottom: 8px;
}
.feat-desc { font-size: .95rem; color: var(--muted); line-height: 1.65; }

.feat-highlight {
  background: linear-gradient(135deg, rgba(99,102,241,0.12), rgba(10,210,184,0.08));
  border-color: rgba(99,102,241,0.3);
}

/* ══════════════════════════════
   QUALITY BADGES
   ══════════════════════════════ */
.quality-section {
  padding: 80px 0px;
  background: linear-gradient(180deg, transparent 0%, rgba(99,102,241,0.04) 50%, transparent 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.quality-inner { max-width: 1100px; margin: 0 auto; }

.quality-badges {
  display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 48px;
}
.q-badge {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 22px 30px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  min-width: 100px; transition: all .25s;
}
.q-badge:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(99,102,241,.2); }
.q-badge-label { font-size: 1.6rem; font-weight: 900; }
.q-badge-sub { font-size: .8rem; color: var(--muted); font-weight: 600; letter-spacing: .5px; }

.q-hd { color: #60a5fa; }
.q-fhd { color: #a78bfa; }
.q-4k { color: #0ad2b8; }
.q-8k { 
  background: linear-gradient(135deg, #f5c518, #ef4444);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* ══════════════════════════════
   COMPATIBLE APPS
   ══════════════════════════════ */
.apps-section { padding: 100px 40px; max-width: 1100px; margin: 0 auto; }

.apps-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px; margin-top: 50px;
}
.app-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px 20px;
  text-align: center; transition: all .25s;
}
.app-card:hover { border-color: var(--accent2); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(10,210,184,0.12); }
.app-icon { font-size: 2.4rem; margin-bottom: 12px; display: block; }
.app-name { font-size: 1rem; font-weight: 800; color: var(--text); }
.app-sub  { font-size: .82rem; color: var(--muted); margin-top: 4px; }

/* ══════════════════════════════
   PRICING / CTA
   ══════════════════════════════ */
.cta-section {
  padding: 120px 40px;
  text-align: center; position: relative; overflow: hidden;
}

/* ── Wrapper ── */

/* Background glow */
.cta-section::before {
    content: '';
    position: absolute;
    top: -200px; left: 50%;
    transform: translateX(-50%);
    width: 900px; height: 600px;
    background: radial-gradient(ellipse, rgba(99,102,241,.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* ── Badge ── */
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245,158,11,.1);
    border: 1px solid rgba(245,158,11,.3);
    color: var(--gold-light);
    font-size: .85rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 30px;
    letter-spacing: .5px;
    margin-bottom: 22px;
    text-transform: uppercase;
}

/* ── Title ── */
.cta-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -.5px;
}

.cta-title span {
    background: linear-gradient(135deg, #a78bfa, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-sub {
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 48px;
}

/* ── Card Grid ── */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
    align-items: start;
}

/* ── Base Card ── */
.cta-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 28px;
    text-align: left;
    position: relative;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cta-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(99,102,241,.2);
    border-color: var(--primary);
}

/* ── POPULAR badge ── */
.cta-card.popular {
    border-color: var(--primary);
    background: linear-gradient(160deg, #131338 0%, #111128 100%);
    box-shadow: 0 0 0 1px rgba(99,102,241,.4), 0 20px 60px rgba(99,102,241,.15);
    transform: translateY(-8px);
}
.cta-card.popular:hover {
    transform: translateY(-14px);
    box-shadow: 0 0 0 1px rgba(99,102,241,.6), 0 30px 70px rgba(99,102,241,.25);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6366f1, #a78bfa);
    color: white;
    font-size: .75rem;
    font-weight: 800;
    padding: 5px 18px;
    border-radius: 30px;
    white-space: nowrap;
    letter-spacing: .5px;
    text-transform: uppercase;
}

/* ── Plan label ── */
.plan-label {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.plan-label.free   { color: var(--green); }
.plan-label.mid    { color: var(--primary-light); }
.plan-label.best   { color: var(--gold-light); }

/* ── Price ── */
.plan-price-row {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-bottom: 6px;
}
.plan-currency {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--muted);
    padding-bottom: 6px;
}
.plan-price {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1;
    color: var(--text);
    letter-spacing: -2px;
}
.cta-card.free-card .plan-price { color: var(--green); }
.cta-card.popular   .plan-price { color: var(--primary-light); }
.cta-card.best-card .plan-price { color: var(--gold-light); }

.plan-period {
    font-size: .92rem;
    color: var(--muted);
    margin-bottom: 4px;
}

/* Per month hint */
.plan-per-month {
    font-size: .8rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 24px;
    min-height: 20px;
}

/* Divider */
.plan-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 20px;
}

/* ── Features ── */
.plan-features {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 28px;
    flex: 1;
}

.plan-feat {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .95rem;
    color: var(--text);
    line-height: 1.4;
}

.plan-feat .feat-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    margin-top: 1px;
}
.feat-icon.check { background: rgba(16,185,129,.15); color: var(--green); }
.feat-icon.star  { background: rgba(245,158,11,.15);  color: var(--gold-light); }

.plan-feat.highlight { color: var(--gold-light); font-weight: 700; }
.feat-icon.close  { background: rgba(193, 18, 31, 0.15);  color: rgba(193, 18, 31, 1); }

.plan-feat.highlightclose { color: rgba(193, 18, 31, 1); font-weight: 700; }

/* ── CTA Button ── */
.btn-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font);
    text-decoration: none;
    transition: all .25s;
    cursor: pointer;
    border: none;
    letter-spacing: .2px;
}

.btn-cta.green {
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
    box-shadow: 0 6px 20px rgba(16,185,129,.3);
}
.btn-cta.green:hover { box-shadow: 0 10px 30px rgba(16,185,129,.45); transform: translateY(-2px); }

.btn-cta.purple {
    background: linear-gradient(135deg, #6366f1, #a78bfa);
    color: white;
    box-shadow: 0 6px 20px rgba(99,102,241,.35);
}
.btn-cta.purple:hover { box-shadow: 0 10px 30px rgba(99,102,241,.5); transform: translateY(-2px); }

.btn-cta.gold {
    background: linear-gradient(135deg, #d97706, #f59e0b);
    color: #0a0a1a;
    box-shadow: 0 6px 20px rgba(245,158,11,.3);
}
.btn-cta.gold:hover { box-shadow: 0 10px 30px rgba(245,158,11,.45); transform: translateY(-2px); }

/* ── Bonus tag ── */
.bonus-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(245,158,11,.1);
    border: 1px solid rgba(245,158,11,.25);
    color: var(--gold-light);
    font-size: .78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    letter-spacing: .3px;
}

/* ── Footer note ── */
.cta-note {
    color: var(--muted);
    font-size: .9rem;
    margin-top: 4px;
}
.cta-note a {
    color: var(--primary-light);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ══════════════
   RESPONSIVE
   ══════════════ */
@media (max-width: 900px) {
    .card-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto 32px; }
    .cta-card.popular { transform: none; }
    .cta-card.popular:hover { transform: translateY(-6px); }
}

@media (max-width: 480px) {
    .cta-section { padding: 60px 16px; }
    .plan-price { font-size: 3rem; }
    .cta-card { padding: 26px 22px; }
}
/* ══════════════════════════════
   FOOTER
   ══════════════════════════════ */
footer {
  border-top: 1px solid var(--border);
  align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-logo {
  font-size: 1.4rem; font-weight: 900;
  background: linear-gradient(135deg, #a78bfa, #0ad2b8);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.footer-copy { color: var(--muted); font-size: .9rem; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: .9rem; transition: color .2s; }
.footer-links a:hover { color: var(--text); }

/* ══════════════════════════════
   SCROLLBAR
   ══════════════════════════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(99,102,241,.4); border-radius: 10px; }

/* ══════════════════════════════
   RESPONSIVE
   ══════════════════════════════ */
@media (max-width: 768px) {
  .header-nav { padding: 0 20px; }
  .nav-links { display: none; }
  .section, .apps-section, .cta-section { padding: 60px 20px; }
  .quality-section { padding: 60px 20px; }
  .hero { padding: 100px 20px 60px; }
  .hero-stats { gap: 24px; }
  .stat-num { font-size: 1.8rem; }
  .features-grid { grid-template-columns: 1fr; }
  .apps-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: repeat(1, 1fr); }
  .cta-card { min-width: auto; width: 100%; padding: 30px 22px; margin-bottom: 10px;}
  footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }

}
/* ══════════════════════════════
   HEADER - XTREAM
   ══════════════════════════════ */
.xt-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.xt-header h1 {
    margin: 0;
    font-family: var(--font);
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #a78bfa, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.xt-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    flex: 1;
    justify-content: flex-end;
}

/* ── Counter ── */
.mv-counter {
    font-size: 1rem;
    font-weight: 600;
    color: var(--muted);
    background: rgba(99,102,241,.08);
    border: 1px solid var(--border);
    padding: 6px 16px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
    font-family: var(--font);
}
.mv-counter span { color: var(--primary-light); font-weight: 800; }

/* ── Search ── */
.xt-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--card);
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: 10px 20px 10px 46px;
    min-width: 200px;
    max-width: 300px;
    flex: 1;
    transition: border-color .2s, box-shadow .2s;
}
.xt-search-wrap:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99,102,241,.18);
}
.xt-search-wrap input {
    background: none;
    border: none;
    color: var(--text);
    font-size: 1rem;
    font-family: var(--font);
    width: 100%;
    outline: none;
}
.xt-search-wrap input::placeholder { color: var(--muted); }
.xt-search-icon {
    position: absolute;
    left: 18px;
    font-size: 1rem;
    pointer-events: none;
}

/* ══════════════════════════════
   BREADCRUMB
   ══════════════════════════════ */
.xt-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--font);
}
.xt-breadcrumb a { color: var(--muted); text-decoration: none; transition: color .2s; }
.xt-breadcrumb a:hover { color: var(--primary-light); }
.xt-bc-sep { color: var(--muted); opacity: .5; font-size: 1.1rem; }
.xt-bc-current { color: var(--text); font-weight: 600; max-width: 240px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ══════════════════════════════
   CATEGORY LIST
   ══════════════════════════════ */
.xt-cat-list { display: flex; flex-direction: column; gap: 8px; }

.xt-cat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--text);
    transition: all .2s;
    font-family: var(--font);
}
.xt-cat-row:hover { background: var(--card-hover); border-color: var(--primary); transform: translateX(4px); }
.xt-cat-left  { display: flex; align-items: center; gap: 14px; }
.xt-cat-name  { font-size: 1.05rem; font-weight: 600; color: var(--text); }
.xt-cat-right { display: flex; align-items: center; gap: 12px; }
.xt-cat-count { font-size: 1rem; font-weight: 700; color: var(--primary-light); background: rgba(99,102,241,.1); padding: 4px 14px; border-radius: 20px; }
.xt-cat-count small { font-weight: 400; color: var(--muted); margin-left: 3px; font-size: .88rem; }
.xt-cat-arrow { font-size: 1.4rem; color: var(--muted); transition: .2s; }
.xt-cat-row:hover .xt-cat-arrow { color: var(--primary); transform: translateX(3px); }

/* ══════════════════════════════
   GRID + CARDS
   ══════════════════════════════ */
.xt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
    margin: 30px 0;
}
.mv-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
.mv-card { flex-direction: column; }

.xt-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all .25s;
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
    font-family: var(--font);
}
.xt-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(99,102,241,.25);
}

/* ── Thumb shimmer ── */
.mv-thumb {
    width: 100%; aspect-ratio: 2/3;
    background: #070714;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; position: relative;
}
.mv-thumb.mv-shimmer::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, #0d0d20 0%, #1a1a3e 40%, #0d0d20 80%);
    background-size: 200% 100%;
    animation: mv-shimmer 1.4s ease-in-out infinite;
    z-index: 1; pointer-events: none;
}
.mv-thumb.mv-loaded::before { display: none; }
@keyframes mv-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.mv-thumb img {
    width: 100%; height: 100%; object-fit: cover;
    position: relative; z-index: 2; opacity: 1;
    transition: opacity .35s ease, transform .3s ease;
}
.mv-thumb.mv-shimmer img { opacity: 0; }
.mv-thumb.mv-shimmer.mv-loaded img { opacity: 1; }
.xt-card:hover .mv-thumb img { transform: scale(1.04); }

.mv-no-poster { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: #070714; }
.mv-poster-svg { width: 70%; max-width: 90px; }
.mv-poster-svg svg { width: 100%; height: auto; }

/* ── Rating badge ── */
.mv-rating-badge {
    position: absolute; top: 8px; right: 8px;
    background: rgba(0,0,0,.82); color: #fbbf24;
    font-size: .85rem; font-weight: 800;
    padding: 4px 10px; border-radius: 20px;
    backdrop-filter: blur(6px); z-index: 3;
    display: flex; align-items: center; gap: 3px;
    font-family: var(--font);
}

/* ── Card info ── */
.mv-info { padding: 12px 14px 14px; display: flex; flex-direction: column; gap: 6px; }

.mv-title {
    font-size: 1rem; font-weight: 700;
    color: var(--text);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    font-family: var(--font); line-height: 1.3;
}

.mv-meta-tags { display: flex; flex-wrap: wrap; gap: 5px; align-items: center; }

.mv-year-tag {
    font-size: .82rem; font-weight: 700; color: #c7d2fe;
    background: rgba(99,102,241,.18); border: 1px solid rgba(99,102,241,.3);
    padding: 3px 9px; border-radius: 6px; white-space: nowrap;
    font-family: var(--font);
}
.mv-genre-sm-tag {
    font-size: .82rem; font-weight: 600; color: #c4b5fd;
    background: rgba(139,92,246,.15); border: 1px solid rgba(139,92,246,.25);
    padding: 3px 9px; border-radius: 6px; white-space: nowrap;
    font-family: var(--font);
}
.mv-4k-badge-tag {
    font-size: .78rem; font-weight: 800; color: #93c5fd;
    background: rgba(59,130,246,.12); border: 1px solid rgba(59,130,246,.25);
    padding: 3px 9px; border-radius: 6px; white-space: nowrap;
    letter-spacing: .3px; font-family: var(--font);
}
.mv-id {
    font-size: .75rem; color: var(--muted);
    font-family: 'Courier New', monospace; opacity: .55; margin-top: 2px;
}

/* Skeleton */
.mv-skel-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; animation: mv-skel-pulse 1.5s ease-in-out infinite; }
.mv-skel-card .mv-skel-img { aspect-ratio: 2/3; background: #1a1a3e; }
.mv-skel-card .mv-skel-line { height: 10px; background: #1a1a3e; border-radius: 4px; margin: 8px 10px; }
.mv-skel-card .mv-skel-line.short { width: 60%; }
@keyframes mv-skel-pulse { 0%,100%{opacity:1} 50%{opacity:.5} }
.mv-btn-spinner { margin-left: 6px; }

/* ── Show More ── */
.xt-showmore-wrap { text-align: center; margin: 24px 0 44px; }
.xt-showmore-btn {
    background: linear-gradient(135deg, #6366f1, #a78bfa);
    color: white; border: none;
    padding: 14px 44px; border-radius: 50px;
    font-size: 1rem; font-weight: 700; font-family: var(--font);
    cursor: pointer; transition: all .25s;
    box-shadow: 0 8px 24px rgba(99,102,241,.3);
}
.xt-showmore-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(99,102,241,.45); }
.xt-showmore-btn span { opacity: .8; font-weight: 400; font-size: .95rem; }

/* ── No results / Alert ── */
.xt-no-results { text-align: center; color: var(--muted); padding: 40px; font-size: 1.05rem; font-family: var(--font); }
.xt-alert { text-align: center; background: var(--card); padding: 40px; border-radius: var(--radius); font-size: 1.1rem; border: 1px solid var(--border); font-family: var(--font); }
.xt-alert a { color: var(--primary-light); text-decoration: underline; }

/* ══════════════════════════════
   BUTTONS
   ══════════════════════════════ */
.xt-btn {
    padding: 13px 30px; border-radius: 50px;
    font-weight: 700; font-size: 1rem; font-family: var(--font);
    transition: all .25s; text-decoration: none;
    display: inline-flex; align-items: center; justify-content: center;
    color: white; border: none; cursor: pointer;
}
.xt-btn.primary { background: linear-gradient(135deg, #6366f1, #a78bfa); box-shadow: 0 6px 20px rgba(99,102,241,.35); }
.xt-btn.secondary { background: transparent; border: 1.5px solid var(--primary); color: var(--primary-light); }
.xt-btn:hover { transform: translateY(-2px); filter: brightness(1.1); }

/* ══════════════════════════════
   CHANNEL GRID
   ══════════════════════════════ */
.ch-thumb {
    width: 100%; aspect-ratio: 16/10;
    background: #070714;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; position: relative;
}
.ch-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 10px; box-sizing: border-box; }
.ch-info { padding: 10px 12px 12px; display: flex; flex-direction: column; gap: 6px; }
.ch-name { font-size: 1rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--text); font-family: var(--font); }
.ch-id { font-size: .75rem; color: var(--muted); font-family: 'Courier New', monospace; opacity: .7; margin-top: 2px; }
.ch-live-tag, .rel-live-tag { display: flex; align-items: center; gap: 5px; font-size: .82rem; font-weight: 700; color: var(--live); text-transform: uppercase; letter-spacing: .5px; font-family: var(--font); }
.live-dot { width: 7px; height: 7px; background: var(--live); border-radius: 50%; display: inline-block; animation: livepulse 1.5s infinite; flex-shrink: 0; }
@keyframes livepulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }
.ch-tags { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.ch-epg-badge { font-size: .78rem; font-weight: 800; color: #34d399; background: rgba(52,211,153,.12); border: 1px solid rgba(52,211,153,.3); padding: 3px 8px; border-radius: 6px; letter-spacing: .5px; text-transform: uppercase; font-family: var(--font); }
.ch-live-icon, .single-live-icon, .rel-live-icon { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.xt-live-svg { width: 80%; max-width: 100px; }
.xt-live-svg svg { width: 100%; height: auto; display: block; }

/* ══════════════════════════════
   SINGLE MOVIE
   ══════════════════════════════ */
.mv-backdrop {
    width: 100%; height: 340px;
    background-size: cover; background-position: center;
    border-radius: var(--radius);
    position: relative; overflow: hidden;
    margin-bottom: -90px;
}
.mv-backdrop-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,26,.2) 0%, rgba(10,10,26,1) 100%);
}
.mv-single-head { display: flex; gap: 44px; align-items: flex-start; margin-bottom: 50px; flex-wrap: wrap; position: relative; z-index: 1; }
.mv-single-poster { flex-shrink: 0; width: 210px; position: relative; }
.mv-single-poster img { width: 100%; border-radius: var(--radius); box-shadow: 0 20px 50px rgba(0,0,0,.7); border: 2px solid var(--border); display: block; }
.mv-rating-circle { position: absolute; top: 12px; left: 12px; background: var(--bg); border-radius: 50%; padding: 4px; box-shadow: 0 4px 14px rgba(0,0,0,.5); display: flex; align-items: center; justify-content: center; width: 64px; height: 64px; }
.mv-rating-circle canvas { position: absolute; top: 0; left: 0; }
.mv-rating-val { position: relative; font-size: .82rem; font-weight: 900; color: var(--text); z-index: 1; font-family: var(--font); }
.mv-single-info { flex: 1; min-width: 0; padding-top: 90px; }

.mv-tags-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.mv-tag { font-size: .88rem; font-weight: 600; background: rgba(99,102,241,.12); border: 1px solid var(--border); color: var(--primary-light); padding: 5px 14px; border-radius: 20px; font-family: var(--font); }
.mv-tag-4k    { background: rgba(96,165,250,.1);  border-color: rgba(96,165,250,.25); color: #60a5fa; }
.mv-tag-cert  { background: rgba(251,191,36,.1);  border-color: rgba(251,191,36,.3);  color: #fbbf24; }
.mv-tag-status{ background: rgba(52,211,153,.1);  border-color: rgba(52,211,153,.3);  color: #34d399; }

.mv-single-title { font-size: 2.6rem; font-weight: 900; color: var(--text); margin: 0 0 10px; letter-spacing: -.5px; line-height: 1.1; font-family: var(--font); }
.mv-orig-title   { font-size: 1rem; color: var(--muted); font-style: italic; margin: -8px 0 10px; }
.mv-tagline      { color: var(--muted); font-style: italic; font-size: 1.05rem; margin-bottom: 16px; }

.mv-genres { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.mv-genre-tag { font-size: .88rem; font-weight: 700; background: rgba(167,139,250,.1); border: 1px solid rgba(167,139,250,.25); color: var(--accent); padding: 5px 14px; border-radius: 20px; font-family: var(--font); }

.mv-overview { color: var(--muted); line-height: 1.75; font-size: 1rem; margin-bottom: 16px; max-width: 700px; font-family: var(--font); }

.mv-details-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px; margin: 20px 0; background: rgba(99,102,241,.04); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 18px; }
.mv-detail-item  { display: flex; flex-direction: column; gap: 4px; }
.mv-detail-label { font-size: .82rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; font-family: var(--font); }
.mv-detail-val   { font-size: 1rem; font-weight: 600; color: var(--text); font-family: var(--font); }

.mv-single-btns { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 20px; }
.mv-share-row   { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.mv-share-row label { color: var(--muted); font-size: 1rem; font-family: var(--font); }
.mv-share-input { display: flex; align-items: center; background: var(--card); border: 1px solid var(--border); border-radius: 30px; padding: 7px 7px 7px 16px; gap: 8px; max-width: 400px; }
.mv-share-input input { background: none; border: none; color: var(--text); font-size: .95rem; width: 100%; outline: none; min-width: 0; font-family: var(--font); }
.mv-share-input button { background: var(--primary); border: none; border-radius: 50%; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; color: white; transition: .2s; }
.mv-share-input button:hover { background: var(--accent); }
.mv-copied { font-size: .88rem; color: #34d399; opacity: 0; transition: opacity .3s; }
.mv-copied.show { opacity: 1; }

.mv-ext-links { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.mv-ext-btn { padding: 7px 16px; border-radius: 20px; font-size: .88rem; font-weight: 700; text-decoration: none; transition: .2s; font-family: var(--font); }
.mv-ext-btn.imdb { background: #f5c518; color: #000; }
.mv-ext-btn.tmdb { background: #01b4e4; color: #fff; }
.mv-ext-btn.site { background: rgba(99,102,241,.15); border: 1px solid var(--border); color: var(--primary-light); }
.mv-ext-btn:hover { opacity: .85; transform: translateY(-1px); }

.mv-providers { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin: 16px 0; }
.mv-providers-label { font-size: .95rem; color: var(--muted); font-weight: 600; font-family: var(--font); }
.mv-provider-logo img { width: 38px; height: 38px; border-radius: 8px; object-fit: cover; border: 1px solid var(--border); }

/* Sections */
.mv-section { margin-top: 54px; }
.mv-section-title { font-size: 1.5rem; font-weight: 800; color: var(--text); margin-bottom: 22px; font-family: var(--font); }

.mv-cast-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 14px; }
.mv-cast-card { text-align: center; }
.mv-cast-card img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); display: block; margin: 0 auto 8px; }
.mv-cast-no-img { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; margin: 0 auto 8px; }
.mv-cast-no-img svg { width: 100%; height: 100%; }
.mv-cast-name { font-size: .9rem; font-weight: 700; color: var(--text); font-family: var(--font); }
.mv-cast-char { font-size: .82rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-family: var(--font); }

.mv-crew-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; }
.mv-crew-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 16px; display: flex; flex-direction: column; gap: 4px; }
.mv-crew-job  { font-size: .82rem; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; font-family: var(--font); }
.mv-crew-name { font-size: 1rem; font-weight: 600; color: var(--text); font-family: var(--font); }

.mv-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 10px; }
.mv-gallery-item { border-radius: var(--radius-sm); overflow: hidden; display: block; aspect-ratio: 16/9; }
.mv-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.mv-gallery-item:hover img { transform: scale(1.05); }

.mv-keywords { display: flex; flex-wrap: wrap; gap: 8px; }
.mv-keyword { background: rgba(99,102,241,.08); border: 1px solid var(--border); color: var(--muted); padding: 5px 14px; border-radius: 20px; font-size: .88rem; font-weight: 500; transition: .2s; font-family: var(--font); }
.mv-keyword:hover { color: var(--primary-light); border-color: var(--primary); }

.mv-reviews { display: flex; flex-direction: column; gap: 16px; }
.mv-review-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 20px 22px; }
.mv-review-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.mv-review-author { font-size: 1rem; font-weight: 700; color: var(--text); font-family: var(--font); }
.mv-review-rating { font-size: .9rem; color: #fbbf24; font-weight: 600; }
.mv-review-text   { font-size: .95rem; color: var(--muted); line-height: 1.65; font-family: var(--font); }

.mv-rec-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
.mv-rec-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; transition: .2s; }
.mv-rec-card:hover { border-color: var(--primary); transform: translateY(-3px); }
.mv-rec-card img { width: 100%; aspect-ratio: 2/3; object-fit: cover; display: block; }
.mv-rec-noposter { aspect-ratio: 2/3; background: #070714; display: flex; align-items: center; justify-content: center; }
.mv-rec-info  { padding: 8px 10px; }
.mv-rec-title { font-size: .9rem; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-family: var(--font); }
.mv-rec-meta  { display: flex; gap: 8px; font-size: .82rem; color: var(--muted); margin-top: 3px; font-family: var(--font); }

/* Modal */
.mv-modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.88); z-index: 9999; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(8px); }
.mv-modal-box { background: var(--card); border-radius: var(--radius); border: 1px solid var(--border); padding: 22px; width: 100%; max-width: 820px; }
.mv-modal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.mv-modal-head span { font-size: 1.05rem; font-weight: 700; color: var(--text); font-family: var(--font); }
.mv-modal-close { background: rgba(239,68,68,.15); border: 1px solid rgba(239,68,68,.3); color: #ef4444; padding: 8px 20px; border-radius: 30px; font-size: .95rem; font-weight: 700; cursor: pointer; font-family: var(--font); transition: .2s; }
.mv-modal-close:hover { background: rgba(239,68,68,.25); }
.mv-modal-iframe { width: 100%; aspect-ratio: 16/9; border-radius: 10px; overflow: hidden; }
.mv-modal-iframe iframe { width: 100%; height: 100%; display: block; }

/* Carousel */
.mv-carousel-wrapper { position: relative; overflow: hidden; padding: 0 52px; }
.mv-carousel { display: flex; transition: transform .4s ease; }
.mv-carousel-item { flex-shrink: 0; width: 25%; padding: 0 7px; box-sizing: border-box; }
.mv-carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(99,102,241,.2); border: 1px solid var(--border); color: var(--text); width: 42px; height: 42px; border-radius: 50%; font-size: 1rem; cursor: pointer; z-index: 2; transition: .2s; display: flex; align-items: center; justify-content: center; }
.mv-carousel-btn:hover { background: var(--primary); }
.mv-prev { left: 4px; } .mv-next { right: 4px; }
.mv-end-card { height: 100%; min-height: 200px; justify-content: stretch; }
.mv-end-content { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 30px 20px; text-align: center; flex: 1; }
.mv-end-icon { font-size: 2.6rem; }
.mv-end-content p { color: var(--muted); font-size: 1rem; font-family: var(--font); }

/* ══════════════════════════════
   SINGLE CHANNEL
   ══════════════════════════════ */
.single-head { display: flex; align-items: center; gap: 40px; margin: 30px 0 50px; flex-wrap: wrap; }
.single-thumb { width: 220px; height: 160px; background: #070714; border-radius: var(--radius); border: 1.5px solid var(--border); overflow: hidden; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.single-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 16px; }
.single-live-badge { display: inline-flex; align-items: center; gap: 7px; background: rgba(239,68,68,.12); border: 1px solid rgba(239,68,68,.3); color: var(--live); padding: 6px 16px; border-radius: 20px; font-size: .9rem; font-weight: 700; letter-spacing: .5px; margin-bottom: 12px; font-family: var(--font); }
.single-info h1 { font-size: 2.2rem; font-weight: 900; color: var(--text); margin: 0 0 10px; letter-spacing: -.5px; font-family: var(--font); }
.single-info p { color: var(--muted); font-size: 1rem; margin: 6px 0; font-family: var(--font); }
.single-info p strong { color: var(--text); }
.single-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 22px; }

/* EPG */
.epg-box { background: rgba(17,17,40,.8); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; margin-bottom: 40px; }
.epg-box h2 { font-size: 1.5rem; font-weight: 800; color: var(--text); margin-bottom: 22px; font-family: var(--font); }
.epg-row { display: flex; gap: 20px; padding: 14px 16px; border-bottom: 1px solid var(--border); transition: .2s; border-radius: var(--radius-sm); align-items: flex-start; }
.epg-row:last-child { border-bottom: none; }
.epg-row:hover { background: rgba(99,102,241,.05); }
.epg-row.current { background: linear-gradient(90deg,rgba(239,68,68,.08),transparent); border-left: 3px solid var(--live); }
.epg-time { min-width: 150px; font-size: .95rem; font-weight: 600; color: var(--accent); flex-shrink: 0; font-family: var(--font); }
.live-badge { background: var(--live); color: white; padding: 3px 10px; border-radius: 12px; font-size: .85rem; font-weight: 700; display: inline-block; }
.epg-content strong { display: block; font-size: 1rem; font-weight: 700; margin-bottom: 4px; font-family: var(--font); }
.epg-content small { color: var(--muted); font-size: .9rem; line-height: 1.4; font-family: var(--font); }

/* Related channels */
.related-box { margin-top: 50px; }
.related-box h3 { font-size: 1.5rem; font-weight: 800; color: var(--text); margin-bottom: 22px; font-family: var(--font); }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 15px; }
.rel-card { padding: 0; text-align: center; flex-direction: column; }
.rel-thumb { width: 100%; aspect-ratio: 16/10; background: #070714; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.rel-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 8px; box-sizing: border-box; }
.rel-thumb .rel-live-icon .xt-live-svg { width: 60px; }
.rel-name { display: block; font-size: .9rem; font-weight: 600; padding: 8px 10px 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-family: var(--font); }
.rel-live-tag { justify-content: center; padding-bottom: 10px; }

/* Loader */
.xt-loader-overlay { position: fixed; inset: 0; background: var(--bg); z-index: 9999; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; transition: opacity .4s ease; }
.xt-loader-overlay.fade-out { opacity: 0; pointer-events: none; }
.xt-loader-spinner { width: 52px; height: 52px; border: 3px solid rgba(99,102,241,.2); border-top-color: var(--primary); border-radius: 50%; animation: xt-spin .7s linear infinite; }
@keyframes xt-spin { to { transform: rotate(360deg); } }
.xt-loader-text { color: var(--muted); font-size: 1rem; font-weight: 500; font-family: var(--font); }
.xt-loader-bar { width: 180px; height: 3px; background: rgba(99,102,241,.15); border-radius: 10px; overflow: hidden; }
.xt-loader-bar-fill { height: 100%; width: 30%; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 10px; animation: xt-bar 1.2s ease-in-out infinite alternate; }
@keyframes xt-bar { from{width:20%;margin-left:0} to{width:60%;margin-left:40%} }

/* ══════════════════════════════
   SITE SPECIFIC (من ملفك)
   ══════════════════════════════ */
.head-bg-kanal {
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(22px);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%, black 75%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 25%, black 75%, transparent 100%);
    display: flex; flex-direction: column; box-sizing: border-box; z-index: 9;
}
.carsoul-one .swiper-slide {
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(22px);
    display: flex; flex-direction: column; box-sizing: border-box; z-index: 99;
    background: #fff; border-radius: 12px; padding: 10px;
}
.movie-item-2 img { background: #000; border-radius: 15px; }
.header-section { background: rgba(0,0,0,1); }
.header-section-1 { background: rgba(0,0,0,.1); backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px); z-index: 9; display: flex; flex-direction: column; box-sizing: border-box; height: 80px; }
.sticky-header { backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px); z-index: 9; display: flex; flex-direction: column; box-sizing: border-box; height: 80px; }
.icon-footer-svg svg { width: 8px; margin-right: 10px; }
.scrolltop-btn { margin-bottom: 40px; }

.input-search { background: #110d20; border: 1px solid #262340; color: #b8b8c8; border-radius: 50px 0 0 50px; font-size: 1rem; font-family: var(--font); }
.button-search { border: 1px solid #262340; color: #fff; border-radius: 0 50px 50px 0; position: relative; display: inline-block; font-size: 1rem; font-weight: 600; font-family: var(--font); background: #151027B8; cursor: pointer; text-align: center; overflow: hidden; transition: all .4s ease-in-out; z-index: 1; }
.button-search:before { content: ""; position: absolute; top: 0; left: 0; width: 0%; height: 100%; z-index: -1; border-radius: 0 50px 50px 0; transition: .5s all ease; background: linear-gradient(135deg, #5611D6, #0ad2b8, #00a2ff); }
.button-search:after  { content: ""; position: absolute; top: 2px; left: 2px; right: 2px; bottom: 2px; border-radius: 0 50px 50px 0; background: #110d20; z-index: -2; }
.button-search:hover:before { width: 100%; }
.button-search:hover { color: #110d20; box-shadow: 0 4px 25px rgba(105,48,195,.2); transform: scale(1.05); }

.search-input { background: #110d20; border: 1px solid #262340; color: #b8b8c8; border-radius: 10px; width: 100%; height: 40px; padding: 10px; font-size: 1rem; font-family: var(--font); }

.category-list { padding: 50px 0; }
.category-container { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.channels-container { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.containerx { padding: 20px 0; }

.group-grid { position: relative; background: #262340; border-radius: 5px; z-index: 1; overflow: hidden; padding: 3px; color: #B9B8C5; }
.group-grid:before { content: ""; position: absolute; top: 0; left: 0; width: 0%; height: 100%; z-index: -1; border-radius: 0; transition: .5s all ease; background: linear-gradient(135deg, #5611D6, #0ad2b8, #00a2ff); color: #B9B8C5; }
.group-grid:after  { content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; border-radius: 0; background: #262340; z-index: -2; color: #B9B8C5; }
.group-grid:hover:before { width: 100%; }

.channels-grid { border-radius: 10px; padding: 16px 10px; height: 100%; width: 100%; background-color: #0C0916; display: flex; flex-direction: column; justify-content: space-between; transition: transform .3s ease; }
.channel-info { display: flex; align-items: center; gap: 15px; }
.channel-count { font-family: "slabby-prices", var(--font); background: linear-gradient(135deg, #5611D6, #0ad2b8, #00a2ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; color: transparent; padding: 0 6px; border-radius: 4px; font-size: 22px; font-weight: 900; }
.channel-item { color: #B9B8C5; font-size: 18px; font-weight: 700; text-transform: uppercase; line-height: 1.2; padding: 10px 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; align-items: center; justify-content: space-between; display: flex; font-family: var(--font); }
.channels-link, .channel-name { color: #B9B8C5; font-size: 18px; font-weight: 700; text-transform: uppercase; line-height: 1.2; padding: 18px 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 350px; display: block; font-family: var(--font); }
.channel-logo { width: 55px; height: auto; object-fit: contain; background: #222; border-radius: 0; max-width: 100%; }

.show-div { position: relative; text-align: center; overflow: hidden; }
.show-more { position: relative; display: inline-block; color: #fff; font-weight: 600; font-size: 1rem; font-family: var(--font); background: #151027B8; border: 1px solid #262340; border-radius: 50px; cursor: pointer; text-align: center; overflow: hidden; transition: all .4s ease-in-out; z-index: 1; padding: 5px 20px; width: 50%; }
.show-more:before { content: ""; position: absolute; top: 0; left: 0; width: 0%; height: 100%; z-index: -1; border-radius: 50px; transition: .5s all ease; background: linear-gradient(135deg, #5611D6, #0ad2b8, #00a2ff); }
.show-more:after  { content: ""; position: absolute; top: 2px; left: 2px; right: 2px; bottom: 2px; border-radius: 50px; background: #110d20; z-index: -2; }
.show-more:hover:before { width: 100%; }
.show-more:hover { color: #110d20; box-shadow: 0 4px 25px rgba(105,48,195,.2); transform: scale(1.05); }

.channel-single { border-radius: 14px; padding: 20px; box-shadow: 0 5px 15px rgba(0,0,0,.3); background: rgba(17,13,32,.6); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); display: flex; flex-direction: column; box-sizing: border-box; border: 1px solid #262340; margin: 10px 0 50px; }
.breadcrumbs { margin: 0 0 10px; color: #37A7BA; font-family: var(--font); font-size: 1rem; }
.breadcrumbs a { color: #fff; }
.breadcrumbs a:hover { color: #37A7BA; }
.breadcrumbs-singles { margin: 50px 0 0; color: #37A7BA; font-family: var(--font); font-size: 1rem; }
.breadcrumbs-singles a { color: #fff; }
.breadcrumbs-singles a:hover { color: #37A7BA; }

.channel-header-singles { text-align: center; }
.channel-logo-singles { width: 20%; height: 20%; background: #151027B8; border: 1px solid #262340; margin-left: 40%; border-radius: 12px; margin-bottom: 20px; padding: 10px; display: flex; justify-content: center; }
.channel-logo-singles img { border: none; border-radius: 12px; box-shadow: none; height: auto; max-width: 100%; width: 100%; }
.channel-description { color: #cbd5e1; font-size: 1rem; margin: 20px 0; text-align: center; font-family: var(--font); }
.channel-buttons { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin: 25px 0; }
.channel-share { text-align: center; margin: 20px 0; }
.channel-share p { color: #94a3b8; margin-bottom: 10px; font-family: var(--font); font-size: 1rem; }
.channel-share a { margin: 0 8px; font-size: 1rem; text-decoration: none; font-weight: 600; }
.related-channels { margin-top: 30px; }
.related-channels h3 { font-size: 1.2rem; margin-bottom: 15px; color: #fff; font-family: var(--font); }

.related-item { display: flex; flex-direction: column; align-items: center; background: rgba(17,13,32,.6); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-sizing: border-box; border: 1px solid #262340; padding: 12px; border-radius: 8px; text-decoration: none; color: #fff; transition: background .3s; }
.related-item:hover { color: #fff; }
.related-item img { width: 100px; object-fit: contain; margin-bottom: 8px; border-radius: 12px; }
.related-item span { font-size: 1rem; text-align: center; font-family: var(--font); }

.button-btn-a, .button-btn-b { position: relative; display: inline-block; color: #fff; font-weight: 600; font-size: 1rem; font-family: var(--font); background: #151027B8; border: 1px solid #262340; border-radius: 50px; cursor: pointer; text-align: center; overflow: hidden; transition: all .4s ease-in-out; z-index: 1; padding: 5px 20px; width: 24%; }
.button-btn-a:before, .button-btn-b:before { content: ""; position: absolute; top: 0; left: 0; width: 0%; height: 100%; z-index: -1; border-radius: 50px; transition: .5s all ease; background: linear-gradient(135deg, #5611D6, #0ad2b8, #00a2ff); }
.button-btn-a:after,  .button-btn-b:after  { content: ""; position: absolute; top: 2px; left: 2px; right: 2px; bottom: 2px; border-radius: 50px; background: #110d20; z-index: -2; }
.button-btn-a:hover:before, .button-btn-b:hover:before { width: 100%; }
.button-btn-a:hover, .button-btn-b:hover { color: #110d20; box-shadow: 0 4px 25px rgba(105,48,195,.2); transform: scale(1.05); }

.elementor-element-77c4ec7 { padding: 50px 0; }

/* ══════════════════════════════════════════════
   RESPONSIVE – Tablet (max 1024px)
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .mv-carousel-item { width: 33.33%; }
    .mv-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
}

/* ══════════════════════════════════════════════
   RESPONSIVE – Mobile (max 768px)
   ══════════════════════════════════════════════ */
@media (max-width: 768px) {
    .xt-pro { padding: 80px 14px; }

    /* Header */
    .xt-header { flex-direction: column; align-items: stretch; gap: 10px; margin-bottom: 16px; }
    .xt-header h1 { font-size: 1.5rem; }
    .xt-header-right { flex-direction: column; align-items: stretch; gap: 8px; }
    .mv-counter { font-size: .95rem; text-align: center; }
    .xt-search-wrap { min-width: unset; max-width: 100%; width: 100%; }

    /* Grid: 2 par ligne */
    .mv-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; }
    .mv-info { padding: 10px 12px 12px; }
    .mv-title { font-size: .95rem; }
    .mv-year-tag, .mv-genre-sm-tag, .mv-4k-badge-tag { font-size: .75rem; padding: 2px 7px; }
    .mv-rating-badge { font-size: .78rem; padding: 3px 8px; top: 6px; right: 6px; }
    .mv-id { font-size: .7rem; }

    /* Carousel */
    .mv-carousel-item { width: 50%; }
    .mv-carousel-wrapper { padding: 0 38px; }

    /* Single Movie */
    .mv-backdrop { height: 200px; margin-bottom: -55px; border-radius: var(--radius-sm); }
    .mv-single-head { flex-direction: column; gap: 0; margin-bottom: 30px; }
    .mv-single-poster { width: 180px !important; margin: 0 auto; position: relative; z-index: 2; }
    .mv-rating-circle { width: 46px !important; height: 46px !important; top: 8px !important; left: 8px !important; bottom: auto !important; padding: 3px; }
    .mv-rating-circle canvas { width: 46px !important; height: 46px !important; }
    .mv-rating-val { font-size: .65rem !important; }
    .mv-single-info { padding-top: 22px; width: 100%; }
    .mv-single-title { font-size: 1.6rem; letter-spacing: -.3px; }
    .mv-orig-title { font-size: .95rem; }
    .mv-overview { max-width: 100%; }

    .mv-tags-row { flex-wrap: nowrap; overflow-x: auto; gap: 6px; padding-bottom: 4px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
    .mv-tags-row::-webkit-scrollbar { display: none; }
    .mv-tag { white-space: nowrap; font-size: .82rem; padding: 4px 11px; }
    .mv-genres { flex-wrap: nowrap; overflow-x: auto; gap: 6px; padding-bottom: 4px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
    .mv-genres::-webkit-scrollbar { display: none; }
    .mv-genre-tag { white-space: nowrap; font-size: .82rem; }

    .mv-details-grid { grid-template-columns: 1fr 1fr; gap: 8px; padding: 14px; }
    .mv-detail-label { font-size: .78rem; }
    .mv-detail-val   { font-size: .95rem; }

    .mv-single-btns { flex-direction: column; gap: 8px; }
    .mv-single-btns .xt-btn { width: 100%; }
    .mv-ext-links { flex-direction: column; gap: 6px; margin-top: 10px; align-items: stretch; }
    .mv-ext-btn { font-size: .82rem; padding: 7px 14px; text-align: center; }
    .mv-share-row { flex-direction: column; align-items: stretch; gap: 6px; }
    .mv-share-input { max-width: 100%; }

    .mv-cast-grid { grid-template-columns: repeat(auto-fill, minmax(74px, 1fr)); gap: 10px; }
    .mv-cast-card img { width: 62px; height: 62px; }
    .mv-cast-no-img   { width: 62px; height: 62px; }
    .mv-cast-name { font-size: .82rem; }
    .mv-cast-char { font-size: .72rem; }
    .mv-crew-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .mv-gallery { grid-template-columns: 1fr; }
    .mv-keywords { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
    .mv-keywords::-webkit-scrollbar { display: none; }
    .mv-keyword { white-space: nowrap; font-size: .85rem; }
    .mv-review-card { padding: 16px 18px; }
    .mv-rec-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 10px; }
    .mv-modal-box { padding: 16px; border-radius: var(--radius-sm); max-height: 95vh; overflow-y: auto; }
    .mv-section-title { font-size: 1.25rem; }
    .mv-section { margin-top: 38px; }

    /* Channel single */
    .single-head { flex-direction: column; align-items: flex-start; gap: 20px; }
    .single-thumb { width: 160px; height: 120px; }
    .single-info h1 { font-size: 1.8rem; }
    .epg-row { flex-direction: column; gap: 6px; }
    .epg-time { min-width: auto; }
    .xt-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 10px; }
    .related-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }

    /* Site specific */
    .category-container { grid-template-columns: 1fr; gap: 5px; }
    .channels-container { grid-template-columns: 1fr; gap: 5px; }
    .button-btn-a, .button-btn-b { width: 80%; }
    .channel-logo-singles { width: 50%; height: 50%; margin-left: 25%; margin-top: 20px; }
    .channel-single { background: #0C0916; border-radius: 20px; padding: 20px 10px; margin: 10px 0; }

    @media screen and (max-width: 600px) {
        .borde-video { backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px); background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,.9) 100%); border-radius: 20px; }
    }
}

/* ══════════════════════════════════════════════
   RESPONSIVE – Small Mobile (max 480px)
   ══════════════════════════════════════════════ */
@media (max-width: 480px) {
    .mv-carousel-item { width: 100%; }
    .mv-carousel-wrapper { padding: 0 30px; }
    .mv-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 8px; }
    .mv-single-poster { width: 155px !important; }
    .mv-single-title  { font-size: 1.35rem; }
    .mv-details-grid  { grid-template-columns: 1fr; gap: 6px; padding: 12px; }
    .mv-cast-grid { grid-template-columns: repeat(auto-fill, minmax(62px, 1fr)); gap: 8px; }
    .mv-cast-card img { width: 54px; height: 54px; }
    .mv-cast-no-img   { width: 54px; height: 54px; }
    .mv-rec-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .mv-crew-grid { grid-template-columns: 1fr; }
    .xt-header h1 { font-size: 1.25rem; }
    .xt-cat-name { font-size: 1rem; }
}
/*Domain Seggestion */
#webolance-domain-suggestions .spinner-border {
    width: 1rem;
    height: 1rem;
    border: 2px solid currentColor;
    border-right-color: transparent !important;
}
/* Custom utility class */
.bg-white__ {
    background-color: #fff;
}

/* Service card layout 10 style added ==================== */
h5.text-black.fs-20.mb-20.service_title__ {
    font-family: sans-serif;
}
.currency_title__,.price_title__{
    font-weight: 700;
}
.service_card_item_24:hover {
    background-color: #1f1f1f !important;
}
.service_card_item_24:hover h5, .service_card_item_24:hover p, .service_card_item_24:hover a {
    color: #fff !important;
}
.text-danger {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}  
.service_card_item_24 {
    -webkit-transition: .5s;
    transition: .5s;
}
.text-black__{
    color: #17191C;
}

/* Testimonial layout 14 style added --------------------------- */
.popup_style_24 {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.feedback_24_item .img_wrapper img {
    -o-object-fit: cover;
    object-fit: cover;
}
.feedback_24_item:hover .img_wrapper {
    opacity: 1;
    visibility: visible;
}
.feedback_24_item .img_wrapper {
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .5s;
    transition: .5s;
}
.feedback_24_item .author_information__{
    margin-top: 88px;
}
.ff-sg {
    font-family: sans-serif;
}
.host-web-slider-arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #1e1e2c;
}
.host-web-slider-arrow:hover {
    background: linear-gradient(269.13deg, #38EEB0 12.14%, #16A7FA 83.84%);
}
.review_content_style__ {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #49495F;
}
.author_name_style__ {
    color: #182229;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}
.author_desig_style__{
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #49495F;
}

/* Accordion layout 05 style added ----------------------------- */
.hm2-accordion.faq_24 {
    padding-inline: 0;
    padding-block: 20px;
}
.hm2-accordion {
    padding: 40px 30px;
}
.hm2-accordion.faq_24 .accordion-item .accordion-header a[aria-expanded=true] {
    color: #01b67b;
}
.hm2-accordion.faq_24 .accordion-item .accordion-header a {
    font-family: "Space Grotesk",sans-serif;
}
.hm2-accordion .accordion-item .accordion-header a {
    font-family: sans-serif;
    font-weight: 700;
    color: #001042;
    display: block;
    position: relative;
    padding-right: 25px;
}
.hm2-accordion.faq_24 .accordion-item .accordion-header a[aria-expanded=true]::after {
    background-color: #01b67b;
    color: #fff;
}
.hm2-accordion.faq_24 .accordion-item .accordion-header a::after {
    width: 28px;
    height: 28px;
    background-color: #fff;
    border-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.hm2-accordion .accordion-item .accordion-header a::after {
    content: "+";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 14px;
    width: 22px;
    height: 22px;
    border: 1px solid #001042;
    border-radius: 50%;
    text-align: center;
    line-height: 22px;
}
.hm2-accordion.faq_24 .accordion-item {
    padding-inline: 30px;
    border-color: #fff;
    border-width: 2px;
}
.hm2-accordion .accordion-item {
    padding: 15px 0;
    border: 0;
    border-bottom: 1px solid #ddd;
}
.accordion.hm2-accordion{
    background-color: #F6F7F9;
}