/* OPTIMIZED / DEDUPED: s26 streaming UI
   Что сделано:
   - убраны повторяющиеся :root (переменные объявлены один раз)
   - объединены одинаковые правила (.s26-badge, img safety, повторные блоки MAIN/HOME)
   - сокращены селекторы где можно (оставил привязку к .grid-items/.s26 для безопасности)
   - удалён RU/EN switch block (s26-lang) — раз EN убираем
*/

/* ========== TOKENS ========== */
:root{
  --s26-r: 22px;
  --s26-r2: 16px;

  --s26-stroke: rgba(255,255,255,.10);
  --s26-stroke2: rgba(255,255,255,.18);

  --s26-glass: rgba(255,255,255,.06);
  --s26-glass2: rgba(255,255,255,.09);

  --s26-shadow: 0 18px 55px rgba(0,0,0,.38);
  --s26-shadow2: 0 28px 85px rgba(0,0,0,.46);

  --s26-grad: linear-gradient(135deg, rgba(124,92,255,.95), rgba(38,208,255,.75));

  --neo-bg: #070814;
  --neo-card: rgba(255,255,255,.06);
  --neo-stroke: rgba(255,255,255,.10);
  --neo-txt: rgba(255,255,255,.92);
  --neo-dim: rgba(255,255,255,.66);
  --neo-p1: #8a2be2;
  --neo-p2: #00e5ff;
  --neo-hot: #ff3df2;
}

/* ========== GLOBAL SAFETY ========== */
.grid-items .s26-card img,
.s26-fs img{
  max-width: 100%;
  height: auto;
}

/* ========== COMMON BADGE ========== */
.s26-badge,
.item__label.s26-badge{
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  white-space: nowrap;
  font-weight: 700;
}

/* if badges wrap weirdly */
.s26-card__badges,
.s26-fs__badges{
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
}

/* ========== MAIN/HOME (shell/header/topmenu etc) ========== */
body{
  background:
    radial-gradient(900px 600px at 15% 0%, rgba(124,92,255,.22), transparent 55%),
    radial-gradient(820px 520px at 100% 25%, rgba(38,208,255,.14), transparent 58%),
    #0b0f14;
}

body.s26 .wrapper{
  background:
    radial-gradient(900px 600px at 15% 0%, rgba(124,92,255,.22), transparent 55%),
    radial-gradient(820px 520px at 100% 25%, rgba(38,208,255,.14), transparent 58%);
}

body.s26 .wrapper__container--main{
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: var(--s26-shadow2);
  border-radius: 0 0 var(--s26-r) var(--s26-r);
}

/* sticky glass header */
body.s26 .s26-hdr{
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  background: color-mix(in srgb, var(--bg) 70%, transparent);
  border-bottom: 1px solid var(--s26-stroke);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

body.s26 .s26-hdr .btn-square{
  width: 44px;
  height: 44px;
  border-radius: 16px;
}

/* search */
body.s26 .s26-hdr .s26-search{
  flex: 1 1 auto;
  min-width: 280px;
}

body.s26 .s26-search .search-block__input,
body.s26 .s26-search .search-block__input:focus{
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--s26-stroke);
  background: rgba(0,0,0,.12);
  box-shadow: 0 10px 24px rgba(0,0,0,.20);
}

body.s26 .s26-search .search-block__btn{
  width: 46px;
  height: 44px;
  border-radius: 999px;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
}

/* push actions to right */
body.s26 .s26-hdr .s26-hdr__btns,
body.s26 .s26-hdr .s26-hdr__login{ margin-left: auto; }
body.s26 .s26-hdr .s26-share{ margin-left: 0; }

/* nav */
body.s26 .s26-nav{
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: color-mix(in srgb, var(--bg-darker) 70%, transparent);
  overflow: hidden;
}

/* topmenu horizontal scroll */
body.s26 .s26-topmenu{
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  padding: 10px var(--indent);
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
body.s26 .s26-topmenu::-webkit-scrollbar{ height: 0; }

/* topmenu pills */
body.s26 .s26-topmenu a{
  scroll-snap-align: start;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.10);
  color: rgba(255,255,255,.90);
  line-height: 44px;
  white-space: nowrap;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

/* neutralize legacy .topmenu span styles */
body.s26 .s26-topmenu a span{ all: unset; display: inline; }

body.s26 .s26-topmenu a .s26-topmenu__txt{
  all: unset;
  display: inline-block;
  font: inherit;
  color: inherit;
  font-weight: 700;
  letter-spacing: .2px;
  line-height: 1;
}

body.s26 .s26-topmenu a i{
  position: static;
  width: 18px;
  display: inline-flex;
  justify-content: center;
  opacity: .9;
}

body.s26 .s26-topmenu a:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
}

body.s26 .s26-topmenu a.is-active{
  background: var(--s26-grad);
  border-color: transparent;
  box-shadow: 0 10px 26px rgba(124,92,255,.22);
  color: #fff;
}

/* counter pill */
body.s26 .s26-pill{
  font-style: normal;
  font-size: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  line-height: 1;
}

/* hero */
body.s26 .s26-hero{
  border-bottom: 1px solid rgba(255,255,255,.06);
  background:
    radial-gradient(900px 420px at 20% 0%, rgba(124,92,255,.14), transparent 60%),
    radial-gradient(700px 380px at 90% 30%, rgba(38,208,255,.10), transparent 65%);
}

/* grid control */
body.s26 .s26-sect .sect__grid-select{
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--s26-stroke);
  background: rgba(0,0,0,.10);
  box-shadow: none;
}
body.s26 .s26-sect .sect__grid-select button{ height: 42px; width: 44px; }

body.grid1.s26 .s26-sect .sect__grid-select button:first-child,
body.grid2.s26 .s26-sect .sect__grid-select button:nth-child(2),
body.grid3.s26 .s26-sect .sect__grid-select button:nth-child(3){
  background: var(--s26-grad);
  border-color: transparent;
}

/* sidebar */
body.s26 .cols__sidebar{ border-left: 1px solid rgba(255,255,255,.06); }
body.s26 .sb__title{
  background: rgba(0,0,0,.28);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* owl nav */
body.s26 .owl-prev,
body.s26 .owl-next{
  border: 1px solid var(--s26-stroke);
  border-radius: 14px;
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: none;
}
body.s26 .owl-prev:hover,
body.s26 .owl-next:hover{ border-color: var(--s26-stroke2); }

/* ========== SHORTSTORY CARD (.s26-card) ========== */
.grid-items .s26-card{
  border-radius: var(--s26-r);
  border: 1px solid var(--s26-stroke);
  background: linear-gradient(180deg, var(--s26-glass), rgba(255,255,255,.03));
  box-shadow: var(--s26-shadow);
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.grid-items .s26-card:hover{
  transform: translateY(-2px);
  border-color: var(--s26-stroke2);
  background: linear-gradient(180deg, var(--s26-glass2), rgba(255,255,255,.04));
  box-shadow: var(--s26-shadow2);
}

.grid-items .s26-card__head{ padding: 14px 14px 10px; }

.grid-items .s26-card__title{
  text-transform: none;
  letter-spacing: .2px;
  font-size: 16px;
  line-height: 1.22;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.grid-items .s26-card__title:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* fav button */
.grid-items .s26-card__fav > span,
.grid-items .s26-card__fav > a{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.14);
  color: rgba(255,255,255,.90);
}

/* badges & ext rating (above overlay) */
.grid-items .s26-card__badges{
  position:absolute;
  left: 10px;
  top: 10px;
  z-index: 3;
}


/* trailer button base */
.grid-items .s26-card__trailer{
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* info & footer */
.grid-items .s26-card__info{ padding: 12px 14px 0; }
.grid-items .s26-card__list{ font-size: 13.5px; line-height: 1.4; }
.grid-items .s26-card__foot{ padding: 12px 14px 14px; gap: 10px; }

.grid-items .s26-card__cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: var(--s26-grad);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

/* grid2: compact */
body.grid2 .grid-items .s26-card .s26-card__info,
body.grid2 .grid-items .s26-card .item-main__info,
body.grid2 .grid-items .s26-card .item-main__footer .item__ratingscore-ring,
body.grid2 .grid-items .s26-card .item__rating{ display: none; }

body.grid2 .grid-items .s26-card{ padding: 10px; }
body.grid2 .grid-items .s26-card__head{ padding: 10px 4px 8px; }
body.grid2 .grid-items .s26-card__foot{ padding: 10px 4px 4px; }

@media (max-width: 520px){
  .grid-items .s26-card__head{ padding: 12px 12px 8px; }
  .grid-items .s26-card__info{ padding: 10px 12px 0; }
  .grid-items .s26-card__foot{ padding: 10px 12px 12px; }
}

/* ========== GRID3 HOVER: show trailer pill, hide play ========== */
.grid-items .s26-card__img .s26-card__link{
  position: absolute;
  inset: 0;
  display: block;
  z-index: 2;
}

/* hide play always (your new concept) */
.grid-items .s26-card .s26-card__play{ display: none !important; }

/* trailer pill overlay */
.grid-items .s26-card .item__btn-trailer.s26-card__trailer{
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;

  height: 44px;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.32);
  color: rgba(255,255,255,.96);
  z-index: 7;

  opacity: 0;
  transform: translateY(10px);
  transition: opacity .18s ease, transform .18s ease, background .18s ease, border-color .18s ease;
}
.grid-items .s26-card .item__btn-trailer.s26-card__trailer:hover{
  background: rgba(0,0,0,.38);
  border-color: rgba(255,255,255,.26);
}
.grid-items .s26-card .item__btn-trailer.s26-card__trailer::after{
  content: attr(data-text);
  font: inherit;
  font-weight: 700;
  letter-spacing: .2px;
}

/* fav in grid3 on hover */
body.grid3 .grid-items .s26-card .s26-card__fav > span,
body.grid3 .grid-items .s26-card .s26-card__fav > a{
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .18s ease, transform .18s ease, background .18s ease, border-color .18s ease;
}

@media (hover: hover){
  .grid-items .s26-card:hover .item__btn-trailer.s26-card__trailer,
  .grid-items .s26-card .s26-card__img:hover .item__btn-trailer.s26-card__trailer{
    opacity: 1;
    transform: translateY(0);
  }
  body.grid3 .grid-items .s26-card:hover .s26-card__fav > span,
  body.grid3 .grid-items .s26-card:hover .s26-card__fav > a{
    opacity: 1;
    transform: translateY(0);
  }
}
@media (hover: none){
  .grid-items .s26-card .item__btn-trailer.s26-card__trailer{
    opacity: 1;
    transform: none;
  }
  body.grid3 .grid-items .s26-card .s26-card__fav > span,
  body.grid3 .grid-items .s26-card .s26-card__fav > a{
    opacity: 1;
    transform: none;
  }
}

/* favorites state */
.grid-items .s26-card__fav .fa-star{ color: rgba(255,255,255,.65); }
.grid-items .s26-card__fav .fav-added{
  color: #ffcc3a !important;
  border-color: rgba(255,204,58,.35) !important;
  background: rgba(255,204,58,.12) !important;
  box-shadow: 0 10px 24px rgba(255,204,58,.12);
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
}

/* ========== FULLSTORY (.s26-fs) ========== */
.s26-fs__card{
  padding: 16px;
  border-radius: var(--s26-r);
  border: 1px solid var(--s26-stroke);
  background: linear-gradient(180deg, var(--s26-glass), rgba(255,255,255,.03));
  box-shadow: var(--s26-shadow);
}

.s26-fs__head{
  padding: 2px 2px 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 14px;
}
.s26-fs__title{
  text-transform: none;
  letter-spacing: .2px;
  line-height: 1.15;
}

.s26-fs__fav > span,
.s26-fs__fav > a{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.14);
  color: rgba(255,255,255,.90);
}

/* poster */
.s26-fs__poster{ max-width: 260px; }
.s26-fs__img{
  position: relative;
  border-radius: var(--s26-r2);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255,255,255,.08);
}
.s26-fs__img img{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
}
.s26-fs__img::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(60% 60% at 50% 25%, rgba(0,0,0,0) 35%, rgba(0,0,0,.34) 100%),
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.58));
  pointer-events:none;
  z-index: 1;
}

.s26-fs__badges{ position:absolute; left: 12px; top: 12px; z-index: 2; }

/* watch button */
.s26-fs__watchBtn{
  width: 100%;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: var(--s26-grad);
  color: #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
}
.s26-fs__watchBtn span{ font-weight: 700; }

.s26-fs__list li{
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.10);
}

.s26-fs__foot{
  padding-top: 6px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.s26-fs__textCard{
  margin-top: 16px;
  border-radius: var(--s26-r);
  border: 1px solid var(--s26-stroke);
  background: linear-gradient(180deg, var(--s26-glass), rgba(255,255,255,.03));
  box-shadow: var(--s26-shadow);
}
.s26-fs__caption{ padding: 16px 16px 0; margin: 0; text-transform: none; }
.s26-fs__text{ padding: 16px; }

.s26-fs__subtitle{
  background: rgba(0,0,0,.22);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.s26-fs__tabs button.is-active,
.s26-fs__tabs button:hover{
  background: var(--s26-grad) !important;
  color: #fff !important;
}

@media (max-width: 980px){ .s26-fs__poster{ max-width: 230px; } }
@media (max-width: 760px){
  .s26-fs__card{ padding: 12px; }
  .s26-fs__poster{ max-width: 100%; }
  .item.item-page.s26-fs__card{ flex-direction: column; }
}

/* ========== HERO (neo-hero/swiper) ========== */
.neo-hero{ margin: 18px 0 26px; }

.neo-hero__swiper{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 15% 20%, rgba(138,43,226,.35), transparent 60%),
    radial-gradient(900px 500px at 80% 30%, rgba(0,229,255,.22), transparent 55%),
    rgba(255,255,255,.02);
  border: 1px solid var(--neo-stroke);
  box-shadow:
    0 18px 60px rgba(0,0,0,.55),
    0 0 0 1px rgba(138,43,226,.15) inset;
}

.neo-hero__slide{ position: relative; min-height: 420px; }
@media (max-width: 980px){ .neo-hero__slide{ min-height: 360px; } }
@media (max-width: 560px){ .neo-hero__slide{ min-height: 320px; } }

.neo-hero__bg{ position:absolute; inset:0; display:block; }
.neo-hero__img{
  position:absolute; inset:-40px;
  width: calc(100% + 80px);
  height: calc(100% + 80px);
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.02);
}

.neo-hero__overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(7,8,20,.92) 0%, rgba(7,8,20,.72) 48%, rgba(7,8,20,.18) 100%),
    radial-gradient(900px 420px at 20% 20%, rgba(138,43,226,.30), transparent 60%),
    radial-gradient(900px 420px at 55% 70%, rgba(0,229,255,.18), transparent 60%);
  pointer-events:none;
}

.neo-hero__content{ position: relative; padding: 36px 36px 30px; max-width: 760px; }
@media (max-width: 560px){ .neo-hero__content{ padding: 22px; } }

.neo-hero__kicker{
  display:inline-flex;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--neo-dim);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.neo-hero__title{
  margin-top: 14px;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.08;
  font-weight: 800;
  color: var(--neo-txt);
  text-shadow: 0 12px 40px rgba(0,0,0,.6);
}

.neo-hero__meta{
  margin-top: 12px;
  display:flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: var(--neo-dim);
  font-size: 14px;
}
.neo-hero__genres{ max-width: 560px; }

.neo-hero__cta{ margin-top: 18px; display:flex; gap: 10px; flex-wrap:wrap; }

.neo-btn{
  height: 44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--neo-txt);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.neo-btn:hover{ transform: translateY(-1px); box-shadow: 0 12px 30px rgba(0,0,0,.45); }
.neo-btn--primary{
  border-color: rgba(0,229,255,.35);
  background: linear-gradient(135deg, rgba(0,229,255,.18), rgba(138,43,226,.18));
  box-shadow: 0 0 0 1px rgba(0,229,255,.12) inset, 0 0 24px rgba(0,229,255,.12);
}
.neo-btn--ghost{ background: rgba(0,0,0,.18); }

.neo-hero__badges{ margin-top: 16px; display:flex; gap: 8px; flex-wrap:wrap; }
.neo-badge{
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.neo-badge--hot{ border-color: rgba(255,61,242,.35); box-shadow: 0 0 22px rgba(255,61,242,.12); }
.neo-badge--kp{ border-color: rgba(255,199,0,.30); }
.neo-badge--imdb{ border-color: rgba(255,226,80,.22); }

.neo-hero__nav{ position:absolute; inset: 0; pointer-events:none; }
.neo-hero__btn{
  pointer-events:auto;
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.24);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.neo-hero__btn--prev{ left: 14px; }
.neo-hero__btn--next{ right: 14px; }
.neo-hero__btn--prev::before,
.neo-hero__btn--next::before{
  content:"";
  display:block; width: 10px; height: 10px;
  border-top: 2px solid rgba(255,255,255,.86);
  border-right: 2px solid rgba(255,255,255,.86);
  margin: 16px auto 0;
}
.neo-hero__btn--prev::before{ transform: rotate(-135deg); }
.neo-hero__btn--next::before{ transform: rotate(45deg); }

.neo-hero__pagination{
  position:absolute;
  left: 22px;
  bottom: 18px;
  width: auto !important;
}
.neo-hero__pagination .swiper-pagination-bullet{
  width: 20px; height: 4px;
  border-radius: 99px;
  background: rgba(255,255,255,.22);
  opacity: 1;
}
.neo-hero__pagination .swiper-pagination-bullet-active{
  background: linear-gradient(90deg, var(--neo-p2), var(--neo-p1));
  box-shadow: 0 0 18px rgba(0,229,255,.20);
}

/* ========== OWL TOP-CAROU / POSTER CARDS ========== */
.s26-hero .s26-hero__rail{ padding: 0; }

#top-carou.owl-carousel{ display:block !important; }
#top-carou .owl-stage-outer{ overflow: hidden; }
#top-carou .owl-stage{
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch;
}
#top-carou .owl-item{
  display: flex;
  height: auto;
  padding: 0 10px;
}
#top-carou .owl-item > *{ width: 100%; }

/* neon poster card */
.neo-pcard{
  width: 100%;
  max-width: 240px;
  aspect-ratio: 2 / 3;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 16px 50px rgba(0,0,0,.55);
  position: relative;
}
.neo-pcard__link{
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: rgba(255,255,255,.92);
}
.neo-pcard__img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  filter: saturate(1.07) contrast(1.06);
}
.neo-pcard__glow{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(420px 260px at 20% 15%, rgba(138,43,226,.35), transparent 60%),
    radial-gradient(420px 260px at 85% 30%, rgba(0,229,255,.22), transparent 55%),
    linear-gradient(to top, rgba(7,8,20,.82) 0%, rgba(7,8,20,.30) 55%, rgba(7,8,20,.06) 100%);
  pointer-events: none;
}
.neo-pcard__q{
  position: absolute;
  top: 12px;
  left: 12px;
  max-width: calc(100% - 24px);
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.95);
  background: linear-gradient(135deg, rgba(0,229,255,.22), rgba(138,43,226,.22));
  border: 1px solid rgba(0,229,255,.22);
  box-shadow: 0 0 0 1px rgba(138,43,226,.12) inset, 0 0 24px rgba(0,229,255,.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.neo-pcard__bottom{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 14px 12px;
}
.neo-pcard__title{
  font-size: 16px;
  font-weight: 900;
  line-height: 1.15;
  text-shadow: 0 12px 30px rgba(0,0,0,.65);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.neo-pcard__year{ margin-top: 6px; font-size: 13px; color: rgba(255,255,255,.72); }
.neo-pcard__hr{ margin: 10px 0 8px; height: 1px; background: rgba(255,255,255,.14); }
.neo-pcard__rates{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: 900;
  font-size: 13px;
}
.neo-pcard__rate{ display: inline-flex; align-items: center; gap: 6px; }
.neo-pcard__rate--kp .neo-pcard__lbl{ color: #ff8a00; }
.neo-pcard__rate--imdb .neo-pcard__lbl{ color: #ffe250; }
.neo-pcard__val{ color: rgba(255,255,255,.95); }

.neo-pcard:hover{
  border-color: rgba(0,229,255,.22);
  box-shadow:
    0 18px 60px rgba(0,0,0,.62),
    0 0 0 1px rgba(0,229,255,.12) inset,
    0 0 34px rgba(138,43,226,.18);
}
.neo-pcard:hover .neo-pcard__img{
  transform: scale(1.03);
  transition: transform .25s ease;
}

/* logo font */
.s26-logo{
  font-family: "Space Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.s26-logo span{ font-family: inherit; font-weight: 800; letter-spacing: .02em; }

/* sidebar options grid */
.s26-sb__content{ padding: 16px; }

.s26-optgrid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 22px;
}
.s26-optcol__title{
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 10px;
}
.s26-optcol__title--mt{ margin-top: 14px; }
.s26-optlist{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.s26-optlist a{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  text-decoration: none;
  color: var(--tt, #cfd6e4);
  padding: 6px 8px;
  border-radius: 8px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  transition: .2s ease;
}
.s26-optlist a:hover{
  border-color: rgba(255,255,255,.14);
  box-shadow: 0 0 0 1px rgba(0,0,0,.25), 0 0 18px rgba(0, 255, 255, .08);
  transform: translateY(-1px);
}
.s26-count{ opacity: .7; font-size: 12px; white-space: nowrap; }
.s26-optlist--dash li > a::before{ content: "—"; opacity: .45; margin-right: 8px; }

@media (max-width: 760px){
  .s26-optgrid{ grid-template-columns: 1fr; }
}
/* === s26-card: общий тёмный фон (градиент) снизу постера + KP слева / IMDb справа ===
   ВАЖНО: вставь в самый конец app.css, чтобы перебить старые правила
*/

/* Кнопка трейлера — вниз */
.s26-card__trailer{
  position: absolute;
  left: 12px;
  bottom: 12px;
  top: auto;
  transform: none;
  z-index: 5;
}