:root {
  --primary: #FAA620;
  --secondary: #FBBA6E;
  --text: #F6F6F6;
  --accent: #121212;
  --dark: #1c1c1c;
  --bg0: #0b0f14;
  --card: rgba(255, 255, 255, .06);
  --card2: rgba(255, 255, 255, .08);
  --stroke: rgba(255, 255, 255, .10);
  --text: rgba(255, 255, 255, .92);
  --muted: rgba(255, 255, 255, .70);
  --muted2: rgba(255, 255, 255, .55);
  --shadow: 0 18px 60px rgba(0, 0, 0, .45);
}

html,
body {
  background: var(--accent);
  color: var(--text);
  font-family: "Tajawal", sans-serif;
}

/* =========================
   Global UX: Scrollbar + Selection + Smooth Scroll
   ========================= */
.no-scroll { overflow: hidden !important; }

/* ✅ Smooth scroll (anchor links) */
html { scroll-behavior: smooth; }

/* ✅ Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ✅ Text selection color */
::selection{
  background: var(--primary); /* your yellow */
  color: #fff;
}
::-moz-selection{
  background: var(--primary);
  color: #fff;
}

/* ✅ Scrollbar (Firefox) */
*{
  scrollbar-width: thin;
  scrollbar-color: var(--primary) rgba(255,255,255,.06);
}

/* ✅ Scrollbar (Chrome/Edge/Safari) */
*::-webkit-scrollbar{
  width: 10px;      /* vertical */
  height: 10px;     /* horizontal */
}

*::-webkit-scrollbar-track{
  background: rgba(255,255,255,.06);
  border-radius: 999px;
}

*::-webkit-scrollbar-thumb{
  background: linear-gradient(
    180deg,
    var(--primary),
    var(--secondary)
  );
  border-radius: 999px;
  border: 2px solid rgba(0,0,0,.35); /* gives "pill" look on dark bg */
}

*::-webkit-scrollbar-thumb:hover{
  background: linear-gradient(
    180deg,
    rgba(255,214,0,.95),
    rgba(255,214,0,.55)
  );
}


a {
  color: inherit;
}

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

.navbar-shoof {
  background: rgba(18, 18, 18, .9);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  backdrop-filter: blur(10px);
}

.hero {
  background: radial-gradient(1200px 400px at 20% 0%, rgba(250, 166, 32, .25), transparent),
    radial-gradient(900px 300px at 80% 20%, rgba(251, 186, 110, .15), transparent);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 28px 0 12px;
}

.section-title h2,
.section-title {
  margin: 0;
}

.section-title .t1,
.section-title .t3 {
  color: #fff;
}

.section-title .t2 {
  color: var(--primary);
  /* الأصفر تبعك */
}


.pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 6px 12px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 999px;
  color: var(--text);
  font-size: .9rem;
}

.card-dark {
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .15s ease, border-color .15s ease;
}

.card-dark:hover {
  transform: translateY(-2px);
  border-color: rgba(250, 166, 32, .45);
}

.poster {
  aspect-ratio: 2/3;
  width: 100%;
  object-fit: cover;
  background: rgba(255, 255, 255, .06);
}

.badge-soft {
  background: rgba(250, 166, 32, .15);
  border: 1px solid rgba(250, 166, 32, .35);
  color: var(--text);
}

.live-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #111;
  font-weight: 700;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, .22);
}

.horizontal-scroll {
  display: flex;
  gap: 12px;
  overflow: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
}

.horizontal-scroll>* {
  scroll-snap-align: start;
}

.small-muted {
  color: rgba(246, 246, 246, .75);
}

/* ===== Header ===== */
.shoof-topbar {
  background: rgba(18, 18, 18, .92);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  position: fixed;
  z-index: 5;
  top: 0;
  right: 0;
  width: 100%;
}

.shoof-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 900;
  font-size: 1.25rem;
}

.shoof-logo .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(250, 166, 32, .15);
}

.shoof-social .soc {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  color: var(--text);
  margin-inline-start: 8px;
}

.shoof-social .soc:hover {
  border-color: rgba(250, 166, 32, .45);
  color: var(--primary);
}

.btn-shoof-cta {
  background: var(--primary);
  border: 1px solid var(--primary);
  color: #111;
  font-weight: 900;
  border-radius: 14px;
  padding: 10px 16px;
}

.btn-shoof-cta:hover {
  filter: brightness(1.03);
}

/* ===== Slider ===== */
.shoof-slider {
  padding: 18px 0 10px;
  position: relative;
}

.slider-card {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, .08);
  text-decoration: none;
}

.slider-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.slider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 18, 18, .85) 0%, rgba(18, 18, 18, .35) 60%, rgba(18, 18, 18, .15) 100%);
}

.slider-content {
  position: absolute;
  inset: 0;
  padding: 0 40px 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
}

.slider-title {
  font-weight: 900;
  margin: 0;
  font-size: 1.8rem;
  max-width: 700px;
}

.slider-plot {
  margin: 0;
  max-width: 720px;
  color: rgba(246, 246, 246, .85);
  font-size: 0.98rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.slider-meta {
  display: flex;
  gap: 12px;
  color: rgba(246, 246, 246, .85);
  font-weight: 700;
}

.badge-soft {
  display: inline-flex;
  align-self: flex-start;
  background: rgba(250, 166, 32, .14);
  border: 1px solid rgba(250, 166, 32, .35);
  color: var(--text);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 900;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.backdrop_blur {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  filter: blur(50px);
  opacity: .5;
  margin: 0 auto;
  width: 70%;
  height: 60vh;
  z-index: 0;

  /* ✅ fade from 4 sides */
  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%),
    linear-gradient(to right, transparent 0%, #000 18%, #000 82%, transparent 100%);
  -webkit-mask-composite: source-in;
  /* Safari: intersect */
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  -webkit-mask-position: center;

  mask-image:
    linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%),
    linear-gradient(to right, transparent 0%, #000 18%, #000 82%, transparent 100%);
  mask-composite: intersect;
  /* Chrome/Edge */
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  mask-position: center;
}



/* طبقة تعتيم/تدرج فوق الـ blur عشان الألوان ما تطغى */
.backdrop_blur::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%,
      rgba(250, 166, 32, .16) 0%,
      rgba(18, 18, 18, .85) 70%,
      rgba(18, 18, 18, .95) 100%);
}

/* Responsive slider height */
/* @media (max-width: 992px){
  .slider-card{ height: 280px; }
  .slider-title{ font-size: 1.35rem; }
} */

/* ===== Hero (orange card like screenshot) ===== */
.shoof-hero {
  padding: 22px 0 30px;
}

.hero-card {
  background: linear-gradient(to left, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 28px;
  padding: 34px;
  color: #121212;
  border: 1px solid rgba(18, 18, 18, .12);
  overflow: hidden;
}

.hero-mockup {
  background: transparent;
  border-radius: 22px;
  padding: 10px;
}

.hero-text h1 {
  font-weight: 900;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.6;
  margin: 0;
}

.hero-actions {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-icons {
  display: flex;
  gap: 10px;
}

.hero-icon {
  font-size: 25px;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: rgba(18, 18, 18, .10);
  border: 1px solid rgba(18, 18, 18, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #121212;
  text-decoration: none;
}

.hero-icon:hover {
  background: rgba(18, 18, 18, .16);
}

.btn-hero-cta {
  background: #121212;
  color: #fff;
  font-weight: 900;
  border-radius: 999px;
  padding: 16px 40px;
  border: 1px solid #121212;
}

.btn-hero-cta:hover {
  filter: brightness(1.04);
}

@media (max-width: 700px) {
  .hero-text h1 {
    text-align: center;
    font-size: 8vw !important;
  }
}

/* search */
.shoof-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(520px, 48vw);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 14px;
  padding: 10px 12px;
}

.shoof-search i {
  color: rgba(246, 246, 246, .75);
}

.shoof-search input {
  background: transparent;
  border: 0;
  outline: none;
  color: var(--text);
  width: 100%;
  font-weight: 700;
}

.shoof-search input::placeholder {
  color: rgba(246, 246, 246, .55);
}

/* language button */
.btn-lang {
  border-radius: 14px;
  font-weight: 900;
  padding: 10px 12px;
  border-color: rgba(255, 255, 255, .18);
}

.btn-lang:hover {
  border-color: rgba(250, 166, 32, .55);
  color: var(--primary);
}

/* desktop search fills space */
.shoof-search-wrap {
  flex: 1 1 auto;
  min-width: 280px;
}

.shoof-search {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 14px;
  padding: 10px 12px;
}

.shoof-search input {
  width: 100%;
  background: transparent;
  border: 0;
  outline: none;
  color: var(--text);
  font-weight: 700;
}

.shoof-search input::placeholder {
  color: rgba(246, 246, 246, .55);
}

.shoof-search i {
  color: rgba(246, 246, 246, .75);
}

.shoof-search .clear-btn {
  background: transparent;
  border: 0;
  color: rgba(246, 246, 246, .7);
}

.shoof-search .clear-btn:hover {
  color: var(--primary);
}

/* dropdown */
.shoof-search-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: rgba(18, 18, 18, .98);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .45);
  z-index: 9999;
}

.search-sec-title {
  padding: 10px 14px;
  font-weight: 900;
  font-size: .95rem;
  color: rgba(246, 246, 246, .85);
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.search-item {
  display: flex;
  gap: 12px;
  padding: 10px 14px;
  text-decoration: none;
  color: var(--text);
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.search-item:hover {
  background: rgba(255, 255, 255, .06);
}

.search-thumb {
  width: 44px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, .06);
  flex: 0 0 auto;
}

.search-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.search-meta .t {
  font-weight: 900;
  line-height: 1.2;
}

.search-meta .s {
  font-size: .85rem;
  color: rgba(246, 246, 246, .75);
  margin-top: 4px;
}

/* mobile overlay */
.shoof-search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 18, 18, .96);
  z-index: 100000;
}

.overlay-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.overlay-top {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.overlay-close {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  color: var(--text);
}

.overlay-input {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 16px;
  padding: 12px;
}

.overlay-input input {
  width: 100%;
  background: transparent;
  border: 0;
  outline: none;
  color: var(--text);
  font-weight: 800;
  font-size: 1.05rem;
}

.overlay-results {
  padding: 10px 14px;
  overflow: auto;
  flex: 1;
}

/* Netflix-like container */
.search-panel {
  padding: 10px;
}

.search-section {
  padding: 10px 6px 4px;
}

.search-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.search-section-title {
  font-weight: 900;
  font-size: 1rem;
  color: rgba(246, 246, 246, .92);
}

.search-section-count {
  font-size: .85rem;
  color: rgba(246, 246, 246, .55);
}

/* Grid */
.search-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

@media (max-width: 1400px) {
  .search-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 1200px) {
  .search-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {

  /* overlay uses its own layout */
  .search-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .search-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Card */
.search-card {
  position: relative;
  display: block;
  text-decoration: none;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  transform: translateZ(0);
}

.search-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .12) 60%, rgba(0, 0, 0, 0) 100%);
  opacity: .95;
}

.search-poster {
  width: 100%;
  aspect-ratio: 2/3;
  background: rgba(255, 255, 255, .06);
}

.search-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* info overlay */
.search-info {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 2;
}

.search-title {
  font-weight: 900;
  font-size: .92rem;
  line-height: 1.25;
  color: rgba(246, 246, 246, .95);
  max-height: 2.5em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.search-sub {
  margin-top: 4px;
  font-size: .78rem;
  color: rgba(246, 246, 246, .70);
  display: flex;
  gap: 8px;
  align-items: center;
}

/* hover effect */
.search-card:hover {
  border-color: rgba(250, 166, 32, .35);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .35);
  transform: translateY(-2px);
}

.search-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: rgba(250, 166, 32, .18);
  border: 1px solid rgba(250, 166, 32, .35);
  color: rgba(246, 246, 246, .95);
  font-weight: 900;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: .74rem;
}

/* dropdown sizing for desktop */
.shoof-search-dropdown {
  max-height: 68vh;
  overflow: auto;
}

/* Mobile overlay results spacing */
.overlay-results .search-panel {
  padding: 0;
}

.overlay-results .search-section {
  padding: 14px 4px 6px;
}


.shoof-features {
  margin-bottom: 60px;
  padding: 40px 0 10px;
}

.features-head {
  text-align: center;
  margin-bottom: 18px;
}

.features-title {
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  margin: 0;
  color: var(--text);
}

.features-sub {
  margin: 8px 0 0;
  color: rgba(246, 246, 246, .65);
  font-weight: 700;
}

.shoof-stats {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 18px 0 26px;
}

.stat-pill {
  min-width: 180px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .09);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform .25s ease, border-color .25s ease;
}

.stat-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(250, 166, 32, .35);
}

.stat-num {
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--primary);
  letter-spacing: .3px;
}

.stat-label {
  color: rgba(246, 246, 246, .85);
  font-weight: 800;
}

.feature-card {
  position: relative;
  display: block;
  text-decoration: none;
  border-radius: 22px;
  padding: 16px 14px 18px;
  min-height: 170px;
  background: radial-gradient(120px 120px at 20% 10%, rgba(255, 255, 255, .10), rgba(255, 255, 255, 0)),
    rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  overflow: hidden;
  transform: translateY(10px);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease, border-color .35s ease, box-shadow .35s ease;
  transition-delay: calc(var(--delay, 0) * 30ms);
}

.feature-card.is-accent {
  background: linear-gradient(135deg, rgba(250, 166, 32, .95), rgba(251, 186, 110, .95));
  border-color: rgba(18, 18, 18, .15);
}

.feature-card.is-accent .feature-title,
.feature-card.is-accent .feature-desc,
.feature-card.is-accent .feature-ico {
  color: #121212 !important;
}

.feature-ico {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .10);
  color: rgba(246, 246, 246, .95);
  margin-bottom: 12px;
}

.feature-title {
  font-weight: 900;
  font-size: 1.05rem;
  color: rgba(246, 246, 246, .95);
}

.feature-desc {
  margin-top: 6px;
  font-weight: 700;
  font-size: .92rem;
  line-height: 1.55;
  color: rgba(246, 246, 246, .70);
}

.feature-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 20%, rgba(250, 166, 32, .28), rgba(0, 0, 0, 0) 60%);
  opacity: 0;
  transition: opacity .35s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(250, 166, 32, .35);
  box-shadow: 0 20px 55px rgba(0, 0, 0, .35);
}

.feature-card:hover .feature-glow {
  opacity: 1;
}

/* reveal animation */
.feature-card.is-visible {
  transform: translateY(0);
  opacity: 1;
}

/* mobile */
@media (max-width: 576px) {
  .stat-pill {
    min-width: 160px;
  }

  .feature-card {
    min-height: 160px;
  }
}





.shoof-live-strip {
  padding: 30px 0 0;
}

.live-strip-card {
  border-radius: 34px;
  padding: 26px 22px 18px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  overflow: hidden;
  position: relative;
}

.live-track {
  display: flex !important;
  flex-direction: row !important;
  /* MUST be row */
  gap: 0 !important;
  /* NO gap between set & clone */
  align-items: center;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  animation: liveScroll var(--marquee-dur, 45s) linear infinite;
}

.live-strip-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, .10), rgba(0, 0, 0, 0) 60%);
  pointer-events: none;
}

.live-strip-head {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}

.live-strip-title {
  margin: 0;
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--text);
}

.live-strip-sub {
  margin: 6px 0 0;
  color: rgba(246, 246, 246, .60);
  font-weight: 800;
}

.live-marquee {
  direction: ltr;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 10px 0 18px;
  mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}

/* 2) But in RTL pages, reverse the items order INSIDE the strip */
html[dir="rtl"] .live-set,
html[dir="rtl"] .live-set-clone {
  flex-direction: row-reverse;
}

/* each row is a horizontal strip */
.live-row {
  display: flex;
  width: max-content;
}

.live-set,
.live-set-clone {
  display: flex;
  align-items: center;
  gap: 22px;
  /* gap only BETWEEN items */
  flex-wrap: nowrap;
  white-space: nowrap;
  margin: 0 !important;
  padding: 0 !important;
  flex: 0 0 auto;
  /* don’t stretch */
}


.live-item {
  flex: 0 0 auto;
  display: inline-flex;
  text-decoration: none;
}

.live-box {
  width: 150px;
  height: 150px;
  border-radius: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.live-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .95;
}

.live-item:hover .live-box {
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(250, 166, 32, .35);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .35);
}

@keyframes liveScroll {
  to {
    transform: translateX(calc(-1 * var(--marquee-distance, 0px)));
  }
}

/* optional: pause on hover (remove your forced running rules) */
/* .live-marquee:hover .live-track {
  animation-play-state: paused;
} */

@media (max-width: 576px) {
  .live-box {
    width: 190px;
    height: 110px;
  }

  .live-set,
  .live-set-clone {
    gap: 14px;
  }
}





/* sections styles */


.shoof-content-section {
  padding: 26px 0;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.section-title {
  margin: 0;
  font-weight: 900;
  color: var(--text);
}

.section-more {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 800;
}

.sec-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 992px) {
  .sec-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 576px) {
  .sec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card-poster {
  text-decoration: none;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
}

.card-poster-img {
  aspect-ratio: 2/3;
  background-size: cover;
  background-position: center;
}

.card-poster-title {
  padding: 10px 10px 12px;
  color: var(--text);
  font-weight: 800;
  font-size: .95rem;
}

.card-person {
  text-decoration: none;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  text-align: center;
  padding: 12px;
}

.card-person-img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
}

.card-person-title {
  margin-top: 10px;
  color: var(--text);
  font-weight: 900;
}

.sec-row {
  display: flex;
  gap: 14px;
  overflow: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
}

.sec-row::-webkit-scrollbar {
  height: 8px;
}

.row-card {
  flex: 0 0 auto;
  width: 200px;
  height: 280px;
  text-decoration: none;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  scroll-snap-align: start;
  position: relative;
}

.row-card-img {
  height: 140px;
  background-size: cover;
  background-position: center;
}

.row-card-title {
  padding: 10px;
  color: var(--text);
  font-weight: 900;
}

.sec--ranked_row .row-card {
  width: 260px;
}

.row-rank {
  position: absolute;
  inset: auto auto 8px 10px;
  font-size: 3.2rem;
  font-weight: 900;
  opacity: .22;
  color: #fff;
  pointer-events: none;
}

.shoof-content-section[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}

.shoof-content-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .shoof-content-section[data-reveal] {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

.sec-row {
  display: flex;
  gap: 14px;
  overflow: auto;
  padding: 6px 2px 10px;
  scrollbar-width: thin;
}

.sec-row.is-snap {
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
}

.sec-row.is-snap .row-card {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: 160px;
}

@media (min-width: 992px) {
  .sec-row.is-snap .row-card {
    width: 190px;
  }
}

/* 
.row-card {
  position: relative;
  border-radius: 14px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  overflow: hidden;
} */

.row-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(255, 255, 255, .18);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .35);
}

.row-card-img {
  height: 230px;
  background-size: cover;
  background-position: center;
}

.row-card-title {
  padding: 10px 10px 12px;
  font-size: 14px;
  line-height: 1.2;
  opacity: .92;
}

.sec--hover_spotlight .sec-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .sec--hover_spotlight .sec-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .sec--hover_spotlight .sec-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.card-poster {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.card-poster:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 220px at 20% 15%, rgba(255, 255, 255, .18), transparent 55%);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

.card-poster:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: rgba(255, 255, 255, .18);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .40);
  z-index: 2;
}

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

.card-poster-img {
  aspect-ratio: 2/3;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.02);
}

.card-poster-title {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(0, 0, 0, .45);
  backdrop-filter: blur(8px);
  font-size: 16px;
  line-height: 1.2;
}

.sec--bento .sec-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 992px) {
  .sec--bento .sec-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .sec--bento .sec-grid>a:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }

}

.sec--glow_row,
.sec--ranked_row {
  background-color: var(--dark);
  padding: 30px;
}

.sec--glow_row .row-card {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.sec--glow_row .row-card:hover {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .10), 0 30px 90px rgba(0, 0, 0, .45);
}

.sec--glow_row .row-card:after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  background: linear-gradient(120deg, rgba(255, 255, 255, .18), transparent 40%, rgba(255, 255, 255, .10));
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

.sec--glow_row .row-card:hover:after {
  opacity: 1;
}

.row-nav {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: -34px;
}

.row-btn {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
  color: #fff;
  display: grid;
  place-items: center;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.row-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
}

/* rating badge */
.card-poster,
.row-card {
  position: relative;
}

.card-rating {
  position: absolute;
  top: 10px;
  inset-inline-start: 10px;
  /* يدعم RTL/LTR */
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  color: #111;
  background: var(--primary);
  /* ذهبي */
  box-shadow: 0 8px 18px rgba(0, 0, 0, .25);
  backdrop-filter: blur(6px);
}

.card-rating i {
  font-size: 12px;
}




/* Plans section */
.shoof-plans {
  padding: 40px 0 0 0;
}

.plans-head {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  align-items: start;
  margin-bottom: 18px;
}

@media (max-width: 992px) {
  .plans-head {
    grid-template-columns: 1fr;
  }
}

.plans-title {
  font-size: 34px;
  margin: 0 0 8px;
  letter-spacing: .2px;
}

.plans-sub {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, .75);
  max-width: 62ch;
}

.plans-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255, 255, 255, .85);
}

.plans-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
}

.plans-actions {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .10);
}

.currency-switch {
  margin-bottom: 12px;
}

.currency-label {
  font-size: 12px;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 6px;
}

.currency-select {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(0, 0, 0, .35);
  color: #fff;
  outline: none;
}

.btn-plans-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  margin-top: 10px;
  background: linear-gradient(135deg, rgba(255, 215, 0, .95), rgba(255, 165, 0, .95));
  color: #111;
  box-shadow: 0 14px 28px rgba(0, 0, 0, .35);
  transition: transform .15s ease, filter .15s ease;
}

.btn-plans-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
}

.plans-mini-note {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
  text-align: center;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}

@media (max-width: 992px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }
}

.plan-card {
  position: relative;
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .10);
  overflow: hidden;
  transition: transform .15s ease, border-color .15s ease;
}

.plan-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 215, 0, .35);
}

.plan-card.is-best {
  background: radial-gradient(1200px 600px at 10% 0%, rgba(255, 215, 0, .18), transparent 60%),
    rgba(255, 255, 255, .04);
  border-color: rgba(255, 215, 0, .35);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .35);
  transform: scale(1.03);
  z-index: 2;
}
.plans-foot-card.renew-block{
  background: radial-gradient(1200px 600px at 10% 0%, rgba(255, 215, 0, .18), transparent 60%), rgba(255, 255, 255, .04);
  border-color: rgba(255, 215, 0, .35);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .35);
  z-index: 2;
}
.btn-plans-cta:hover{
  color: var(--text);
}
.plan-badge {
  position: absolute;
  top: 12px;
  inset-inline-end: 12px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: #111;
  background: rgba(255, 215, 0, .95);
}

.plan-name {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 6px 0 2px;
}

.plan-price-num {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: .2px;
}

.plan-price-cur {
  font-weight: 800;
  color: rgba(255, 255, 255, .75);
}

.plan-per {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 10px;
}

.plan-save {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(46, 204, 113, .14);
  border: 1px solid rgba(46, 204, 113, .25);
  color: rgba(255, 255, 255, .9);
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 12px;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 10px 0 14px;
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, .85);
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-features i {
  color: rgba(255, 215, 0, .9);
}

.plan-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 900;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
  transition: transform .15s ease, background .15s ease;
}

.plan-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .11);
}

.plans-foot {
  margin-top: 16px;
}

.plans-foot-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .10);
}

.plans-foot-card i {
  font-size: 20px;
  color: rgba(255, 215, 0, .9);
}

.plans-foot-title {
  font-weight: 900;
}

.plans-foot-sub {
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
}

.plans-foot-btn {
  margin-inline-start: auto;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #fff;
  font-weight: 900;
}


/* Loading Screen */
.home-loader {
  position: fixed;
  inset: 0;
  background: var(--accent);
  z-index: 99999;

  display: grid;
  /* ✅ أفضل من flex لمركز ثابت */
  place-items: center;
  /* ✅ center both */
  transition: opacity .25s ease, visibility .25s ease;
}

.home-loader.is-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.home-loader-inner {
  width: min(520px, 92vw);
  padding: 16px;
  text-align: center;
  display: grid;
  place-items: center;
  gap: 10px;
}

.home-lottie {
  /* ✅ responsive square that always fits */
  width: min(520px, 86vw);
  aspect-ratio: 1 / 1;
  height: auto;

  margin: 0 auto;
  display: block;

  /* ✅ لو لوتي فيها فراغات داخلية كبيرة */
  overflow: visible;
}

.home-loader-text {
  margin-top: 0;
  color: #fff;
  opacity: .85;
  font-size: 14px;
}


.shoof-footer {
  margin-top: 60px;
  padding: 40px 0 18px;
  background: #0c0c0f;
  color: rgba(255, 255, 255, .82);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-logo {
  height: 50px;
  width: auto;
  display: block;
}

.footer-desc {
  margin: 12px 0 0;
  max-width: 520px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .72);
}

.footer-title {
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
  transition: .15s ease;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(var(--footer-hover-x, 0));
}

/* RTL/LTR hover micro move */
[dir="rtl"] .footer-links a:hover {
  transform: translateX(-3px);
}

[dir="ltr"] .footer-links a:hover {
  transform: translateX(3px);
}

.footer-payments {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 6px;
}

.footer-payments img {
  height: 40px;
  width: auto;
  background: rgba(255, 255, 255, 0.954);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 10px;
  padding: 6px 10px;
}

.footer-note {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
}

.footer-bottom {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, .62);
}

.footer-social {
  display: inline-flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
  transition: .15s ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  color: #fff;
}





/* ===== Movie Details (Netflix-ish) ===== */
.movie-hero {
  position: relative;
  padding: 120px 0 24px;
  overflow: hidden;
}

.movie-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  filter: blur(5px);
  opacity: .55;
}

.movie-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(100% 100% at 30% 20%, rgba(18, 18, 18, .15), rgba(18, 18, 18, 0.1)), linear-gradient(to bottom, rgba(18, 18, 18, .1), rgba(18, 18, 18, .9));
}

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

.movie-hero-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 26px;
  align-items: center;
}

@media (max-width: 992px) {
  .movie-hero-grid {
    grid-template-columns: 1fr;
  }
}

.movie-poster-wrap {
  display: flex;
  justify-content: center;
}

.movie-poster, .series-poster {
  width: 280px;
  aspect-ratio: 2/3;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 25px 70px rgba(0, 0, 0, .55);
  border: 1px solid rgba(255, 255, 255, .08);
}

.movie-info {
  padding-bottom: 8px;
}

.movie-title {
  font-size: clamp(26px, 2.3vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  margin: 10px 0 10px;
}

.movie-plot {
  max-width: 780px;
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 14px;
}

.movie-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .9);
  font-weight: 700;
  font-size: 13px;
  backdrop-filter: blur(10px);
}

.movie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 800;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
}

.btn-play {
  background: var(--primary);
  color: #111;
}

.btn:hover {
  color: var(--dark) !important;
  background-color: var(--primary) !important;
  border-color: var(--text) !important;
}

.btn-ghost {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .92);
}

.btn-ghost.is-on {
  border-color: rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .12);
}

.movie-meta-row {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

@media (max-width: 576px) {
  .movie-meta-row {
    grid-template-columns: 1fr;
  }
}

.meta-label {
  color: rgba(255, 255, 255, .65);
  font-weight: 800;
  letter-spacing: .2px;
  display: flex;
  align-items: center;
}

.meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .25);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .9);
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
}

.chip-soft {
  background: rgba(255, 255, 255, .08);
}

/* sections */
.movie-section {
  padding: 24px 0;
}

.sec-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.sec-title {
  font-size: 18px;
  font-weight: 900;
  margin: 0;
}

.sec-more {
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  font-weight: 800;
}

/* people row */
.people-row {
  display: flex;
  gap: 12px;
  overflow: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}

.person-card {
  width: 110px;
  flex: 0 0 auto;
  text-decoration: none;
  color: rgba(255, 255, 255, .92);
  scroll-snap-align: start;
}

.person-img {
  width: 110px;
  height: 110px;
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .35);
}

.person-name {
  margin-top: 8px;
  font-weight: 800;
  font-size: 13px;
  opacity: .9;
}

/* cards row (like your home row-card) */
.cards-row {
  display: flex;
  gap: 12px;
  overflow: auto;
  padding-bottom: 8px;
}

.cards-row.is-snap {
  scroll-snap-type: x mandatory;
}

.cards-row.is-snap .row-card {
  scroll-snap-align: start;
}

.row-card {
  position: relative;
  width: 160px;
  flex: 0 0 auto;
  text-decoration: none;
  color: rgba(255, 255, 255, .92);
}

.row-card-img {
  width: 100%;
  aspect-ratio: 2/3;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .35);
}

.row-card-title {
  margin-top: 8px;
  font-weight: 900;
  font-size: 13px;
  opacity: .9;
}
/* 
.card-rating {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, .55);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 6px;
} */

.pill-adult {
  background: rgba(255, 80, 80, .14);
  border-color: rgba(255, 80, 80, .22);
  color: rgba(255, 255, 255, .95);
}

.details-panel {
  margin-top: 14px;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  backdrop-filter: blur(10px);
  max-width: 820px;
}

.details-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  align-items: center;
}

.details-row:last-child {
  border-bottom: 0;
}

.details-k {
  color: rgba(255, 255, 255, .62);
  font-weight: 900;
}

.details-v {
  color: rgba(255, 255, 255, .90);
  font-weight: 800;
}

.chips-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Trailer modal */
body.modal-open {
  overflow: hidden;
}

.trailer-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.trailer-modal.is-open {
  display: block;
}

.trailer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(6px);
}

.trailer-dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(980px, 92vw);
  border-radius: 18px;
  background: rgba(15, 15, 15, .92);
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: 0 35px 120px rgba(0, 0, 0, .65);
  overflow: hidden;
}

.trailer-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .92);
  display: grid;
  place-items: center;
  z-index: 2;
}

.trailer-frame-wrap {
  aspect-ratio: 16/9;
  width: 100%;
}

#trailerFrame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.download-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
}

.download-title {
  margin: 0 0 6px;
  font-weight: 950;
}

.download-sub {
  margin: 0;
  color: rgba(255, 255, 255, .75);
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 768px) {
  .download-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

.movie-hero--trailer {
  padding: 0;
  margin-top: 70px;
  height: 600px;
  display: flex;
  align-items: center;
}

.movie-hero-video {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 1;
  transform: scale(1.02);
}

.movie-hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 130%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: blur(0px);
}

@media (max-width: 990px) {
  .movie-hero--trailer{
    height: 100vh;
  }
}

/* موبايل: خفف الحجم والopacity */
@media (max-width: 768px) {
  .movie-hero-video {
    opacity: .38;
  }

  .movie-hero-video iframe {
    width: 200vw;
    height: 200vh;
  }
}

.platform-logo {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.platform-logo img {
  height: 28px;
  /* adjust */
  width: auto;
  object-fit: contain;
  display: block;
}


/* ===== Today Matches Strip ===== */
.shoof-matches-strip { margin: 22px 0; }

.matches-strip-card{
  border: 1px solid rgba(255,255,255,.06);
  background: var(--dark);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 16px 14px;
  overflow: hidden;
}

.matches-strip-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.matches-strip-title{ margin:0; font-weight:800; font-size: 1.1rem; }
.matches-strip-sub{ margin:4px 0 0; opacity:.75; font-size:.95rem; }

.matches-strip-note{
  display:flex; align-items:center; gap:8px;
  padding: 8px 10px; border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  font-size: .9rem; opacity: .9; white-space: nowrap;
}

.matches-row{
  display:flex; gap: 10px;
  overflow-x:auto;
  padding: 6px 2px 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.matches-row::-webkit-scrollbar{ height: 8px; }
.matches-row::-webkit-scrollbar-thumb{ background: rgba(255,255,255,.12); border-radius: 10px; }
.matches-row::-webkit-scrollbar-track{ background: transparent; }

.match-card{
  flex: 0 0 auto;
  width: 340px;
  border-radius: 16px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.08);
  /* box-shadow: 0 10px 26px rgba(0,0,0,.25); */
  scroll-snap-align: start;
  position: relative;
  outline: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  text-decoration: none;
  color: inherit;
}

.match-card:focus,
.match-card:hover{
  transform: translateY(-2px);
  border-color: rgba(255,214,0,.35);
  background: linear-gradient(180deg, rgba(255,214,0,.10), rgba(255,255,255,.03));
}

.match-top{ display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom: 10px; }

.match-league{
  display:flex; align-items:center; gap:8px;
  font-weight:700; font-size:.92rem; opacity:.88;
  max-width: 230px; overflow:hidden; text-overflow: ellipsis; white-space: nowrap;
}
.league-logo{
  width: 22px; height: 22px; border-radius: 8px;
  background-size: cover; background-position: center;
  background-color: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  flex: 0 0 auto;
}

.match-badge{
  font-size: .8rem;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.08);
  white-space: nowrap;
}
.match-badge.is-live{
  border-color: rgba(0,255,170,.35);
  background: rgba(0,255,170,.12);
}
.match-badge.is-ft{
  border-color: rgba(120,120,120,.30);
  background: rgba(120,120,120,.12);
}
.match-badge.is-soon{
  border-color: rgba(255,214,0,.30);
  background: rgba(255,214,0,.10);
}

.match-mid{ display:flex; align-items:center; justify-content:space-between; gap: 10px; }

.team{
  width: 38%;
  display:flex; align-items:center; gap: 10px;
}
.team.is-away{ justify-content: flex-end; text-align:end; }
.team.is-away .team-name{ text-align:end; }

.team-logo{
  width: 40px; height: 40px;
  border-radius: 12px;
  background-size: contain;
  background-position: center;
  /* background-color: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10); */
  flex: 0 0 auto;
}

.team-name{
  font-weight: 900;
  font-size: .95rem;
  line-height: 1.1;
  max-width: 140px;
  overflow:hidden; text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  opacity: .92;
}

.match-center{ width: 24%; text-align:center; }
.match-time{ font-weight:800; opacity:.85; font-size: .92rem; }
.match-vs{ margin-top: 6px; font-weight:900; opacity:.7; letter-spacing: 1px; }

.match-foot{
  margin-top: 10px;
  display:flex; align-items:center; gap: 8px;
  opacity: .85;
  font-size: .92rem;
  padding-top: 8px;
  border-top: 1px dashed rgba(255,255,255,.12);
}
.match-foot .muted{ opacity:.7; margin-inline-start:6px; }


/* ===== Trailer Modal ===== */
.shoof-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
.shoof-modal.is-open{ display: block; }

.shoof-modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(8px);
}

.shoof-modal__panel{
  position: relative;
  width: min(980px, 92vw);
  margin: 7vh auto 0;
  border-radius: 18px;
  overflow: hidden;
  background: #0b0b0f;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
  border: 1px solid rgba(255,255,255,.08);
}

.shoof-modal__close{
  position: absolute;
  top: 12px;
  inset-inline-end: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(0,0,0,.55);
  color: #fff;
  display: grid;
  place-items: center;
}

.shoof-modal__ratio{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.shoof-modal__ratio iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.rating {
    color: var(--primary);
    background: var(--text);
}



/* ========= Subscribe Page (Shoof) ========= */
    .subscribe-wrap {
        margin-top: 90px;
        padding: 18px 0 70px;
    }

    .sub-hero {
        position: relative;
        border-radius: 22px;
        overflow: hidden;
        background:
            radial-gradient(900px 380px at 20% 0%, rgba(255, 200, 0, .18), transparent 55%),
            radial-gradient(800px 380px at 85% 25%, rgba(255, 196, 0, 0.14), transparent 60%),
            linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
        border: 1px solid var(--stroke);
        box-shadow: var(--shadow);
        padding: 22px;
    }

    .sub-hero-grid {
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 18px;
        align-items: center;
    }

    @media (max-width: 992px) {
        .sub-hero-grid {
            grid-template-columns: 1fr;
        }
    }

    .sub-title {
        margin: 0 0 10px;
        font-weight: 900;
        letter-spacing: .2px;
        line-height: 1.15;
        font-size: clamp(24px, 3vw, 40px);
    }

    .sub-lead {
        margin: 0 0 14px;
        color: var(--muted);
        font-size: 1.02rem;
        line-height: 1.65;
        max-width: 60ch;
    }

    .trust-row {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 10px;
    }

    .trust-pill {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 12px;
        background: rgba(0, 0, 0, .25);
        border: 1px solid var(--stroke);
        border-radius: 999px;
        color: var(--muted);
        font-size: .95rem;
    }

    .trust-pill i {
        color: var(--primary);
    }

    .stepper {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .step {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 12px;
        background: rgba(0, 0, 0, .20);
        border: 1px solid var(--stroke);
        border-radius: 999px;
        color: var(--muted2);
        font-weight: 700;
    }

    .step b {
        width: 26px;
        height: 26px;
        border-radius: 999px;
        display: grid;
        place-items: center;
        background: rgba(255, 255, 255, .08);
        border: 1px solid var(--stroke);
        color: var(--muted);
    }

    .step.is-on {
        color: var(--text);
        background: rgba(255, 255, 255, .08);
    }

    .step.is-on b {
        background: rgba(255, 200, 0, .18);
        color: #fff;
        border-color: rgba(255, 200, 0, .25);
    }

    .sub-main {
        margin-top: 18px;
        display: grid;
        grid-template-columns: 1.1fr .9fr;
        gap: 16px;
    }

    @media (max-width: 992px) {
        .sub-main {
            grid-template-columns: 1fr;
        }
    }

    .panel {
        background: rgba(255, 255, 255, .05);
        border: 1px solid var(--stroke);
        border-radius: 18px;
        box-shadow: 0 12px 40px rgba(0, 0, 0, .35);
        overflow: hidden;
    }

    .panel-head {
        padding: 16px 16px 12px;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .panel-title {
        margin: 0;
        font-weight: 900;
        font-size: 1.15rem;
    }

    .panel-sub {
        margin: 6px 0 0;
        color: var(--muted);
        font-size: .98rem;
    }

    .panel-body {
        padding: 14px 16px 16px;
    }

    .plan-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    @media (max-width: 992px) {
        .plan-grid {
            grid-template-columns: 1fr;
        }
    }

    .plan-card {
        position: relative;
        border-radius: 16px;
        background: rgba(0, 0, 0, .22);
        border: 1px solid rgba(255, 255, 255, .10);
        padding: 14px;
        cursor: pointer;
        transition: transform .15s ease, border-color .15s ease, background .15s ease;
        min-height: 118px;
    }

    .plan-card:hover {
        transform: translateY(-2px);
        border-color: rgba(255, 200, 0, .28);
        background: rgba(255, 255, 255, .06);
    }

    .plan-card.is-selected {
        border-color: rgba(255, 200, 0, .40);
        box-shadow: 0 0 0 3px rgba(255, 200, 0, .12) inset;
        background: rgba(255, 200, 0, .06);
    }

    .plan-badge {
        position: absolute;
        top: 10px;
        inset-inline-end: 10px;
        padding: 6px 10px;
        font-size: .82rem;
        border-radius: 999px;
        background: rgba(255, 200, 0, .16);
        border: 1px solid rgba(255, 200, 0, .22);
        color: #fff;
        font-weight: 800;
    }

    .plan-name {
        font-weight: 900;
        font-size: 1.05rem;
        margin: 0 0 6px;
    }

    .plan-meta {
        color: var(--muted);
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        font-size: .95rem;
    }

    .plan-meta i {
        color: var(--primary);
    }

    .plan-price {
        margin-top: 10px;
        font-weight: 900;
        font-size: 1.25rem;
    }

    .plan-price small {
        color: var(--muted);
        font-weight: 700;
        font-size: .95rem;
    }

    .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    @media (max-width: 768px) {
        .form-grid {
            grid-template-columns: 1fr;
        }
    }

    .fg label {
        display: block;
        margin-bottom: 6px;
        color: var(--muted);
        font-weight: 700;
        font-size: .92rem;
    }

    .fg input,
    .fg select {
        width: 100%;
        padding: 12px 12px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, .12);
        background: rgba(0, 0, 0, .22);
        color: #fff;
        outline: none;
    }

    .fg input:focus,
    .fg select:focus {
        border-color: rgba(255, 200, 0, .35);
        box-shadow: 0 0 0 4px rgba(255, 200, 0, .10);
    }

    .cta-row {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin-top: 12px;
        align-items: center;
        justify-content: space-between;
    }

    .btn-cta {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 16px;
        border-radius: 14px;
        border: 1px solid rgba(255, 200, 0, .35);
        background: linear-gradient(135deg, rgba(255, 200, 0, .26), rgba(255, 255, 255, .08));
        color: #fff;
        font-weight: 900;
        text-decoration: none;
    }

    .btn-cta:hover {
        filter: brightness(1.05);
    }

    .btn-soft {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 14px;
        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, .14);
        background: rgba(0, 0, 0, .20);
        color: #fff;
        text-decoration: none;
        font-weight: 800;
    }

    .note {
        color: var(--muted);
        font-size: .92rem;
    }

    .summary {
        position: sticky;
        top: 92px;
    }

    .summary .panel-body {
        padding: 14px 16px 16px;
    }

    .sum-line {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        border-bottom: 1px dashed rgba(255, 255, 255, .12);
        color: var(--muted);
    }

    .sum-line:last-child {
        border-bottom: none;
    }

    .sum-strong {
        color: #fff;
        font-weight: 900;
    }

    .sum-k {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .sum-k i {
        color: var(--primary);
    }

    .faq {
        margin-top: 16px;
    }

    .faq details {
        background: rgba(255, 255, 255, .04);
        border: 1px solid rgba(255, 255, 255, .10);
        border-radius: 14px;
        padding: 12px 12px;
        margin-bottom: 10px;
    }

    .faq summary {
        cursor: pointer;
        font-weight: 900;
        color: #fff;
        list-style: none;
    }

    .faq summary::-webkit-details-marker {
        display: none;
    }

    .faq p {
        margin: 8px 0 0;
        color: var(--muted);
        line-height: 1.7;
    }

    .errbox {
        border: 1px solid rgba(255, 0, 0, .25);
        background: rgba(255, 0, 0, .08);
        color: rgba(255, 255, 255, .92);
        padding: 12px 12px;
        border-radius: 14px;
        margin-bottom: 12px;
    }
    /* intl-tel-input align with your inputs */
.iti { width: 100%; }
.iti__country-list { background: #0f1115; border: 1px solid rgba(255,255,255,.08); }
.iti__country { color: #fff; }
.iti__divider { border-color: rgba(255,255,255,.08); }
.iti__selected-flag { border-radius: 12px; }


.tel-field{
  position:relative;
  display:flex;
  align-items:center;
  gap:10px;
}
.tel-cc{
  display: flex;
  align-items: center;
  gap: 8px;
  /* padding: 10px 12px; */
  /* border-radius: 12px; */
  background: transparent;
  border: 0px solid rgba(255, 255, 255, .12);
  color: #fff;
  cursor: pointer;
  user-select: none;
  flex: 0 0 auto;
  position: absolute;
  left: 0;
}
.tel-flag{font-size:18px; line-height:1}
.tel-dial{font-weight:900; direction: ltr;}
.tel-arrow{font-size:12px; opacity:.8}

.tel-field input{
  flex:1;
}

.cc-dd{
  position:absolute;
  top:calc(100% + 8px);
  left:0;
  z-index:9999;
  width:min(420px, 100%);
  max-height:340px;
  border-radius:16px;
  background:rgba(15,15,15,.98);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 20px 60px rgba(0,0,0,.45);
  overflow:hidden;
}
.cc-search-wrap{padding:10px; border-bottom:1px solid rgba(255,255,255,.08)}
.cc-search{
  width:100%;
  padding:10px 12px;
  border-radius:12px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:#fff;
  outline:none;
}
.cc-list{max-height:280px; overflow:auto}
.cc-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 12px;
  cursor:pointer;
}
.cc-item:hover{background:rgba(255,255,255,.06)}
.cc-left{display:flex; align-items:center; gap:10px; min-width:0}
.cc-name{white-space:nowrap; overflow:hidden; text-overflow:ellipsis}
.cc-code{font-weight:900; opacity:.9}
.cc-iso{opacity:.55; font-size:.85rem; margin-inline-start:6px}

.cc-item[aria-selected="true"]{background:rgba(255,255,255,.10)}





/* trail section */
.shoof-trial { padding: 28px 0; }

.trial-card{
  display:flex; gap:18px; align-items:stretch; justify-content:space-between;
  border-radius:18px; padding:18px;
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 60px rgba(0,0,0,.25);
  overflow:hidden;
}

.trial-left {
    min-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 3rem;
}
.trial-badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:7px 10px; border-radius:999px;
  background: rgba(255,196,0,.12);
  border: 1px solid rgba(255,196,0,.25);
  color: var(--primary);
  font-weight:700;
  margin-bottom:10px;
}
.trial-title{ margin:0 0 8px; font-weight:800; }
.trial-sub{ margin:0 0 10px; opacity:.85; }

.trial-points{ list-style:none; padding:0; margin:0; display:flex; gap:14px; flex-wrap:wrap; }
.trial-points li{ display:flex; gap:8px; align-items:center; opacity:.9; font-size:.95rem; }

.trial-form{
  width: 360px; max-width:100%;
  border-radius:16px; padding:14px;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.08);
  display:flex; flex-direction:column; gap:10px;
}
.trial-field label{ font-size:.9rem; opacity:.85; margin-bottom:6px; display:block; }
.trial-field input{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: #fff;
  outline:none;
}
.trial-field input:focus{ border-color: rgba(255,196,0,.35); box-shadow: 0 0 0 4px rgba(255,196,0,.12); }

.trial-btn{
  margin-top:4px;
  display:flex; justify-content:center; align-items:center; gap:10px;
  padding:12px 14px;
  border-radius:12px;
  background: var(--primary);
  color: #111;
  font-weight:800;
  border:0;
  cursor:pointer;
  transition: transform .15s ease, filter .15s ease;
}
.trial-btn:hover{ transform: translateY(-1px); filter: brightness(1.02); }

.trial-note{ min-height: 18px; font-size:.92rem; opacity:.9; }
.trial-note.is-ok{ color: #7CFFB2; }
.trial-note.is-bad{ color: #FF8A8A; }

@media (max-width: 992px){
  .trial-card{ flex-direction:column; }
  .trial-form{ width:100%; }
}
.tel-field{position:relative}
.tel-cc{
  position:absolute; left:10px; top:50%; transform:translateY(-50%);
  display:flex; align-items:center; gap:8px;
  border:0; background:transparent; color:inherit; cursor:pointer;
}
.cc-dd{
  position:absolute; top:calc(100% + 8px); left:0; right:0;
  background:rgba(20,20,20,.98); border:1px solid rgba(255,255,255,.08);
  border-radius:14px; overflow:hidden; z-index:50;
}
.cc-search-wrap{padding:10px; border-bottom:1px solid rgba(255,255,255,.06)}
.cc-search{width:100%}
.cc-list{max-height:260px; overflow:auto}
.cc-item{
  width:100%; display:flex; justify-content:space-between; gap:10px;
  padding:10px 12px; background:transparent; border:0; color:inherit; cursor:pointer;
}
.cc-item:hover{background:rgba(255,255,255,.06)}
