: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;
  position: relative;
}

.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: 50;
  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 img {
  display: block;
  width: 100px;
  height: auto;
}

.shoof-primary-nav ul,
.shoof-mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.shoof-primary-nav ul {
  display: flex;
  align-items: center;
  gap: 2px;
}

.shoof-quicknav {
  align-items: center;
  gap: 10px;
}

.shoof-navlink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration: none;
  color: rgba(255, 255, 255, .72);
  border: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

.shoof-navlink:hover,
.shoof-navlink.is-active {
  color: #fff;
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  transform: translateY(-1px);
}

.shoof-navlink:focus-visible,
.shoof-mobile-nav summary:focus-visible {
  outline: 3px solid rgba(250, 166, 32, .75);
  outline-offset: 2px;
}

.shoof-mobile-nav {
  position: relative;
  z-index: 2;
}

.shoof-mobile-nav summary {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  cursor: pointer;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  color: var(--text);
  background: rgba(255, 255, 255, .04);
}

.shoof-mobile-nav summary::-webkit-details-marker {
  display: none;
}

.shoof-mobile-nav[open] summary {
  color: var(--primary);
  border-color: rgba(250, 166, 32, .55);
}

.shoof-mobile-menu {
  position: absolute;
  top: calc(100% + 10px);
  inset-inline-end: 0;
  width: min(280px, calc(100vw - 24px));
  display: grid;
  gap: 4px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(18, 18, 18, .99);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .45);
}

.shoof-mobile-menu .shoof-navlink {
  min-height: 44px;
  width: 100%;
  justify-content: flex-start;
}

.shoof-breadcrumb {
  position: relative;
  z-index: 5;
  overflow-x: auto;
  scrollbar-width: none;
}

.shoof-breadcrumb::-webkit-scrollbar {
  display: none;
}

.shoof-breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  max-width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, .68);
  font-size: .9rem;
}

.shoof-breadcrumb li {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.shoof-breadcrumb li + li::before {
  content: "/";
  margin-inline-end: 9px;
  color: rgba(255, 255, 255, .35);
}

.shoof-breadcrumb a {
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
}

.shoof-breadcrumb a:hover {
  color: var(--primary);
}

.shoof-breadcrumb a:focus-visible {
  outline: 3px solid rgba(250, 166, 32, .75);
  outline-offset: 3px;
  border-radius: 4px;
}

.shoof-breadcrumb [aria-current="page"] {
  display: block;
  max-width: min(42vw, 460px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #fff;
  font-weight: 700;
}

.movie-hero > .container > .shoof-breadcrumb {
  position: absolute;
  inset-block-start: 22px;
  inset-inline: clamp(18px, 3vw, 42px);
}

.match-hero .shoof-breadcrumb {
  margin-bottom: 14px;
}

.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);
}

@media (max-width: 991px) {
  .shoof-topbar {
    padding: 10px 0;
  }
}

@media (max-width: 575px) {
  .shoof-logo img {
    width: 78px;
  }

  .shoof-header-actions {
    gap: 4px !important;
  }

  .shoof-header-actions .btn-lang,
  .shoof-header-actions .btn-shoof-cta {
    padding: 8px 9px;
    font-size: .82rem;
  }

  .shoof-mobile-nav summary {
    width: 40px;
    height: 40px;
  }
}

/* ===== 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-mockup img {
  display: block;
  width: min(100%, 560px);
  height: auto;
  margin-inline: auto;
}

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

.hero-sub {
  margin: 14px 0 0;
  max-width: 34rem;
  font-size: 1.02rem;
  line-height: 1.8;
  color: rgba(18, 18, 18, .82);
  font-weight: 700;
}

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

.hero-trust span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(18, 18, 18, .08);
  border: 1px solid rgba(18, 18, 18, .14);
  color: rgba(18, 18, 18, .82);
  font-weight: 800;
  font-size: .92rem;
}

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

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

.hero-platform-label {
  color: rgba(18, 18, 18, .72);
  font-weight: 800;
}

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

.hero-icon {
  font-size: 24px;
  width: 52px;
  height: 52px;
  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 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  border-radius: 999px;
  padding: 0 26px;
  border: 1px solid transparent;
  font-weight: 900;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease;
}

.btn-hero-cta:hover {
  transform: translateY(-2px);
}

.btn-hero-cta.is-primary {
  background: #121212;
  color: #fff;
  border-color: #121212;
  box-shadow: 0 16px 32px rgba(18, 18, 18, .22);
}

.btn-hero-cta.is-primary:hover {
  background: #080808;
  border-color: #080808;
  color: #fff;
}

.btn-hero-cta.is-secondary {
  background: rgba(18, 18, 18, .08);
  color: #121212;
  border-color: rgba(18, 18, 18, .16);
  backdrop-filter: blur(6px);
}

.btn-hero-cta.is-secondary:hover {
  background: rgba(18, 18, 18, .14);
  color: #121212;
}

.btn-hero-cta i {
  font-size: .96rem;
}

@media (max-width: 700px) {
  .hero-card {
    padding: 22px 18px;
  }

  .hero-text h1 {
    text-align: center;
    font-size: 8vw !important;
  }

  .hero-sub,
  .hero-trust,
  .hero-platforms,
  .hero-actions {
    justify-content: center;
    text-align: center;
  }

  .hero-actions {
    width: 100%;
    gap: 10px;
  }

  .btn-hero-cta {
    width: 100%;
  }
}

.shoof-screens {
  padding: 8px 0 52px;
}

.shoof-screens[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}

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

.screens-shell {
  position: relative;
  padding: 30px;
  border-radius: 34px;
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.screens-shell::before,
.screens-shell::after {
  display: none;
}

.screens-shell::before {
  inset-inline-start: -80px;
  top: -100px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(250, 166, 32, .18), rgba(250, 166, 32, 0) 70%);
}

.screens-shell::after {
  inset-inline-end: -110px;
  bottom: -150px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(90, 210, 255, .12), rgba(90, 210, 255, 0) 72%);
}

.screens-head,
.screens-layout {
  position: relative;
  z-index: 1;
}

.screens-head {
  margin-bottom: 20px;
}

.screens-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.screens-kicker-line {
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, rgba(250, 166, 32, .95), rgba(250, 166, 32, 0));
}

.screens-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.screens-sub {
  margin: 14px 0 0;
  max-width: 72ch;
  color: rgba(255, 255, 255, .74);
  line-height: 1.85;
}

.screens-head-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: start;
}

.screens-layout {
  display: block;
}

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

.screens-switcher {
  display: grid;
  gap: 12px;
  justify-items: end;
  text-align: end;
  min-width: min(100%, 330px);
}

.screens-switcher-label {
  color: rgba(255, 255, 255, .62);
  font-size: .92rem;
  font-weight: 800;
}

.screen-tab {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .04);
  color: rgba(255, 255, 255, .76);
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}

.screen-tab:hover {
  transform: translateY(-2px);
  color: #fff;
  border-color: rgba(250, 166, 32, .22);
}

.screen-tab.is-active {
  color: #111;
  background: linear-gradient(135deg, rgba(255, 214, 0, .98), rgba(255, 164, 0, .98));
  border-color: rgba(255, 214, 0, .4);
  box-shadow: 0 16px 28px rgba(0, 0, 0, .18);
}

.screen-tab i {
  font-size: 1rem;
}

.screens-copy-panels {
  position: relative;
  min-height: 0;
}

.screen-copy-panel {
  display: none;
}

.screen-copy-panel.is-active {
  display: block;
  animation: screenCopyReveal .3s ease both;
}

.screen-copy-panel .screens-title {
  max-width: 16ch;
}

.screen-copy-topline {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, .56);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
}

.screen-copy-summary {
  margin-top: 22px;
  display: grid;
  gap: 16px;
}

.screen-copy-stat {
  padding: 16px 18px;
  width: fit-content;
  min-width: 170px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .025));
  border: 1px solid rgba(255, 255, 255, .08);
}

.screen-copy-stat strong {
  display: block;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1;
}

.screen-copy-stat span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, .64);
  font-size: .95rem;
}

.screen-copy-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.screen-copy-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .86);
}

.screen-copy-points i {
  color: rgba(255, 214, 0, .92);
}

.screens-actions {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.screens-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.screens-cta:hover {
  transform: translateY(-2px);
}

.screens-cta.is-primary {
  background: linear-gradient(135deg, rgba(255, 214, 0, .98), rgba(255, 164, 0, .98));
  color: #111;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .24);
}

.screens-cta.is-secondary {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #fff;
}

.screens-stage {
  display: flex;
}

.screens-stage-shell {
  position: relative;
  width: 100%;
  min-height: 760px;
  border-radius: 30px;
  overflow: hidden;
  /* background: #222;
  border: 1px solid rgba(255, 255, 255, .04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03); */
}

.screens-orb {
  display: none;
}

.screens-orb.orb-a {
  width: 130px;
  height: 130px;
  top: 34px;
  inset-inline-start: 34px;
  background: radial-gradient(circle, rgba(87, 228, 255, .42), rgba(87, 228, 255, 0) 72%);
}

.screens-orb.orb-b {
  width: 180px;
  height: 180px;
  bottom: 40px;
  inset-inline-start: 22%;
  animation-delay: -2.4s;
  background: radial-gradient(circle, rgba(255, 214, 0, .26), rgba(255, 214, 0, 0) 72%);
}

.screens-orb.orb-c {
  width: 150px;
  height: 150px;
  top: 16%;
  inset-inline-end: 40px;
  animation-delay: -4.5s;
  background: radial-gradient(circle, rgba(120, 128, 255, .22), rgba(120, 128, 255, 0) 72%);
}

.screen-visual-panels {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 760px;
  transition: transform .72s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
  direction: ltr;
}

.screen-visual-panel {
  --device-accent: rgba(255, 214, 0, .95);
  --device-accent-soft: rgba(255, 214, 0, .18);
  --shot-track-gap: clamp(18px, 2vw, 28px);
  --shot-focus-width: 860px;
  --shot-screen-width-scale: .88;
  --shot-screen-offset-y: 0px;
  --shot-edge-fade: clamp(36px, 8vw, 120px);
  --shot-viewport-width: 100%;
  --shot-rail-width: calc(var(--shot-focus-width) * var(--shot-screen-width-scale));
  --shot-rail-ratio: 16 / 9;
  --shot-rail-radius: 18px;
  --shot-stage-height: 620px;
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  min-height: 100%;
  pointer-events: none;
  display: grid;
  place-items: start center;
  padding: 20px 28px 28px;
  isolation: isolate;
}

.screen-visual-panel.is-active {
  pointer-events: auto;
}

.screen-visual-panel.is-mobile {
  --device-accent: rgba(87, 228, 255, .96);
  --device-accent-soft: rgba(87, 228, 255, .18);
  --shot-focus-width: 360px;
  --shot-screen-width-scale: .883;
  --shot-rail-ratio: 876 / 1782;
  --shot-rail-radius: 52px;
  --shot-stage-height: 760px;
}

.screen-visual-panel.is-tv {
  --device-accent: rgba(255, 214, 0, .95);
  --device-accent-soft: rgba(255, 214, 0, .18);
  --shot-focus-width: 980px;
  --shot-screen-width-scale: .931;
  --shot-screen-offset-y: -34px;
  --shot-rail-ratio: 2368 / 1321;
  --shot-rail-radius: 4px;
  --shot-stage-height: 700px;
}

.screen-visual-panel.is-pc {
  --device-accent: rgba(122, 205, 255, .95);
  --device-accent-soft: rgba(122, 205, 255, .18);
  --shot-focus-width: 900px;
  --shot-screen-width-scale: .833;
  --shot-screen-offset-y: -36px;
  --shot-rail-ratio: 1624 / 878;
  --shot-rail-radius: 12px;
  --shot-stage-height: 700px;
}

.device-shot-ambient {
  display: none;
}

.device-shot-previews {
  display: none;
}

.device-shot-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: 100%;
  display: grid;
  justify-items: center;
  animation: none;
  padding: 32px 0 0;
  margin-inline: auto;
}

.device-shot-stage {
  position: relative;
  width: 100%;
  min-height: var(--shot-stage-height);
  display: grid;
  align-items: center;
}

.device-shot-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
  transform: translateY(var(--shot-screen-offset-y));
  cursor: grab;
  -webkit-mask-image: linear-gradient(to right,
      transparent 0,
      #000 var(--shot-edge-fade),
      #000 calc(100% - var(--shot-edge-fade)),
      transparent 100%);
  mask-image: linear-gradient(to right,
      transparent 0,
      #000 var(--shot-edge-fade),
      #000 calc(100% - var(--shot-edge-fade)),
      transparent 100%);
}

.device-shot-viewport.is-dragging {
  cursor: grabbing;
}

.device-shot-track {
  display: flex;
  align-items: center;
  gap: var(--shot-track-gap);
  width: max-content;
  transform: translate3d(0, 0, 0);
  transition: transform .72s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

.device-shot-slide {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: min(100%, var(--shot-rail-width));
  aspect-ratio: var(--shot-rail-ratio);
  margin: 0;
  overflow: hidden;
  border-radius: var(--shot-rail-radius);
  opacity: .26;
  transition: opacity .72s cubic-bezier(.22, 1, .36, 1);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .24);
  pointer-events: auto;
  cursor: pointer;
  outline: none;
  user-select: none;
  -webkit-user-select: none;
}

.device-shot-slide.is-current {
  opacity: .96;
}

.device-shot-slide:focus-visible {
  opacity: .96;
  box-shadow: 0 0 0 2px rgba(242, 164, 0, .42), 0 18px 42px rgba(0, 0, 0, .24);
}

.device-shot-rail-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

.device-shot-frame {
  position: relative;
  width: 100%;
  aspect-ratio: var(--mockup-ratio, 16 / 10);
  isolation: isolate;
}

.device-shot-frame::before {
  content: none;
}

.device-shot-focus {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(100%, var(--shot-focus-width));
  transform: translate(-50%, -50%);
  z-index: 5;
  pointer-events: none;
}

.device-shot-mockup {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.device-shot-nav {
  display: none;
}

.screen-visual-panel.is-mobile .device-shot-frame {
  --mockup-ratio: 628 / 1216;
}

.screen-visual-panel.is-mobile .device-shot-mockup {
  transform: none;
}

.screen-visual-panel.is-mobile .device-shot-rail-image {
  object-position: center top;
}

.screen-visual-panel.is-tv .device-shot-frame {
  --mockup-ratio: 2544 / 1552;
}

.screen-visual-panel.is-pc .device-shot-frame {
  --mockup-ratio: 1949 / 1119;
}

.screen-visual-panel.is-mobile .device-shot-wrap {
  filter: drop-shadow(0 26px 54px rgba(0, 0, 0, .38));
}

.screen-visual-panel.is-tv .device-shot-wrap {
  filter: drop-shadow(0 24px 52px rgba(0, 0, 0, .34));
}

.screen-visual-panel.is-pc .device-shot-wrap {
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, .3));
}

@media (max-width: 991px) {
  .screens-head-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .screens-switcher {
    min-width: 0;
    justify-items: start;
    text-align: start;
  }

  .screens-tabs {
    justify-content: flex-start;
  }

  .screens-stage-shell,
  .screen-visual-panels {
    min-height: 620px;
  }
}

.device-preview {
  position: relative;
  animation: screensFloat 8s ease-in-out infinite;
  filter: drop-shadow(0 26px 52px rgba(0, 0, 0, .36));
}

.device-phone {
  width: min(100%, 320px);
}

.device-phone__glow {
  position: absolute;
  inset: 7% 10%;
  border-radius: 40px;
  background: radial-gradient(circle, var(--device-accent-soft), rgba(0, 0, 0, 0) 72%);
  filter: blur(26px);
}

.device-phone__frame {
  position: relative;
  aspect-ratio: 0.54;
  padding: 14px;
  border-radius: 40px;
  background: linear-gradient(180deg, #0f1116, #050607);
  border: 1px solid rgba(255, 255, 255, .12);
}

.device-phone__notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 16px;
  border-radius: 999px;
  background: #040506;
  z-index: 2;
}

.device-phone__screen {
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  padding: 22px 16px 16px;
  background:
    radial-gradient(240px 120px at 20% 10%, rgba(87, 228, 255, .16), transparent 62%),
    linear-gradient(180deg, #121925, #090c12);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.device-ui__topbar,
.device-ui__status,
.device-ui__chips,
.device-tv__hero-top,
.device-tv__hero-actions,
.device-desktop__toolbar,
.device-desktop__dots {
  display: flex;
  align-items: center;
}

.device-ui__topbar {
  justify-content: space-between;
}

.device-ui__brand {
  font-weight: 900;
  letter-spacing: .06em;
}

.device-ui__status {
  gap: 4px;
}

.device-ui__status span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .85);
}

.device-ui__search {
  min-height: 42px;
  border-radius: 14px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .68);
  border: 1px solid rgba(255, 255, 255, .08);
}

.device-ui__chips {
  gap: 8px;
  flex-wrap: wrap;
}

.device-ui__chips span {
  min-height: 30px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .82);
  font-size: .82rem;
  font-weight: 800;
}

.device-ui__hero-card {
  min-height: 132px;
  border-radius: 24px;
  padding: 16px;
  background:
    radial-gradient(180px 90px at 10% 10%, rgba(87, 228, 255, .18), rgba(87, 228, 255, 0) 72%),
    linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
  border: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.device-ui__hero-copy strong,
.device-tv__hero-copy strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.3;
}

.device-ui__hero-copy small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, .62);
  line-height: 1.6;
}

.device-ui__hero-play {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--device-accent);
  color: #071016;
  box-shadow: 0 12px 22px rgba(0, 0, 0, .2);
}

.device-ui__list {
  display: grid;
  gap: 10px;
}

.device-ui__list-card {
  min-height: 74px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
}

.device-ui__poster {
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .02)),
    linear-gradient(135deg, rgba(255, 214, 0, .28), rgba(255, 255, 255, .02));
}

.device-ui__poster.poster-b {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .02)),
    linear-gradient(135deg, rgba(87, 228, 255, .22), rgba(255, 255, 255, .02));
}

.device-ui__meta strong,
.device-ui__meta span,
.device-tv__row-head span,
.device-desktop__address,
.device-desktop__sidebar span,
.toolbar-search span {
  display: block;
}

.device-ui__meta strong {
  font-size: .95rem;
  line-height: 1.35;
}

.device-ui__meta span {
  margin-top: 4px;
  color: rgba(255, 255, 255, .58);
  font-size: .84rem;
  line-height: 1.55;
}

.device-tv {
  width: min(100%, 760px);
}

.device-tv__frame {
  aspect-ratio: 16 / 10;
  padding: 12px;
  border-radius: 34px;
  background: linear-gradient(180deg, #121316, #050607);
  border: 1px solid rgba(255, 255, 255, .1);
}

.device-tv__screen {
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  padding: 18px;
  background:
    radial-gradient(320px 180px at 15% 15%, rgba(255, 214, 0, .14), transparent 62%),
    linear-gradient(180deg, #14161c, #080a0f);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.device-tv__hero {
  min-height: 250px;
  border-radius: 24px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02)),
    radial-gradient(240px 140px at 80% 10%, rgba(255, 214, 0, .14), rgba(255, 214, 0, 0) 72%);
  border: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.device-tv__hero-top {
  justify-content: space-between;
  gap: 12px;
}

.device-tv__badge,
.device-tv__live,
.toolbar-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 800;
}

.device-tv__badge {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .08);
}

.device-tv__live {
  background: rgba(255, 214, 0, .18);
  color: rgba(255, 214, 0, .98);
  border: 1px solid rgba(255, 214, 0, .28);
}

.device-tv__hero-copy p {
  margin: 8px 0 0;
  max-width: 40ch;
  color: rgba(255, 255, 255, .66);
  line-height: 1.75;
}

.device-tv__hero-actions {
  gap: 10px;
  flex-wrap: wrap;
}

.device-tv__hero-actions span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .08);
  font-weight: 800;
}

.device-tv__rows {
  display: grid;
  gap: 14px;
}

.device-tv__row {
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
}

.device-tv__row-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.device-tv__row-head span {
  color: rgba(255, 255, 255, .54);
  font-size: .86rem;
}

.device-tv__rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.rail-card {
  aspect-ratio: 1 / 1.25;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .02)),
    linear-gradient(135deg, rgba(255, 214, 0, .18), rgba(255, 255, 255, .02));
}

.rail-card.rail-b,
.rail-card.rail-d {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .02)),
    linear-gradient(135deg, rgba(94, 154, 255, .18), rgba(255, 255, 255, .02));
}

.device-tv__stand {
  width: 22%;
  height: 18px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .24), rgba(255, 255, 255, .06));
}

.device-desktop {
  width: min(100%, 780px);
}

.device-desktop__window {
  aspect-ratio: 16 / 10;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #0f1115, #050607);
  border: 1px solid rgba(255, 255, 255, .1);
}

.device-desktop__bar {
  min-height: 50px;
  padding: 0 16px;
  background: rgba(255, 255, 255, .04);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.device-desktop__dots {
  gap: 6px;
}

.device-desktop__dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
}

.device-desktop__address {
  color: rgba(255, 255, 255, .56);
  font-size: .9rem;
}

.device-desktop__body {
  height: calc(100% - 50px);
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
}

.device-desktop__sidebar {
  padding: 18px 14px;
  background: rgba(255, 255, 255, .03);
  border-inline-end: 1px solid rgba(255, 255, 255, .08);
  display: grid;
  align-content: start;
  gap: 12px;
}

.device-desktop__sidebar strong {
  font-size: 1rem;
}

.device-desktop__sidebar span {
  color: rgba(255, 255, 255, .62);
  font-size: .9rem;
}

.device-desktop__content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background:
    radial-gradient(360px 180px at 100% 0%, rgba(122, 205, 255, .12), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .01));
}

.device-desktop__toolbar {
  justify-content: space-between;
  gap: 12px;
}

.toolbar-search {
  min-height: 42px;
  flex: 1 1 auto;
  padding: 0 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .66);
}

.toolbar-chip {
  background: rgba(122, 205, 255, .16);
  border: 1px solid rgba(122, 205, 255, .24);
  color: rgba(255, 255, 255, .92);
}

.device-desktop__grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.desktop-card {
  min-height: 124px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .02)),
    linear-gradient(135deg, rgba(255, 214, 0, .12), rgba(255, 255, 255, .02));
}

.desktop-card--wide {
  grid-column: span 2;
  min-height: 148px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .02)),
    linear-gradient(135deg, rgba(122, 205, 255, .18), rgba(255, 255, 255, .02));
}

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

@keyframes screenCopyReveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes screensPulse {
  0%, 100% { transform: scale(1); opacity: .78; }
  50% { transform: scale(1.08); opacity: .94; }
}

@media (max-width: 992px) {
  .shoof-screens {
    padding-bottom: 42px;
  }

  .screens-shell {
    padding: 22px;
    border-radius: 28px;
  }

  .screens-stage-shell,
  .screen-visual-panels {
    min-height: 660px;
  }

  .screen-visual-panel {
    --shot-track-gap: 18px;
  }

  .screen-visual-panel.is-mobile {
    --shot-focus-width: 336px;
    --shot-stage-height: 700px;
  }

  .screen-visual-panel.is-tv {
    --shot-focus-width: 860px;
    --shot-screen-offset-y: -30px;
    --shot-stage-height: 660px;
  }

  .screen-visual-panel.is-pc {
    --shot-focus-width: 760px;
    --shot-screen-offset-y: -32px;
    --shot-stage-height: 660px;
  }
}

@media (max-width: 576px) {
  .screens-shell {
    padding: 18px;
    border-radius: 24px;
  }

  .screens-head {
    margin-bottom: 22px;
  }

  .screens-head-layout {
    gap: 18px;
  }

  .screens-title {
    max-width: none;
  }

  .screens-switcher {
    justify-items: stretch;
  }

  .screens-tabs {
    flex-wrap: nowrap;
    overflow: auto;
    padding-bottom: 4px;
    justify-content: flex-start;
  }

  .screen-tab {
    flex: 0 0 auto;
    min-height: 48px;
    padding: 0 14px;
  }

  .screen-copy-summary {
    gap: 12px;
  }

  .screen-copy-stat {
    width: 100%;
  }

  .screen-copy-points {
    gap: 8px;
  }

  .screen-copy-points li {
    width: 100%;
    min-height: 0;
    padding: 12px 14px;
    border-radius: 18px;
  }

  .screens-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .screens-cta {
    width: 100%;
  }

  .screens-stage-shell,
  .screen-visual-panels {
    min-height: 520px;
  }

  .screen-visual-panel {
    padding: 16px;
    --shot-track-gap: 14px;
  }

  .screen-visual-panel.is-mobile {
    --shot-focus-width: 300px;
    --shot-stage-height: 620px;
  }

  .screen-visual-panel.is-tv,
  .screen-visual-panel.is-pc {
    --shot-stage-height: 620px;
  }

  .screen-visual-panel.is-tv {
    --shot-focus-width: 680px;
    --shot-screen-offset-y: -24px;
  }

  .screen-visual-panel.is-pc {
    --shot-focus-width: 620px;
    --shot-screen-offset-y: -28px;
  }

  .device-shot-wrap {
    padding: 18px 0 0;
  }

  .device-shot-slide {
    opacity: .22;
  }

  .device-phone {
    width: min(100%, 278px);
  }

  .device-tv {
    width: 100%;
  }

  .device-tv__screen {
    padding: 14px;
    gap: 12px;
  }

  .device-tv__hero {
    min-height: 214px;
    padding: 14px;
  }

  .device-tv__rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .device-desktop__body {
    grid-template-columns: 1fr;
  }

  .device-desktop__sidebar {
    display: none;
  }

  .device-desktop__grid {
    grid-template-columns: 1fr 1fr;
  }

  .desktop-card--wide {
    grid-column: span 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shoof-screens[data-reveal],
  .screen-copy-panel,
  .screen-visual-panel,
  .screen-tab,
  .screens-cta,
  .device-preview,
  .screens-orb {
    transition: none !important;
    animation: none !important;
    transform: none !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);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position:relative;
}

.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;
  }

  .features-grid .col-6 {
    padding-inline: 6px;
  }
}





.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: 116px;
    height: 116px;
  }

  .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;
  gap: 10px;
}

@media (max-width: 576px) {
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

.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 {
  width: 100%;
  display: block;
  aspect-ratio: 2/3;
  object-fit: cover;
}

.card-poster-title {
  padding: 10px 10px 12px;
  color: var(--text);
  font-weight: 800;
  font-size: .95rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.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;
  object-fit: cover;
  display: block;
}

.card-person-title {
  margin-top: 10px;
  color: var(--text);
  font-weight: 900;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-live {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 14px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  text-align: center;
}

.card-live-img {
  width: min(100%, 140px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
  border-radius: 24px;
  background: rgba(255, 255, 255, .05);
  padding: 10px;
}

.card-live-title {
  color: var(--text);
  font-weight: 900;
  font-size: .95rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.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 (max-width: 576px) {
  .row-card {
    width: 148px;
    height: 248px;
  }

  .row-card-img {
    height: 190px;
  }

  .sec-row.is-snap .row-card {
    width: 148px;
  }
}

@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 {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.row-card-title {
  padding: 10px 10px 12px;
  font-size: 14px;
  line-height: 1.2;
  opacity: .92;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.row-card-live {
  height: auto;
}

.row-card-live .row-card-img {
  height: 160px;
  object-fit: contain;
  background: rgba(255, 255, 255, .04);
}

.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 {
  width: 100%;
  display: block;
  aspect-ratio: 2/3;
  object-fit: cover;
  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;
}

@media (max-width: 576px) {
  .sec--glow_row,
  .sec--ranked_row {
    padding: 22px 14px;
  }
}

.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: 52px 0 0 0;
  position: relative;
}

.plans-shell {
  position: relative;
  padding: 28px;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(720px 360px at 0% 0%, rgba(250, 166, 32, .18), transparent 58%),
    radial-gradient(560px 260px at 100% 12%, rgba(251, 186, 110, .14), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .018));
  border: 1px solid rgba(255, 255, 255, .09);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
}

.plans-shell::before,
.plans-shell::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.plans-shell::before {
  inset-inline-start: -90px;
  top: -110px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(250, 166, 32, .18), rgba(250, 166, 32, 0) 72%);
}

.plans-shell::after {
  inset-inline-end: -70px;
  bottom: -110px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(251, 186, 110, .12), rgba(251, 186, 110, 0) 72%);
}

.plans-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 22px;
}

@media (max-width: 992px) {
  .shoof-plans {
    padding-top: 40px;
  }

  .plans-shell {
    padding: 22px;
    border-radius: 28px;
  }

  .plans-head {
    grid-template-columns: 1fr;
  }
}

.plans-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.plans-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
}

.plans-kicker-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, rgba(250, 166, 32, .95), rgba(250, 166, 32, 0));
}

.plans-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0;
  letter-spacing: .2px;
  line-height: 1.04;
  /* max-width: 11ch; */
}

.plans-sub {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  max-width: 62ch;
  line-height: 1.9;
  font-size: 1.02rem;
}

.plans-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: end;
}

.plans-note {
  margin: 0;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .92);
  font-weight: 700;
}

.plans-highlight {
  min-width: 170px;
  padding: 16px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(250, 166, 32, .16), rgba(250, 166, 32, .06));
  border: 1px solid rgba(250, 166, 32, .24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.plans-highlight-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .64);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

.plans-highlight-value {
  display: block;
  color: #fff;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 900;
  line-height: 1;
}

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

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

.plans-actions {
  display: flex;
}

.plans-actions-card {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 20px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(8, 10, 13, .74), rgba(255, 255, 255, .03));
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.plans-actions-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

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

.currency-label {
  font-size: 12px;
  color: rgba(255, 255, 255, .62);
  margin-bottom: 8px;
  letter-spacing: .08em;
  font-weight: 700;
}

.currency-heading {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.3;
}

.currency-badge {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .76);
  font-size: 12px;
  font-weight: 800;
}

.currency-option {
  appearance: none;
  width: 100%;
  min-height: 84px;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .035);
  color: #fff;
  text-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.currency-option:hover {
  transform: translateY(-2px);
  border-color: rgba(250, 166, 32, .28);
  background: rgba(255, 255, 255, .055);
}

.currency-option.is-active {
  border-color: rgba(250, 166, 32, .48);
  background: linear-gradient(180deg, rgba(250, 166, 32, .20), rgba(250, 166, 32, .08));
  box-shadow: 0 0 0 1px rgba(250, 166, 32, .14) inset;
}

.currency-option-code {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: .04em;
}

.currency-option-name {
  color: rgba(255, 255, 255, .66);
  font-size: .92rem;
}

.currency-note {
  margin: 0;
  color: rgba(255, 255, 255, .66);
  font-size: .94rem;
  line-height: 1.8;
}

.currency-select {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.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: 6px;
  position: relative;
  z-index: 1;
}

@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: 8px;
}

.plan-duration {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

.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);
}

.shoof-plans .plan-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
  padding: 20px 18px 18px;
}

.shoof-plans .plan-card.is-best {
  box-shadow: 0 20px 42px rgba(0, 0, 0, .34);
}

.shoof-plans .plan-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding-inline-end: 96px;
}

[dir="rtl"] .shoof-plans .plan-head {
  align-items: flex-start;
  padding-inline-end: 96px;
  padding-inline-end: 0;
}

.shoof-plans .plan-name {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  line-height: 1.05;
}

.shoof-plans .plan-duration {
  margin: 0;
  padding: 8px 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, .72);
}

.shoof-plans .plan-summary {
  padding: 14px 15px 13px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .022));
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
}

.shoof-plans .plan-price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.shoof-plans .plan-price-label {
  color: rgba(255, 255, 255, .56);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

[dir="rtl"] .shoof-plans .plan-price-label {
  text-transform: none;
}

.shoof-plans .plan-price {
  margin: 0;
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 8px;
  direction: ltr;
  line-height: 1;
}

.shoof-plans .plan-price-num {
  font-size: clamp(2.55rem, 4.2vw, 3.3rem);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.shoof-plans .plan-price-cur {
  color: rgba(255, 255, 255, .7);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.shoof-plans .plan-per {
  margin: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.shoof-plans .plan-per-label {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  font-weight: 700;
}

.shoof-plans .plan-per-value {
  direction: ltr;
  color: rgba(255, 255, 255, .88);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.shoof-plans .plan-features {
  margin: 2px 0 14px;
  padding-top: 2px;
  gap: 10px;
  flex: 1;
}

.shoof-plans .plan-features li {
  align-items: flex-start;
  gap: 12px;
  line-height: 1.45;
}

[dir="rtl"] .shoof-plans .plan-features li {
  flex-direction: row-reverse;
}

.shoof-plans .btn-plans-cta {
  margin-top: auto;
  min-height: 72px;
  border-radius: 18px;
  font-size: 1.05rem;
}

@media (max-width: 576px) {
  .shoof-plans .plan-head {
    padding-inline-end: 0;
  }

  [dir="rtl"] .shoof-plans .plan-head {
    padding-inline-start: 0;
  }

  .shoof-plans .plan-price-row,
  .shoof-plans .plan-per {
    gap: 10px;
  }

  .shoof-plans .btn-plans-cta {
    min-height: 64px;
  }
}

.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;
  position: relative;
  z-index: 1;
}

.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;
}

@media (max-width: 576px) {
  .plans-shell {
    padding: 18px;
    border-radius: 24px;
  }

  .plans-title {
    max-width: none;
  }

  .plans-intro-grid {
    grid-template-columns: 1fr;
  }

  .plans-highlight {
    min-width: 0;
  }

  .plans-actions-card {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .plans-actions-top {
    flex-direction: column;
  }

  .currency-switch {
    grid-template-columns: 1fr;
  }

  .currency-option {
    min-height: 74px;
  }

  .plans-foot-card {
    flex-wrap: wrap;
  }

  .plans-foot-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-inline-start: 0;
  }
}


.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;
}





/* ===== TOD-Like Details Pages ===== */
.movie-hero {
  position: relative;
  margin-top: 70px;
  min-height: 690px;
  overflow: hidden;
  background: #000;
}

.movie-hero--trailer {
  display: flex;
  align-items: stretch;
}

.movie-hero-bg,
.movie-hero-video,
.movie-hero-overlay,
.movie-hero-bottom-fade {
  position: absolute;
  inset: 0;
}

.movie-hero-bg {
  z-index: 1;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: opacity .55s ease, transform .8s ease;
}

.movie-hero-video {
  z-index: 2;
  overflow: hidden;
  opacity: 0;
  transform: translateX(34px);
  transition: opacity .55s ease, transform .75s cubic-bezier(.22, 1, .36, 1);
  pointer-events: none;
}

.movie-hero-video.is-active {
    opacity: 1;
    transform: translateX(-200px) scale(1.1);
}

.movie-hero-video.is-hidden {
  display: none;
}

.movie-hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  min-width: 100%;
  min-height: 100%;
  border: 0;
  transform: translate(-50%, -50%);
}

.movie-hero-overlay {
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .96) 17%, rgba(0, 0, 0, .62) 33%, rgba(0, 0, 0, .12) 58%, rgba(0, 0, 0, .10) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .22) 0%, rgba(0, 0, 0, .08) 18%, rgba(0, 0, 0, .82) 100%);
}

[dir="rtl"] .movie-hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .10) 0%, rgba(0, 0, 0, .12) 42%, rgba(0, 0, 0, .62) 67%, rgba(0, 0, 0, .96) 83%, #000 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .22) 0%, rgba(0, 0, 0, .08) 18%, rgba(0, 0, 0, .82) 100%);
}

.movie-hero-bottom-fade {
  z-index: 3;
  pointer-events: none;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .92) 62%, #000 100%);
}

.movie-hero .container {
  position: relative;
  z-index: 4;
  max-width: 100%;
  padding-inline: clamp(18px, 3vw, 42px);
}

.movie-hero-shell,
.movie-hero-shell--tod {
  min-height: 690px;
}

.movie-hero-grid,
.movie-hero-grid--tod {
  display: grid;
  direction: ltr;
  grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
  grid-template-areas: "panel stage";
  align-items: center;
  min-height: 690px;
  gap: 18px;
}

.movie-hero-stage-space {
  grid-area: stage;
  min-height: 500px;
}

.movie-info-panel {
  grid-area: panel;
  justify-self: start;
  width: min(100%, 430px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-block: 110px 64px;
  direction: ltr;
  text-align: start;
  align-items: flex-start;
}

.movie-mobile-poster-wrap {
  display: none;
}

.movie-mobile-summary {
  display: none;
}

.movie-mobile-summary-card {
  display: grid;
  gap: 14px;
}

[dir="rtl"] .movie-hero-grid--tod {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  grid-template-areas: "stage panel";
}

[dir="rtl"] .movie-info-panel {
  direction: rtl;
  justify-self: end;
  text-align: right;
  align-items: flex-start;
}

.movie-topline {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .88);
  font-size: 14px;
  font-weight: 700;
}

[dir="rtl"] .movie-topline {
  justify-content: flex-end;
}

.movie-topline__dot {
  inline-size: 5px;
  block-size: 5px;
  border-radius: 999px;
  background: rgba(255, 201, 76, .88);
}

.movie-title {
  margin: 0;
  font-size: clamp(34px, 3.4vw, 54px);
  line-height: 1.04;
  font-weight: 900;
  text-wrap: balance;
}

.movie-plot {
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: 14px;
  line-height: 1.9;
}

.movie-hero-facts {
  display: grid;
  gap: 10px;
}

.movie-fact-line {
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  line-height: 1.75;
}

.movie-fact-label {
  color: #fff;
  font-weight: 800;
}

.movie-fact-value {
  color: rgba(255, 255, 255, .78);
}

.movie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

[dir="rtl"] .movie-actions {
  justify-content: flex-start;
}

.movie-hero .btn,
.match-hero .btn,
.download-card .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.movie-hero .btn-play,
.match-hero .btn-play,
.download-card .btn-play {
  background: var(--primary);
  color: #111;
  box-shadow: 0 14px 30px rgba(255, 193, 7, .22);
}

.movie-hero .btn-ghost,
.match-hero .btn-ghost,
.download-card .btn-ghost {
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .14);
  color: #fff;
}

.movie-hero .btn:hover,
.match-hero .btn:hover,
.download-card .btn:hover {
  transform: translateY(-1px);
}

.movie-hero .btn-ghost:hover,
.match-hero .btn-ghost:hover,
.download-card .btn-ghost:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, .16) !important;
  border-color: rgba(255, 255, 255, .22) !important;
}

.movie-preview-row {
  width: 100%;
  margin-top: 16px;
}

.hero-preview-card {
  width: 100%;
  display: grid;
  direction: ltr;
  grid-template-columns: 170px 1fr 48px;
  align-items: center;
  gap: 14px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  text-align: start;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.hero-preview-card:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .09);
  border-color: rgba(255, 255, 255, .18);
}

.hero-preview-card--static {
  cursor: default;
  grid-template-columns: 170px 1fr;
}

[dir="rtl"] .hero-preview-card {
  text-align: right;
}

[dir="rtl"] .hero-preview-copy {
  direction: rtl;
  text-align: right;
}

.hero-preview-media {
  display: block;
  min-height: 120px;
  background-size: cover;
  background-position: center;
}

.hero-preview-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.hero-preview-kicker {
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-preview-title {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.hero-preview-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-inline-end: 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .48);
  border: 1px solid rgba(255, 255, 255, .14);
}

[dir="rtl"] .hero-preview-play {
  margin-inline-start: 12px;
  margin-inline-end: 0;
}

[dir="rtl"] .hero-preview-kicker {
  letter-spacing: 0;
}

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

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

.movie-meta-row {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.meta-label,
.details-k {
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

[dir="rtl"] .meta-label,
[dir="rtl"] .details-k {
  letter-spacing: 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .9);
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.chip:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .18);
}

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

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

.movie-section {
  padding: 28px 0;
}

.movie-details-layout {
  row-gap: 24px;
}

.movie-details-layout > [class*="col-"] {
  display: flex;
}

.movie-details-layout .movie-section {
  inline-size: 100%;
}

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

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

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

.sec-more:hover {
  color: #fff;
}

.details-panel,
.download-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .03));
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .16);
}

.details-panel {
  inline-size: 100%;
  margin-top: 0;
  padding: 20px;
}

.details-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  align-items: start;
}

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

.details-v {
  color: rgba(255, 255, 255, .9);
  font-weight: 800;
  line-height: 1.8;
}

.people-row,
.cards-row {
  display: flex;
  gap: 14px;
  overflow: auto;
  padding-bottom: 8px;
}

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

.person-card,
.row-card {
  flex: 0 0 auto;
  text-decoration: none;
  color: rgba(255, 255, 255, .94);
  transition: transform .18s ease;
}

.person-card {
  inline-size: 120px;
  scroll-snap-align: start;
}

.person-card:hover,
.row-card:hover {
  transform: translateY(-3px);
}

.person-card.is-static {
  cursor: default;
}

.person-card.is-static:hover {
  transform: none;
}

.person-img {
  inline-size: 120px;
  block-size: 120px;
  border-radius: 24px;
  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: 10px;
  font-weight: 800;
  font-size: 13px;
  opacity: .9;
}

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

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

.row-card {
  position: relative;
  inline-size: 168px;
}

.row-card-img {
  inline-size: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 20px;
  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: 10px;
  font-weight: 900;
  font-size: 13px;
  opacity: .9;
}

.shoof-modal,
.shoof-modal__panel,
#trailerPopupFrame {
  pointer-events: auto;
}

.download-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
}

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

.download-sub {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.7;
}

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

@media (max-width: 1024px) {
  .movie-hero,
  .movie-hero-shell,
  .movie-hero-grid,
  .movie-hero-grid--tod {
    min-height: 620px;
  }

  .movie-hero-grid,
  .movie-hero-grid--tod {
    grid-template-columns: minmax(300px, 380px) minmax(0, 1fr);
    grid-template-areas: "panel stage";
  }

  [dir="rtl"] .movie-hero-grid--tod {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
    grid-template-areas: "stage panel";
  }
}

@media (max-width: 820px) {
  .movie-hero {
    margin-top: 58px;
    min-height: auto;
    height: 50vh;
  }

  .movie-hero-shell,
  .movie-hero-grid,
  .movie-hero-grid--tod {
    min-height: auto;
  }

  .movie-hero-grid,
  .movie-hero-grid--tod {
    grid-template-columns: 1fr;
    grid-template-areas:
      "stage"
      "panel";
    align-items: end;
  }

  .movie-hero-stage-space {
    min-height: 180px;
  }

  .movie-info-panel {
    display: none;
  }

  .movie-mobile-summary {
    display: flex;
    position: relative;
    z-index: 4;
    /*margin-top: -64px;*/
    padding-bottom: 12px;
  }

  .movie-mobile-summary .container {
    padding-inline: 16px;
  }

  .movie-mobile-summary-card {
    width: 100%;
  }

  .movie-mobile-poster-wrap {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
  }

  .movie-poster--mobile {
    inline-size: 150px;
    max-inline-size: 150px;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border-radius: 18px;
    background-position: center;
    background-size: cover;
  }

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

  [dir="rtl"] .movie-info-panel {
    justify-self: stretch;
    align-items: stretch;
  }

  .movie-actions,
  [dir="rtl"] .movie-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .movie-hero .container {
    padding-inline: 16px;
  }
  
  .movie-hero-video.is-active {
    opacity: 1;
    transform: translateX(0px) scale(1.1);
}

  .movie-title {
    font-size: clamp(28px, 9vw, 40px);
  }

  .movie-plot {
    font-size: 13px;
    line-height: 1.8;
  }

  .movie-hero .btn,
  .download-card .btn,
  .match-hero .btn {
    inline-size: 100%;
  }

  .movie-actions,
  .download-actions {
    inline-size: 100%;
  }

  .hero-preview-card {
    grid-template-columns: 110px 1fr 42px;
    gap: 10px;
  }

  .hero-preview-media {
    min-height: 88px;
  }

  .hero-preview-copy {
    padding: 0;
  }

  .hero-preview-play {
    width: 42px;
    height: 42px;
    margin-inline-end: 10px;
  }

  .hero-preview-card--static {
    grid-template-columns: 110px 1fr;
  }

  .details-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .download-card {
    flex-direction: column;
    align-items: flex-start;
  }

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


/* ===== 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: min(340px, 86vw);
  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%;
}
.is-hidden { display: none !important; }

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

/* Search-intent content block for movie/series/match SEO */
.seo-intent-card {
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .10);
    background:
        radial-gradient(620px 240px at 15% 0%, rgba(255, 200, 0, .13), transparent 58%),
        rgba(255, 255, 255, .045);
    padding: 18px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .22);
}

.seo-intent-card .sec-head {
    margin-bottom: 8px;
}

.seo-intent-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.seo-intent-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.seo-intent-tags span {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(0, 0, 0, .22);
    color: var(--text);
    padding: 8px 11px;
    font-size: .92rem;
    font-weight: 700;
}

/* ========= 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);
    }

    .phone-help,
    .phone-validation {
        margin-top: 7px;
        font-size: .82rem;
        line-height: 1.5;
    }

    .phone-help {
        color: var(--muted);
    }

    .phone-validation {
        min-height: 20px;
        color: #ff9b9b;
    }

    .phone-validation.is-valid {
        color: #7cffb2;
    }

    #phoneInput[aria-invalid="true"] {
        border-color: rgba(255, 91, 91, .75);
        box-shadow: 0 0 0 4px rgba(255, 91, 91, .1);
    }

    .phone-confirm-backdrop {
        position: fixed;
        inset: 0;
        z-index: 10050;
        display: grid;
        place-items: center;
        padding: 20px;
        background: rgba(0, 0, 0, .74);
        backdrop-filter: blur(8px);
    }

    .phone-confirm-backdrop[hidden] {
        display: none;
    }

    .phone-confirm-dialog {
        width: min(460px, 100%);
        padding: 28px;
        border: 1px solid rgba(255, 255, 255, .14);
        border-radius: 24px;
        background: #17191e;
        box-shadow: 0 24px 80px rgba(0, 0, 0, .55);
        text-align: center;
    }

    .phone-confirm-icon {
        display: grid;
        place-items: center;
        width: 52px;
        height: 52px;
        margin: 0 auto 16px;
        border-radius: 50%;
        background: rgba(255, 200, 0, .14);
        color: var(--primary);
        font-size: 1.2rem;
    }

    .phone-confirm-dialog h2 {
        margin: 0;
        color: #fff;
        font-size: 1.35rem;
    }

    .phone-confirm-dialog p {
        margin: 10px 0 0;
        color: var(--muted);
        line-height: 1.7;
    }

    .phone-confirm-number {
        margin: 20px 0;
        padding: 14px;
        border: 1px solid rgba(255, 200, 0, .24);
        border-radius: 14px;
        background: rgba(255, 200, 0, .08);
        color: #fff;
        font-size: 1.4rem;
        font-weight: 900;
        letter-spacing: .04em;
    }

    .phone-confirm-actions {
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    body.phone-confirm-open {
        overflow: hidden;
    }

    .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)}





/* trial section */
.shoof-trial { padding: 32px 0 42px; }

.trial-card{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0, 1.08fr) minmax(320px, .92fr);
  gap:26px;
  align-items:stretch;
  padding:30px;
  border-radius:32px;
  overflow:hidden;
  background:
    radial-gradient(760px 340px at 0% 0%, rgba(250,166,32,.16), transparent 58%),
    radial-gradient(560px 260px at 100% 20%, rgba(251,186,110,.12), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
  border:1px solid rgba(255,255,255,.08);
  box-shadow: 0 22px 72px rgba(0,0,0,.28);
}

.trial-card::before,
.trial-card::after{
  content:"";
  position:absolute;
  border-radius:999px;
  pointer-events:none;
}

.trial-card::before{
  inset-inline-start:-70px;
  top:-100px;
  width:220px;
  height:220px;
  background: radial-gradient(circle, rgba(250,166,32,.18), rgba(250,166,32,0) 70%);
}

.trial-card::after{
  inset-inline-end:-90px;
  bottom:-130px;
  width:260px;
  height:260px;
  background: radial-gradient(circle, rgba(255,255,255,.06), rgba(255,255,255,0) 72%);
}

.trial-copy,
.trial-preview{
  position:relative;
  z-index:1;
}

.trial-copy{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  gap:18px;
}

.trial-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,196,0,.12);
  border: 1px solid rgba(255,196,0,.25);
  color: var(--primary);
  font-weight:800;
}

.trial-title{
  margin:0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height:1.04;
  font-weight:900;
  max-width:11ch;
}

.trial-sub{
  margin:0;
  max-width:60ch;
  color:rgba(255,255,255,.78);
  line-height:1.85;
  font-size:1.03rem;
}

.trial-points{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.trial-points li{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  color:rgba(255,255,255,.88);
  font-size:.95rem;
}

.trial-actions{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:12px;
  margin-top:4px;
}

.trial-open-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  min-height:58px;
  padding:0 24px;
  border-radius:18px;
  border:0;
  background: linear-gradient(135deg, rgba(255,214,0,.98), rgba(255,164,0,.98));
  color:#111;
  font-weight:900;
  font-size:1rem;
  box-shadow: 0 16px 34px rgba(0,0,0,.28);
  cursor:pointer;
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}

.trial-open-btn:hover{
  transform:translateY(-2px);
  filter:brightness(1.02);
  box-shadow: 0 22px 40px rgba(0,0,0,.34);
}

.trial-hint{
  margin:0;
  color:rgba(255,255,255,.62);
  font-size:.94rem;
  line-height:1.8;
  max-width:50ch;
}

.trial-preview{
  display:grid;
  gap:14px;
}

.trial-preview-card,
.trial-preview-mini{
  border-radius:24px;
  border:1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.trial-preview-card{
  padding:22px;
}

.trial-preview-card.is-primary{
  background:
    radial-gradient(420px 220px at 0% 0%, rgba(250,166,32,.16), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
}

.trial-preview-kicker{
  display:block;
  margin-bottom:10px;
  color:rgba(255,255,255,.58);
  font-size:12px;
  letter-spacing:.12em;
  font-weight:800;
}

.trial-preview-card strong{
  display:block;
  font-size:1.45rem;
  line-height:1.35;
  margin-bottom:8px;
}

.trial-preview-card p{
  margin:0;
  color:rgba(255,255,255,.68);
  line-height:1.8;
}

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

.trial-preview-mini{
  min-height:138px;
  padding:18px 16px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:12px;
}

.trial-preview-mini span{
  color:rgba(255,255,255,.56);
  font-size:12px;
  letter-spacing:.08em;
  font-weight:700;
}

.trial-preview-mini strong{
  font-size:1rem;
  line-height:1.55;
}

.trial-modal{
  position:fixed;
  inset:0;
  z-index:100000;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition: opacity .22s ease, visibility .22s ease;
}

.trial-modal.is-open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.trial-modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(5,7,10,.74);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.trial-modal__dialog{
  position:relative;
  width:min(1040px, calc(100vw - 28px));
  max-height:min(88vh, 860px);
  margin:4vh auto;
  border-radius:30px;
  overflow:auto;
  border:1px solid rgba(255,255,255,.09);
  background:
    radial-gradient(680px 320px at 0% 0%, rgba(250,166,32,.16), transparent 58%),
    linear-gradient(180deg, rgba(18,18,22,.98), rgba(10,10,13,.96));
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
  transform: translateY(20px) scale(.98);
  opacity:0;
  transition: transform .28s cubic-bezier(.2,.8,.2,1), opacity .22s ease;
}

.trial-modal.is-open .trial-modal__dialog{
  transform: translateY(0) scale(1);
  opacity:1;
}

.trial-modal__close{
  position:absolute;
  top:16px;
  inset-inline-end:16px;
  z-index:2;
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:#fff;
  display:grid;
  place-items:center;
  cursor:pointer;
  transition: transform .18s ease, background .18s ease;
}

.trial-modal__close:hover{
  transform:scale(1.04);
  background:rgba(255,255,255,.12);
}

.trial-modal__layout{
  display:grid;
  grid-template-columns:minmax(0, .94fr) minmax(0, 1.06fr);
  gap:22px;
  padding:28px;
}

.trial-modal__intro{
  display:flex;
  flex-direction:column;
  gap:16px;
  padding:8px 6px 8px 2px;
}

.trial-modal__title{
  margin:0;
  font-size:clamp(1.7rem, 3vw, 2.5rem);
  line-height:1.15;
}

.trial-modal__sub{
  margin:0;
  color:rgba(255,255,255,.72);
  line-height:1.85;
}

.trial-modal__facts{
  display:grid;
  gap:12px;
}

.trial-modal__fact{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:14px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.035);
}

.trial-modal__fact i{
  width:38px;
  height:38px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background: rgba(250,166,32,.14);
  color: var(--primary);
  flex:0 0 auto;
}

.trial-modal__fact strong{
  display:block;
  margin-bottom:4px;
  font-size:1rem;
}

.trial-modal__fact span{
  color:rgba(255,255,255,.64);
  line-height:1.7;
  font-size:.94rem;
}

.trial-form{
  width:100%;
  max-width:100%;
  border-radius:24px;
  padding:18px;
  background: rgba(0,0,0,.24);
  border: 1px solid rgba(255,255,255,.08);
  display:flex;
  flex-direction:column;
  gap:12px;
}

.trial-form--modal{
  align-self:stretch;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.trial-field{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.trial-field label{
  font-size:.92rem;
  color:rgba(255,255,255,.84);
  display:block;
}

.trial-field input{
  width:100%;
  padding:14px 14px;
  border-radius:14px;
  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-field .cf-turnstile{
  display:flex;
  justify-content:center;
}

.trial-btn{
  margin-top:4px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  min-height:56px;
  padding:12px 14px;
  border-radius:16px;
  background: linear-gradient(135deg, rgba(255,214,0,.98), rgba(255,164,0,.98));
  color: #111;
  font-weight:900;
  border:0;
  cursor:pointer;
  transition: transform .15s ease, filter .15s ease, opacity .15s ease;
}

.trial-btn:hover{ transform: translateY(-1px); filter: brightness(1.02); }
.trial-btn:disabled{ opacity:.72; cursor:wait; }

.trial-note{
  min-height: 18px;
  font-size:.92rem;
  opacity:.9;
}

.trial-note.is-ok{ color: #7CFFB2; }
.trial-note.is-bad{ color: #FF8A8A; }

.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)}

@media (max-width: 992px){
  .trial-card,
  .trial-modal__layout{
    grid-template-columns:1fr;
  }

  .trial-preview-grid{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 576px){
  .shoof-trial{
    padding-top: 24px;
  }

  .trial-card{
    padding:20px;
    border-radius:26px;
    gap:18px;
  }

  .trial-title{
    max-width:none;
  }

  .trial-points{
    flex-direction:column;
    align-items:stretch;
  }

  .trial-open-btn{
    width:100%;
  }

  .trial-preview-grid{
    grid-template-columns:1fr;
  }

  .trial-modal__dialog{
    width:min(100vw - 16px, 1000px);
    margin:8px auto;
    max-height:calc(100vh - 16px);
    border-radius:24px;
  }

  .trial-modal__layout{
    padding:18px;
    gap:18px;
  }
}



/* ===== Shoof Lightbox ===== */
.shoof-lightbox{
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  pointer-events: none;
}

/* show only when open */
.shoof-lightbox.is-open{
  display: block;
  pointer-events: auto;
}

/* overlay */
.shoof-lightbox__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.82);
}

/* centered panel */
.shoof-lightbox__panel{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(1100px, 94vw);
  height: min(78vh, 720px);
  background: rgba(10,10,12,.92);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.55);
}

/* image stage */
.shoof-lightbox__stage{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

#shoofLightboxImg{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

/* close */
.shoof-lightbox__close{
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.35);
  color: #fff;
}

/* arrows */
.shoof-lightbox__nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.35);
  color: #fff;
}
.shoof-lightbox__prev{ left: 14px; }
.shoof-lightbox__next{ right: 14px; }


/* meta area */



/* ===== Shoof Lightbox (Smooth / Animated) ===== */
:root{
  --lb-bg: rgba(0,0,0,.72);
  --lb-panel: rgba(18,18,20,.72);
  --lb-border: rgba(255,255,255,.10);
  --lb-glow: rgba(0,0,0,.55);
}

.shoof-lightbox{
  position: fixed;
  inset: 0;
  z-index: 99999;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity .22s ease, visibility .22s ease;
}

.shoof-lightbox.is-open{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Backdrop with blur + subtle zoom */
.shoof-lightbox__backdrop{
  position: absolute;
  inset: 0;
  background: var(--lb-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  opacity: 0;
  transform: scale(1.02);
  transition: opacity .22s ease, transform .30s ease;
}
.shoof-lightbox.is-open .shoof-lightbox__backdrop{
  opacity: 1;
  transform: scale(1);
}

/* Panel: center + scale/slide-in */
.shoof-lightbox__panel{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-46%) scale(.96);
  width: min(1100px, 94vw);
  height: min(78vh, 740px);

  border-radius: 18px;
  border: 1px solid var(--lb-border);
  background: var(--lb-panel);
  overflow: hidden;

  box-shadow: 0 25px 80px var(--lb-glow);
  opacity: 0;

  transition: transform .30s cubic-bezier(.2,.8,.2,1), opacity .22s ease;
}
.shoof-lightbox.is-open .shoof-lightbox__panel{
  transform: translate(-50%,-50%) scale(1);
  opacity: 1;
}

/* Stage */
.shoof-lightbox__stage{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
}

/* Image: crossfade + slight pop */
#shoofLightboxImg{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;

  opacity: 0;
  transform: scale(.985);
  transition: opacity .18s ease, transform .26s ease;
}
#shoofLightboxImg.is-ready{
  opacity: 1;
  transform: scale(1);
}

/* Top controls */
.shoof-lightbox__close{
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;

  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.35);
  color: #fff;

  display: grid;
  place-items: center;

  transform: translateY(-4px);
  opacity: 0;
  transition: opacity .18s ease, transform .22s ease, background .18s ease;
}
.shoof-lightbox.is-open .shoof-lightbox__close{
  opacity: 1;
  transform: translateY(0);
}
.shoof-lightbox__close:hover{
  background: rgba(0,0,0,.55);
}

/* Nav arrows */
.shoof-lightbox__nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;

  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.30);
  color: #fff;

  display: grid;
  place-items: center;

  opacity: 0;
  transition: opacity .18s ease, transform .18s ease, background .18s ease;
}
.shoof-lightbox.is-open .shoof-lightbox__nav{ opacity: 1; }
.shoof-lightbox__prev{ left: 14px; }
.shoof-lightbox__next{ right: 14px; }
.shoof-lightbox__nav:hover{
  background: rgba(0,0,0,.55);
  transform: translateY(-50%) scale(1.04);
}

/* Bottom meta */
.shoof-lightbox__meta{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
  padding: 14px 16px;

  background: linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,0));
  color: #fff;

  opacity: 0;
  transform: translateY(10px);
  transition: opacity .18s ease, transform .22s ease;
}
.shoof-lightbox.is-open .shoof-lightbox__meta{
  opacity: 1;
  transform: translateY(0);
}

.shoof-lightbox__title{
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.2;
  letter-spacing: .2px;
}

.shoof-lightbox__dots{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

/* Dots like iOS */
.shoof-lightbox__dots button{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: rgba(255,255,255,.28);
  transition: transform .18s ease, background .18s ease, width .18s ease;
}
.shoof-lightbox__dots button:hover{
  background: rgba(255,255,255,.55);
  transform: scale(1.25);
}
.shoof-lightbox__dots button.is-active{
  background: rgba(255,255,255,.95);
  width: 22px; /* pill */
}

/* Body lock (use lb-open if you changed it) */
body.modal-open{ overflow: hidden; }

/* Mobile: tighter panel */
@media (max-width: 560px){
  .shoof-lightbox__panel{
    width: 96vw;
    height: 78vh;
    border-radius: 14px;
  }
  .shoof-lightbox__nav{ width: 44px; height: 44px; }
}

.shoof-home-faq {
  padding: 6px 0 10px;
}

.faq-card {
  padding: 22px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
}

.faq-head {
  margin-bottom: 16px;
}

.faq-title {
  margin: 0;
  font-weight: 900;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.faq-sub {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .72);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .03);
  padding: 14px 16px;
}

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

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

.faq-item p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .76);
  line-height: 1.75;
}





/* ===== Base Lightbox (shared) ===== */
.shoof-lightbox{
  position:fixed; inset:0; z-index:99999;
  opacity:0; visibility:hidden; pointer-events:none;
  transition: opacity .18s ease, visibility .18s ease;
}
.shoof-lightbox.is-open{ opacity:1; visibility:visible; pointer-events:auto; }
body.modal-open{ overflow:hidden; }

.shoof-lightbox__backdrop{
  position:absolute; inset:0;
  background:rgba(0,0,0,.86);
}

/* panel base */
.shoof-lightbox__panel{
  position:absolute; left:50%; top:50%;
  width:min(1200px, 96vw);
  height:min(82vh, 760px);
  transform:translate(-50%,-50%);
  overflow:hidden;
}
.shoof-lightbox__stage{ position:absolute; inset:0; display:grid; place-items:center; }
#shoofLightboxImg{
  max-width:100%; max-height:100%;
  object-fit:contain;
  opacity:0;
  transition: opacity .18s ease;
}
#shoofLightboxImg.is-ready{ opacity:1; }

/* controls base */
.shoof-lightbox__close,
.shoof-lightbox__nav{
  position:absolute; z-index:10;
  border:0; cursor:pointer; color:#fff;
  width:44px; height:44px; border-radius:999px;
  display:grid; place-items:center;
  background:rgba(255,255,255,.10);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform .15s ease, background .15s ease, opacity .15s ease;
}
.shoof-lightbox__close{ top:14px; right:14px; }
.shoof-lightbox__nav{ top:50%; transform:translateY(-50%); }
.shoof-lightbox__prev{ left:14px; }
.shoof-lightbox__next{ right:14px; }
.shoof-lightbox__close:hover,
.shoof-lightbox__nav:hover{ background:rgba(255,255,255,.18); transform:translateY(-50%) scale(1.05); }
.shoof-lightbox__close:hover{ transform:scale(1.05); }

.shoof-lightbox__meta{
  position:absolute; left:0; right:0; bottom:0; z-index:10;
  padding:14px 16px 18px;
  color:#fff;
}
.shoof-lightbox__meta::before{
  content:"";
  position:absolute; inset:-40px 0 0 0;
  background:linear-gradient(to top, rgba(0,0,0,.78), rgba(0,0,0,0));
  pointer-events:none;
}
.shoof-lightbox__title {
    position: relative;
    font-weight: 800;
    margin: 20px 20px 0px;
}
.shoof-lightbox__dots{ position: relative;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;}
.shoof-lightbox__dots button{
  width:8px; height:8px; border-radius:999px;
  border:0; background:rgba(255,255,255,.30);
  transition: width .18s ease, background .18s ease;
}
.shoof-lightbox__dots button.is-active{ width:26px; background:rgba(255,255,255,.95); }


.shoof-lightbox.lb-v1 .shoof-lightbox__backdrop{
  background:radial-gradient(1200px 700px at 50% 40%, rgba(255,255,255,.06), rgba(0,0,0,.88));
}

/* Catalog pages */
.catalog-hero {
  padding: 28px 0 8px;
}

.catalog-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, .8fr);
  gap: 18px;
  align-items: center;
  padding: 26px;
  border-radius: 28px;
  background:
    radial-gradient(1200px 420px at 100% 0%, rgba(255, 193, 7, .18), transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .22);
}

.catalog-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--primary);
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: .82rem;
}

.catalog-title {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.1;
  font-weight: 900;
  color: var(--text);
}

.catalog-subtitle {
  margin: 0;
  max-width: 70ch;
  color: var(--muted);
  line-height: 1.9;
}

.catalog-hero-stats {
  display: grid;
  gap: 12px;
}

.catalog-stat {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
}

.catalog-stat strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.35rem;
  color: var(--text);
}

.catalog-stat span {
  color: var(--muted);
  font-size: .92rem;
}

.catalog-shell {
  padding: 18px 0 42px;
}

.catalog-layout {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.catalog-panel {
  position: sticky;
  top: 96px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
}

.catalog-panel-head {
  margin-bottom: 16px;
}

.catalog-panel-head h2 {
  margin: 0 0 6px;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--text);
}

.catalog-panel-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.catalog-filter-grid {
  display: grid;
  gap: 12px;
}

.catalog-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: .92rem;
  font-weight: 800;
}

.catalog-input,
.catalog-select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .06);
  color: var(--text);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.catalog-input::placeholder {
  color: rgba(255, 255, 255, .55);
}

.catalog-input:focus,
.catalog-select:focus {
  border-color: rgba(255, 193, 7, .55);
  box-shadow: 0 0 0 4px rgba(255, 193, 7, .12);
  background: rgba(255, 255, 255, .08);
}

.catalog-select option {
  color: #111;
}

.catalog-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.catalog-btn,
.catalog-reset-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 14px;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.catalog-btn {
  flex: 1 1 auto;
  background: var(--primary);
  color: #111;
  box-shadow: 0 16px 38px rgba(255, 193, 7, .18);
}

.catalog-reset-btn {
  flex: 0 0 auto;
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, .12);
}

.catalog-btn:hover,
.catalog-reset-btn:hover,
.catalog-page:hover,
.catalog-clear-link:hover {
  transform: translateY(-2px);
}

.catalog-main {
  min-width: 0;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.catalog-results-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.catalog-clear-link {
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.catalog-active-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

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

.catalog-chip strong {
  color: var(--primary);
}

.catalog-grid {
  align-items: stretch;
}

.catalog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.catalog-card-body {
  display: grid;
  gap: 8px;
  padding: 12px;
}

.catalog-card-title {
  color: var(--text);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.catalog-card-desc {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.catalog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
}

.catalog-pagination-wrap {
  margin-top: 22px;
}

.catalog-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.catalog-page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  color: var(--text);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
}

.catalog-page.is-active {
  background: var(--primary);
  color: #111;
  border-color: transparent;
}

.catalog-page-ellipsis {
  pointer-events: none;
}

.catalog-empty,
.catalog-copy-block {
  margin-top: 20px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
}

.catalog-empty h2,
.catalog-copy-block h1 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--text);
}

.catalog-empty p,
.catalog-copy-block p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.catalog-copy-block p + p {
  margin-top: 10px;
}

.catalog-copy-block--intro {
  margin-top: 0;
  margin-bottom: 20px;
}

.catalog-copy-block--intro h1 {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

@media (max-width: 991px) {
  .catalog-hero-card,
  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .catalog-panel {
    position: static;
  }
}

@media (max-width: 576px) {
  .catalog-hero {
    padding-top: 18px;
  }

  .catalog-hero-card,
  .catalog-panel,
  .catalog-empty,
  .catalog-copy-block {
    padding: 18px;
    border-radius: 20px;
  }

  .catalog-toolbar,
  .catalog-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .catalog-clear-link {
    white-space: normal;
  }

  .catalog-pagination {
    flex-wrap: nowrap;
    overflow: auto;
    padding-bottom: 4px;
  }

  .catalog-page {
    flex: 0 0 auto;
  }
}

@media (max-width: 576px) {
  .shoof-features {
    padding: 28px 0 4px;
    margin-bottom: 36px;
  }

  .features-head {
    margin-bottom: 14px;
  }

  .features-title {
    font-size: 1.5rem;
  }

  .features-sub {
    font-size: .95rem;
    line-height: 1.7;
  }

  .shoof-stats {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 6px;
    margin: 16px -4px 20px;
    scroll-snap-type: x mandatory;
  }

  .shoof-stats::-webkit-scrollbar,
  .features-grid::-webkit-scrollbar,
  .shoof-content-section .sec-grid::-webkit-scrollbar,
  .shoof-content-section .sec-row::-webkit-scrollbar {
    height: 6px;
  }

  .stat-pill {
    flex: 0 0 150px;
    min-width: 150px;
    scroll-snap-align: start;
  }

  .features-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    margin-inline: -4px;
    scroll-snap-type: x mandatory;
  }

  .features-grid > [class*="col-"] {
    flex: 0 0 78vw;
    max-width: 78vw;
    padding-inline: 4px;
    scroll-snap-align: start;
  }

  .features-grid > [class*="col-"]:nth-child(n+5) {
    display: none;
  }

  .feature-card {
    min-height: 150px;
    padding: 15px 14px 16px;
    border-radius: 18px;
  }

  .feature-title {
    font-size: 1rem;
  }

  .feature-desc {
    font-size: .88rem;
    line-height: 1.6;
  }

  .live-strip-card {
    padding: 20px 16px 14px;
    border-radius: 24px;
  }

  .live-strip-head {
    margin-bottom: 12px;
  }

  .live-strip-title {
    font-size: 1.35rem;
  }

  .live-strip-sub {
    font-size: .92rem;
  }

  .live-box {
    width: 94px;
    height: 94px;
  }

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

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

  .section-head {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 12px;
  }

  .section-title {
    font-size: 1.15rem;
    line-height: 1.3;
  }

  .section-more {
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    font-size: .85rem;
  }

  .shoof-content-section .sec-grid {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 2px 8px;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
  }

  .shoof-content-section .sec-grid > * {
    flex: 0 0 42vw;
    max-width: 42vw;
    scroll-snap-align: start;
  }

  .shoof-content-section .sec-grid > .card-live {
    flex-basis: 44vw;
    max-width: 44vw;
  }

  .shoof-content-section .card-poster,
  .shoof-content-section .card-person,
  .shoof-content-section .card-live {
    border-radius: 16px;
  }

  .shoof-content-section .card-poster-title,
  .shoof-content-section .card-live-title,
  .shoof-content-section .card-person-title {
    font-size: .9rem;
  }

  .shoof-content-section .card-poster-title {
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding: 7px 8px;
  }

  .shoof-content-section .card-rating {
    top: 8px;
    inset-inline-start: 8px;
    padding: 5px 8px;
    font-size: 12px;
  }

  .shoof-content-section .sec-row {
    gap: 12px;
    padding: 4px 2px 8px;
  }

  .shoof-content-section .row-card,
  .shoof-content-section .sec-row.is-snap .row-card {
    width: 42vw;
    min-width: 42vw;
    height: auto;
  }

  .shoof-content-section .row-card-img {
    height: 60vw;
    min-height: 180px;
    max-height: 250px;
  }

  .shoof-content-section .row-card-title {
    padding: 9px 9px 11px;
    font-size: .88rem;
  }

  .shoof-content-section .row-card-live,
  .shoof-content-section .sec-row.is-snap .row-card-live {
    width: 44vw;
    min-width: 44vw;
  }

  .shoof-content-section .row-card-live .row-card-img {
    height: 44vw;
    min-height: 140px;
    max-height: 170px;
  }
}
