:root {
    --font-display: "Montserrat", sans-serif;
    --font-body: "Montserrat", sans-serif;
    --bg: #101115;
    --bg-soft: #17181d;
    --surface: #1c1d24;
    --surface-alt: #25262f;
    --surface-2: #20222a;
    --surface-elevated: rgba(35, 37, 45, 0.92);
    --border: rgba(255, 255, 255, 0.1);
    --border-strong: rgba(255, 255, 255, 0.16);
    --text: #f7f7f7;
    --text-muted: #c0c0c9;
    --text-soft: #9797a2;
    --text-dim: #777783;
    --brand: #e50914;
    --brand-dark: #b20710;
    --brand-bright: #ff2c35;
    --brand-glow: rgba(229, 9, 20, 0.28);
    --shadow-glow: 0 18px 44px rgba(229, 9, 20, 0.16);
    --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.32);
    --shadow-strong: 0 26px 80px rgba(0, 0, 0, 0.46);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --section-gap: clamp(2.5rem, 4vw, 4rem);
    --container-max: 1440px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
    background-color: var(--bg);
}

body {
  margin: 0;
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top right, rgba(229, 9, 20, 0.14), transparent 24%),
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.05), transparent 24%),
    linear-gradient(180deg, #101115 0%, #17181d 30%, #181a20 62%, #121318 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(229, 9, 20, 0.22);
}

button,
input,
select,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
  min-height: 100vh;
}

.site-container {
  width: min(100% - 2rem, var(--container-max));
  margin: 0 auto;
}

.text-muted-soft {
  color: var(--text-muted) !important;
}

.section-padding {
  padding: var(--section-gap) 0;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

    .section-heading h2,
    .section-heading h3 {
        font-family: var(--font-display);
        /*  font-weight: 800;*/
        font-weight: 600;
        font-size: clamp(1.35rem, 2vw, 1.75rem);
/*        letter-spacing: -0.045em;*/
        letter-spacing: 0.045em;
        margin: 0;
    }

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: #f1c4c7;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
}

.section-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--brand), transparent);
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  padding: 1rem 0;
  transition: background-color 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.topbar::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.topbar.is-scrolled {
  background: rgba(24, 25, 31, 0.8);
  backdrop-filter: blur(22px) saturate(145%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  padding: 0.75rem 0;
}

.topbar.is-scrolled::after {
  opacity: 1;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.22), transparent 30%),
    linear-gradient(135deg, var(--brand-bright), #7a0006);
  box-shadow: 0 10px 30px rgba(229, 9, 20, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.brand-mark span {
  font-size: 1.2rem;
  font-weight: 800;
}

.navbar-nav .nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  padding: 0.7rem 1rem !important;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus-visible {
  color: var(--text);
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus-visible::after {
  content: "";
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.25rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), rgba(229, 9, 20, 0.2));
}

.nav-icon-btn,
.profile-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.nav-icon-btn:hover,
.profile-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(229, 9, 20, 0.45);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow-glow);
}

.nav-tools {
  position: relative;
}

.nav-search {
  position: absolute;
  top: calc(100% + 0.9rem);
  right: 0;
  z-index: 1045;
  width: min(420px, calc(100vw - 2rem));
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.98);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}

.nav-search.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.nav-search__panel {
  position: relative;
  padding: 0.65rem;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(229, 9, 20, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(20, 20, 24, 0.96), rgba(10, 10, 12, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(22px);
}

.nav-search__panel::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 18px;
  width: 14px;
  height: 14px;
  background: rgba(18, 18, 22, 0.94);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  transform: rotate(45deg);
}

.nav-search__field {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.2rem 0.25rem;
}

.nav-search__field i {
  color: #d8d8de;
  font-size: 1rem;
}

.nav-search__field input {
  flex: 1;
  height: 52px;
  border: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 0 1rem;
}

.nav-search__field input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.nav-search__field input:focus {
  outline: 0;
  box-shadow: inset 0 0 0 1px rgba(229, 9, 20, 0.35), 0 0 0 0.18rem rgba(229, 9, 20, 0.12);
  background: rgba(255, 255, 255, 0.07);
}

.nav-search__close {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.nav-search__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.2rem 0.35rem 0.35rem 3rem;
}

.nav-search__meta span {
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--text-muted);
  font-size: 0.74rem;
}

.nav-search-launch {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.95rem;
  padding: 1rem 1.05rem;
  border-radius: 22px;
  cursor: pointer;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(229, 9, 20, 0.22), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(17, 18, 24, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.3);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.nav-search-launch::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 15%, rgba(255, 255, 255, 0.12) 50%, transparent 85%);
  opacity: 0;
  transform: translateX(-40%);
  transition: opacity 0.28s ease, transform 0.45s ease;
  pointer-events: none;
}

.nav-search-launch:hover,
.nav-search-launch:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(229, 9, 20, 0.28);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(229, 9, 20, 0.08);
  outline: none;
}

.nav-search-launch:hover::before,
.nav-search-launch:focus-visible::before {
  opacity: 1;
  transform: translateX(0);
}

.nav-search-launch__icon,
.nav-search-launch__arrow {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-search-launch__icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  color: #fff;
  font-size: 1.15rem;
  background:
    linear-gradient(180deg, rgba(229, 9, 20, 0.28), rgba(229, 9, 20, 0.12)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.nav-search-launch__copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  flex: 1;
}

.nav-search-launch__eyebrow {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-search-launch__title {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-search-launch__arrow {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.28s ease, background-color 0.28s ease, color 0.28s ease;
}

.nav-search-launch:hover .nav-search-launch__arrow,
.nav-search-launch:focus-visible .nav-search-launch__arrow {
  transform: translate(2px, -2px);
  color: #fff;
  background: rgba(229, 9, 20, 0.14);
}

.profile-pill {
  gap: 0.75rem;
  padding: 0 0.6rem 0 0.35rem;
}

.profile-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-account {
    position: relative;
}

.nav-account__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-width: 138px;
    height: 42px;
    padding: 0 0.95rem 0 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)), rgba(23, 24, 29, 0.88);
    color: var(--text);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 14px 30px rgba(0, 0, 0, 0.22);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

    .nav-account__toggle:hover,
    .nav-account__toggle:focus-visible,
    .nav-account.show .nav-account__toggle {
        transform: translateY(-1px);
        border-color: rgba(229, 9, 20, 0.4);
        color: #fff;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 18px 34px rgba(0, 0, 0, 0.28), 0 0 0 0.18rem rgba(229, 9, 20, 0.12);
    }

    .nav-account__toggle::after {
        width: 8px;
        height: 8px;
        margin-left: 0.1rem;
        border: 0;
        border-right: 1.5px solid rgba(255, 255, 255, 0.7);
        border-bottom: 1.5px solid rgba(255, 255, 255, 0.7);
        transform: rotate(45deg) translateY(-1px);
        transition: transform 0.22s ease, border-color 0.22s ease;
    }

.nav-account.show .nav-account__toggle::after {
    transform: rotate(-135deg) translateX(-1px);
    border-color: #fff;
}

.nav-account__label {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: -0.015em;
}

    .nav-account__label i {
        font-size: 1rem;
        color: #f2bcc0;
    }

.nav-account__menu {
    min-width: 220px;
    padding: 0.55rem;
    margin-top: 0.8rem !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: radial-gradient(circle at top right, rgba(229, 9, 20, 0.15), transparent 30%), linear-gradient(180deg, rgba(20, 20, 25, 0.98), rgba(10, 10, 14, 0.99));
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.42);
}

.nav-account__item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.82rem 0.9rem;
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: background-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

    .nav-account__item i {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.72);
        transition: color 0.22s ease;
    }

    .nav-account__item:hover,
    .nav-account__item:focus-visible,
    .nav-account__item:active {
        background: linear-gradient(90deg, rgba(229, 9, 20, 0.14), rgba(255, 255, 255, 0.04));
        color: #fff;
        transform: translateX(1px);
    }

        .nav-account__item:hover i,
        .nav-account__item:focus-visible i,
        .nav-account__item:active i {
            color: #fff;
        }

.offcanvas-ott {
  background:
    radial-gradient(circle at top right, rgba(229, 9, 20, 0.12), transparent 28%),
    rgba(28, 29, 35, 0.97);
  color: var(--text);
  border-left: 1px solid var(--border);
  backdrop-filter: blur(24px);
}

.offcanvas-ott .nav-link {
  padding: 0.8rem 0;
  font-size: 1rem;
}

    .offcanvas-ott .nav-account--drawer {
        width: 100%;
        margin-bottom: 1rem;
    }

        .offcanvas-ott .nav-account--drawer .nav-account__toggle {
            width: 100%;
            min-width: 0;
            justify-content: space-between;
            height: 54px;
            padding: 0 1rem;
            border-radius: 18px;
        }

        .offcanvas-ott .nav-account--drawer .nav-account__menu {
            width: 100%;
            min-width: 0;
        }

@media (max-width: 575.98px) {
    .nav-account__toggle {
        min-width: 126px;
        padding-left: 0.85rem;
        padding-right: 0.9rem;
    }
}

.btn-ott {
  --bs-btn-padding-y: 0.86rem;
  --bs-btn-padding-x: 1.35rem;
  --bs-btn-font-weight: 600;
  --bs-btn-border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid transparent;
  letter-spacing: -0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn-ott:hover {
  transform: translateY(-2px);
}

.btn-ott-primary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent),
    linear-gradient(135deg, #f51420, var(--brand-dark));
  color: #fff;
  box-shadow: 0 16px 32px var(--brand-glow), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-ott-primary:hover,
.btn-ott-primary:focus-visible {
  background: linear-gradient(135deg, #ff1c28, #97040c);
  color: #fff;
}

.btn-ott-secondary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.07));
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(14px);
}

.btn-ott-secondary:hover,
.btn-ott-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
}

.btn-ott-outline {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(229, 9, 20, 0.45);
  color: #fff;
}

.btn-ott-outline:hover,
.btn-ott-outline:focus-visible {
  background: rgba(229, 9, 20, 0.12);
  color: #fff;
}

.hero-section {
    position: relative;
    /*padding-top: 7rem;*/
    padding-top: 6rem;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 140px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent);
  pointer-events: none;
  z-index: 3;
}

.hero-carousel .carousel-item {
  position: relative;
  min-height: 88vh;
  border-radius: 0 0 36px 36px;
  overflow: hidden;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media img,
.hero-preview,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
    position: absolute;
    inset: 0;
    /*  opacity: 0;*/
    opacity: 1;
    transition: opacity 0.7s ease;
}

.hero-preview {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.1)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.14));
/*  opacity: 0;*/
  opacity : 1;
  transition: opacity 0.7s ease;
}

.hero-preview::after {
/*  content: "Preview Ready";*/
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 10, 12, 0.56);
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.carousel-item.is-preview-active .hero-preview {
  opacity: 1;
}

.carousel-item.is-video-playing .hero-video {
  opacity: 1;
}

.carousel-item.is-video-playing .hero-media > img {
  opacity: 0.18;
  transform: scale(1.04);
}

.hero-media > img {
  transition: opacity 0.7s ease, transform 1.8s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 19, 24, 0.44) 0%, rgba(18, 19, 24, 0.2) 28%, rgba(18, 19, 24, 0.06) 60%, rgba(18, 19, 24, 0.02) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.01) 0%, rgba(18, 19, 24, 0.01) 42%, rgba(18, 19, 24, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 8.5rem 0 6.25rem;
}

.hero-logo {
  max-width: 280px;
  margin-bottom: 1.4rem;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.34));
}

.hero-title {
  max-width: 540px;
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 5.3vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.hero-meta,
.meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  color: #fff;
  font-size: 0.82rem;
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-copy {
  max-width: 560px;
  margin: 1.4rem 0 1.85rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.carousel-control-prev,
.carousel-control-next {
  width: 7%;
}

.hero-carousel .carousel-indicators {
  justify-content: flex-start;
  margin: 0;
  left: 0;
  right: auto;
  bottom: 2.25rem;
  padding-left: max(1rem, calc((100vw - min(100% - 2rem, var(--container-max))) / 2));
  gap: 0.5rem;
}

    .hero-carousel .carousel-indicators [data-bs-target] {
        /*width: 44px;*/
        width: 22px;
        height: 5px;
        border: 0;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.22);
        opacity: 1;
        transition: width 0.3s ease, background-color 0.3s ease;
    }

    .hero-carousel .carousel-indicators .active {
        /*width: 58px;*/
        width: 33px;
        background: linear-gradient(90deg, var(--brand), #ff6373);
    }

.surface-panel {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.surface-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, rgba(229, 9, 20, 0.7), transparent);
}

.playlist-section {
  position: relative;
  padding: 1.25rem 0;
}

.playlist-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  opacity: 0.45;
}

/*.playlist-row {
    display: grid;
    grid-auto-flow: column;*/
    /*--playlist-card-width: 180px;*/
    /*--playlist-card-width: 184px;
    --playlist-card-width-mobile: 150px;
    --playlist-card-aspect-ratio: 2 / 3;
    --playlist-gap: 1rem;
    grid-auto-columns: minmax(var(--playlist-card-width), 1fr);
    gap: var(--playlist-gap);
    overflow-x: auto;
    overflow-y: visible;
    padding: 0.65rem 0.2rem 1.45rem;
    scroll-snap-type: x proximity;
    scroll-padding-left: 0.2rem;
    scrollbar-width: none;
}*/

.playlist-row {
    display: grid;
    grid-auto-flow: column;
    /*--playlist-card-width: 180px;*/
    --playlist-card-width: 184px;
    --playlist-card-width-mobile: 150px;
    --playlist-card-aspect-ratio: 2 / 3;
    --playlist-gap: 1rem;
    grid-auto-columns: var(--playlist-card-width);
    justify-content: start;
    align-items: start;
    gap: var(--playlist-gap);
    overflow-x: auto;
    overflow-y: visible;
    padding: 0.65rem 0.2rem 1.45rem;
    scroll-snap-type: x proximity;
    scroll-padding-left: 0.2rem;
    scrollbar-width: none;
    cursor: grab;
}

.playlist-row::-webkit-scrollbar {
  display: none;
}

    .playlist-row.is-dragging {
        cursor: grabbing;
        scroll-snap-type: none;
    }

        .playlist-row.is-dragging,
        .playlist-row.is-dragging * {
            user-select: none;
        }

body.is-playlist-dragging {
    user-select: none;
}

.playlist-rail {
  position: relative;
}

.playlist-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
}

.playlist-viewport::before,
.playlist-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 36px;
  pointer-events: none;
  z-index: 2;
}

.playlist-viewport::before {
  left: 0;
/*  background: linear-gradient(90deg, rgba(5, 5, 6, 0.85), transparent);*/
}

.playlist-viewport::after {
  right: 0;
/*  background: linear-gradient(270deg, rgba(5, 5, 6, 0.85), transparent);*/
}

.playlist-row--poster {
  --playlist-card-width: 184px;
}

.playlist-row--landscape {
  --playlist-card-width: 260px;
}

.playlist-row--large {
  --playlist-card-width: 320px;
}

.playlist-row--square {
  --playlist-card-width: 220px;
}

.playlist-row--top10 {
  --playlist-card-width: 220px;
}

.playlist-row--compact {
  --playlist-card-width: 152px;
  --playlist-gap: 0.8rem;
}

/*.movie-card {
  position: relative;
  border-radius: 22px;
  overflow: visible;
  cursor: pointer;
  scroll-snap-align: start;
}*/

.movie-card {
    box-sizing: border-box;
    position: relative;
    inline-size: var(--playlist-card-width);
    min-inline-size: var(--playlist-card-width);
    max-inline-size: var(--playlist-card-width);
    border-radius: 22px;
    overflow: visible;
    cursor: pointer;
    scroll-snap-align: start;
}

.movie-card__frame {
  position: relative;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #22242c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, filter 0.35s ease;
}

.movie-card__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.015) 12%, rgba(0, 0, 0, 0.01) 34%, rgba(22, 23, 28, 0.62) 100%);
}

.movie-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.45s ease;
}

.movie-card__content {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 1rem 1rem 1.05rem;
}

.movie-card__title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.movie-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.65rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
}

.movie-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(229, 9, 20, 0.22), rgba(229, 9, 20, 0.12));
  color: #ffd8db;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(229, 9, 20, 0.2);
}

.movie-card__actions {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: flex;
  gap: 0.55rem;
}

.movie-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(24, 24, 30, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.movie-card__hover {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: -1.2rem;
  z-index: 3;
  padding: 1rem 1rem 1.05rem;
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(229, 9, 20, 0.1), transparent 34%),
    rgba(31, 33, 39, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-strong);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  backdrop-filter: blur(16px);
  transition: opacity 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
}

.movie-card__hover p {
  margin: 0.65rem 0 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  line-height: 1.6;
}

.movie-card:hover,
.movie-card:focus-within {
  z-index: 8;
}

.movie-card:hover .movie-card__frame,
.movie-card:focus-within .movie-card__frame,
.movie-card.is-active .movie-card__frame {
  transform: translateY(-8px) scale(1.035);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(229, 9, 20, 0.08);
  border-color: rgba(229, 9, 20, 0.32);
  filter: saturate(1.04);
}

.movie-card:hover .movie-card__image,
.movie-card:focus-within .movie-card__image,
.movie-card.is-active .movie-card__image {
  transform: scale(1.08);
}

.movie-card:hover .movie-card__hover,
.movie-card:focus-within .movie-card__hover,
.movie-card.is-active .movie-card__hover {
  opacity: 1;
  transform: translateY(0);
  border-color: rgba(229, 9, 20, 0.22);
}

.movie-card--poster {
    /*aspect-ratio: 2 / 3;*/
    aspect-ratio: var(--playlist-card-aspect-ratio, 2 / 3);
}

.movie-card--landscape {
  aspect-ratio: 16 / 9;
}

.movie-card--square {
  aspect-ratio: 1 / 1;
}

.movie-card--large {
  aspect-ratio: 1.3 / 1;
}

.progress-track {
  width: 100%;
  height: 4px;
  margin-top: 0.8rem;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  overflow: hidden;
}

.progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), #ff6b74);
}

.progress-68 {
  width: 68%;
}

.progress-42 {
  width: 42%;
}

.progress-21 {
  width: 21%;
}

.top-10-card {
  position: relative;
  padding-left: 2.4rem;
  font-family: var(--font-display);
}

.movie-card--top10 {
  aspect-ratio: 2.15 / 3;
}

.top-10-rank {
    position: absolute;
    left: -0.2rem;
    bottom: 0.35rem;
    z-index: 1;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(4.8rem, 9vw, 7rem);
    font-weight: 800;
    line-height: 0.8;
    letter-spacing: -0.09em;
    color: rgba(255, 255, 255, 0.08);
    /*text-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
    -webkit-text-stroke: 1px rgba(229, 9, 20, 0.44);*/
    text-shadow: 0 12px 28px rgb(211 18 18 / 35%);
    -webkit-text-stroke: 1px rgb(255 255 255 / 44%);
}

.row-actions {
  display: flex;
  gap: 0.75rem;
}

.row-scroll-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05));
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.playlist-edge-btn {
    position: absolute;
    top: 50%;
    /*z-index: 4;*/
    z-index: 1301;
    transform: translateY(-50%);
}

.playlist-edge-btn--prev {
  left: 0.5rem;
}

.playlist-edge-btn--next {
  right: 0.5rem;
}

.playlist-edge-btn.is-disabled,
.playlist-edge-btn:disabled {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) scale(0.92);
}

.row-scroll-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(229, 9, 20, 0.45);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-glow);
}

.ott-modal .modal-content {
  background:
    radial-gradient(circle at top right, rgba(229, 9, 20, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(33, 35, 42, 0.985), rgba(17, 18, 22, 0.985));
  border: 1px solid rgba(255, 255, 255, 0.08);
  /*border-radius: 30px;
  overflow-x: hidden;
  overflow-y: auto;*/
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.58);
  max-height: min(88vh, 940px);
  min-height: 0;
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.16) transparent;
}

.ott-modal .modal-content::-webkit-scrollbar {
  width: 8px;
}

.ott-modal .modal-content::-webkit-scrollbar-track {
  background: transparent;
}

.ott-modal .modal-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.ott-modal .modal-content::-webkit-scrollbar-thumb:hover {
  background: rgba(229, 9, 20, 0.32);
}

.ott-modal.modal {
  --bs-modal-margin: 1.2rem;
}

.ott-modal .modal-dialog {
  display: flex;
  align-items: center;
  min-height: calc(100vh - (var(--bs-modal-margin) * 2));
}

.ott-modal.modal.fade .modal-dialog {
  transform: translateY(26px) scale(0.96);
  transition: transform 0.38s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.38s ease;
}

.ott-modal.modal.show .modal-dialog {
  transform: translateY(0) scale(1);
}

.ott-modal .modal-dialog {
  max-width: 1040px;
}

.ott-modal .modal-backdrop,
.modal-backdrop.show {
  opacity: 0.82;
}

.ott-modal .modal-content::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 220px;
  height: 1px;
  background: linear-gradient(90deg, rgba(229, 9, 20, 0.85), transparent);
  z-index: 2;
}

.ott-modal .modal-header,
.ott-modal .modal-footer {
  border: 0;
}

.ott-modal .btn-close {
  --bs-btn-close-bg: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 1;
  position: absolute;
  top: 1rem;
  right: 1rem;
/*  z-index: 3;*/
  z-index:6;
}

.ott-modal .btn-close::before {
  content: "\f62a";
  font-family: "bootstrap-icons";
  color: #fff;
  font-size: 1rem;
}

.modal-hero {
    position: relative;
    /*min-height: clamp(250px, 38vh, 360px);*/
    min-height: clamp(475px, 42vh, 500px);
    overflow: hidden;
    background: #09090b;
}

.modal-hero img,
.modal-hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

    .modal-hero video {
        position: absolute;
        inset: 0;
        /*  opacity: 0;*/
        opacity: 1;
        transition: opacity 0.7s ease;
        z-index: 5;
    }

.modal-content.is-video-playing .modal-hero video {
  opacity: 1;
}

.modal-content.is-video-playing .modal-hero > img {
  opacity: 0.24;
  transform: scale(1.03);
}

.modal-hero > img {
  transition: opacity 0.7s ease, transform 1.4s ease;
}

.modal-hero__play {
  position: absolute;
  top: 1.35rem;
  left: 1.35rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(20, 20, 24, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.modal-content.is-video-playing .modal-hero__play {
  opacity: 0;
  transform: translateY(-6px);
}

.modal-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 24%, rgba(229, 9, 20, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.1) 28%, rgba(12, 12, 15, 0.72) 74%, rgba(12, 12, 15, 0.96) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.1) 54%, rgba(0, 0, 0, 0.24) 100%);
}

.modal-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 92px;
  background: linear-gradient(180deg, rgba(9, 9, 11, 0), rgba(9, 9, 11, 0.96));
  z-index: 1;
}

.movie-popup__body {
  padding: 1.6rem 1.8rem 2rem;
  overflow: visible;
  position: relative;
  background:
    linear-gradient(180deg, rgba(31, 33, 40, 0.98), rgba(18, 19, 24, 1));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 1;
}

.movie-popup__body-inner {
  display: block;
  padding-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.movie-popup__body::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 72px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 70%);
}

.movie-popup__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.05em;
  margin: 0 0 0.95rem;
}

.movie-popup__logo {
  width: min(100%, 260px);
  margin-bottom: 1.1rem;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.36));
}

.movie-popup__description {
  max-width: 760px;
  margin: 0 0 1.65rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.85;
  font-size: 1rem;
}

.movie-popup__section {
  margin-top: 1.85rem;
}

.movie-popup__section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.movie-popup__section-heading h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.cast-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cast-card {
  padding: 1rem;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(34, 36, 43, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.cast-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 9, 20, 0.24);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34);
}

.cast-card__avatar {
  width: 82px;
  height: 82px;
  margin: 0 auto 0.9rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28);
}

.cast-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cast-card__name {
  margin: 0 0 0.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.cast-card__role {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.84rem;
}

.movie-popup__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
  padding-top: 0.2rem;
}

.movie-popup__related {
  position: relative;
  padding-bottom: 0.25rem;
}

.movie-popup__related .playlist-viewport {
  border-radius: 24px;
}

.movie-popup__related .playlist-row {
  --playlist-card-width: 180px;
  padding-bottom: 1rem;
}

.movie-popup__related .playlist-edge-btn {
  top: 42%;
}

body.modal-popup-open {
  overflow: hidden;
  touch-action: none;
}

.cast-list,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag-list span,
.cast-list span {
  padding: 0.48rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-size: 0.82rem;
}

.load-more-wrap {
  padding: 2.4rem 0 4.8rem;
  text-align: center;
}

.footer-ott {
  position: relative;
  padding: 3rem 0 2.8rem;
  color: var(--text-soft);
  background:
    radial-gradient(circle at top right, rgba(229, 9, 20, 0.1), transparent 22%),
    linear-gradient(180deg, rgba(24, 25, 31, 0.92), rgba(15, 16, 20, 0.98));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-ott::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229, 9, 20, 0.45), transparent);
}

.footer-ott__top {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.8fr) minmax(0, 0.9fr);
  padding-bottom: 2.1rem;
}

.footer-ott__brand {
  max-width: 500px;
}

.footer-ott__logo {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #fff;
  margin-bottom: 0.9rem;
}

.footer-ott__logo::first-letter {
  color: var(--brand);
}

.footer-ott__brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.85;
}

.footer-ott__links,
.footer-ott__download {
  display: grid;
  align-content: start;
  gap: 0.85rem;
}

.footer-ott__links h3,
.footer-ott__download h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 0.25rem;
}

.footer-ott__links a {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.76);
  transition: transform 0.24s ease, color 0.24s ease;
}

.footer-ott__links a i {
  color: var(--brand);
  font-size: 0.78rem;
}

.footer-ott__links a:hover {
  transform: translateX(4px);
  color: #fff;
}

.footer-store {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-height: 70px;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(12, 12, 14, 0.92);
  color: #fff;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.footer-store:hover {
  transform: translateY(-2px);
  border-color: rgba(229, 9, 20, 0.35);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
}

.footer-store i {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.92);
}

.footer-store small {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  line-height: 1.2;
}

.footer-store strong {
  display: block;
  font-size: 1rem;
  line-height: 1.3;
}

.footer-ott__bottom {
  padding-top: 1.45rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-ott__bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 1.8rem;
  margin-bottom: 1rem;
}

.footer-ott__bottom-links a {
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.24s ease;
}

.footer-ott__legal {
  max-width: 760px;
}

.footer-ott__legal p {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
}

.footer-ott__legal span {
  color: var(--brand);
  font-weight: 700;
}

.footer-ott a {
  color: var(--text-soft);
}

.footer-ott a:hover {
  color: #fff;
}

.details-hero {
  position: relative;
  padding: 10rem 0 4rem;
  min-height: 78vh;
  overflow: hidden;
}

.details-hero__media,
.details-hero__overlay {
  position: absolute;
  inset: 0;
}

.details-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.details-hero__overlay {
  background:
    radial-gradient(circle at 80% 24%, rgba(229, 9, 20, 0.2), transparent 24%),
    linear-gradient(90deg, rgba(6, 6, 7, 0.95) 0%, rgba(6, 6, 7, 0.78) 34%, rgba(6, 6, 7, 0.32) 72%, rgba(6, 6, 7, 0.14) 100%),
    linear-gradient(180deg, rgba(5, 5, 7, 0.22), rgba(5, 5, 7, 0.99) 90%);
}

.details-hero__content {
  position: relative;
  z-index: 2;
}

.details-title {
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 5.2vw, 5.8rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.06em;
  margin: 0 0 1rem;
}

.details-grid {
  position: relative;
  z-index: 2;
  margin-top: -3rem;
}

.info-card,
.screenshot-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    linear-gradient(180deg, rgba(20, 20, 24, 0.98), rgba(10, 10, 12, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.info-card {
  padding: 1.6rem;
  height: 100%;
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.info-list {
  display: grid;
  gap: 1rem;
}

.info-list strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #fff;
}

.related-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.screenshot-card {
  overflow: hidden;
  border-radius: 20px;
}

.screenshot-card img {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.screenshot-card:hover img {
  transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1199.98px) {
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-ott__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cast-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .hero-carousel .carousel-item {
    min-height: 76vh;
  }

  .hero-content {
    padding: 7rem 0 5.4rem;
  }

  .hero-carousel .carousel-indicators {
    padding-left: 1rem;
  }

  .section-padding {
    padding: 2.5rem 0;
  }

  .movie-card__hover {
    display: none;
  }

  .details-grid {
    margin-top: -2rem;
  }

  .nav-search {
    width: min(360px, calc(100vw - 2rem));
  }

  .movie-popup__body {
    padding: 1.45rem 1.45rem 1.7rem;
  }

  .ott-modal .modal-content {
    max-height: min(90vh, 900px);
  }
}

@media (min-width: 992px) {
  .ott-modal.modal {
    --bs-modal-margin: 1rem;
  }

  .ott-modal .modal-dialog {
    width: min(100%, 980px);
    min-height: calc(100vh - 2rem);
  }

    .ott-modal .modal-content {
        /*max-height: min(86vh, 920px);*/
        max-height: min(105vh, 920px);
    }

    .modal-hero {
        /*min-height: clamp(290px, 42vh, 360px);*/
        min-height: clamp(475px, 42vh, 500px);
    }

  .modal-hero__play {
    top: 1rem;
    left: 1rem;
    padding: 0.6rem 0.85rem;
    font-size: 0.86rem;
  }

  .movie-popup__body {
    padding: 1.35rem 1.55rem 1.8rem;
  }

  .movie-popup__body::before {
    height: 84px;
  }

  .movie-popup__title {
    font-size: clamp(1.9rem, 2.6vw, 2.45rem);
    margin-bottom: 0.8rem;
  }

  .movie-popup__logo {
    width: min(100%, 220px);
    margin-bottom: 0.95rem;
  }

  .movie-popup__description {
    max-width: 720px;
    margin-bottom: 1.45rem;
    font-size: 0.98rem;
    line-height: 1.78;
  }

  .movie-popup__section {
    margin-top: 1.55rem;
  }

  .movie-popup__section-heading {
    margin-bottom: 0.85rem;
  }

  .cast-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
  }

  .cast-card {
    padding: 0.9rem 0.75rem;
  }

  .cast-card__avatar {
    width: 74px;
    height: 74px;
    margin-bottom: 0.75rem;
  }

  .movie-popup__related .playlist-row {
    --playlist-card-width: 160px;
    gap: 0.85rem;
    padding-bottom: 1.25rem;
  }

  .movie-popup__related .playlist-edge-btn {
    top: 38%;
  }
}

@media (max-width: 767.98px) {
  .site-container {
    width: min(100% - 1.25rem, var(--container-max));
  }

  .hero-section {
    padding-top: 5.8rem;
  }

  .hero-carousel .carousel-item {
    min-height: 68vh;
    border-radius: 0 0 26px 26px;
  }

  .hero-content {
    padding: 5.9rem 0 4.5rem;
  }

  .hero-title,
  .details-title {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .hero-copy {
    font-size: 0.94rem;
    line-height: 1.72;
  }

    /*.playlist-row {*/
        /*grid-auto-columns: minmax(150px, 1fr);*/
        /*grid-auto-columns: minmax(var(--playlist-card-width-mobile), 1fr);
        gap: 0.85rem;
        padding-bottom: 1.1rem;
    }*/

    .playlist-row {
        grid-auto-columns: var(--playlist-card-width);
        gap: 0.85rem;
        padding-bottom: 1.1rem;
    }

  .playlist-row--poster {
    --playlist-card-width: 150px;
  }

  .playlist-row--landscape {
    --playlist-card-width: 220px;
  }

  .playlist-row--large {
    --playlist-card-width: 280px;
  }

  .playlist-row--square {
    --playlist-card-width: 180px;
  }

  .playlist-row--top10 {
    --playlist-card-width: 180px;
  }

  .top-10-card {
    padding-left: 1.5rem;
  }

  .top-10-rank {
    font-size: 3.8rem;
    left: -0.1rem;
  }

  .footer-ott__top,
  .related-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .modal-body-copy,
  .modal-hero-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .modal-hero {
    min-height: 230px;
  }

  .playlist-edge-btn {
    width: 38px;
    height: 38px;
  }

  .cast-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .movie-popup__body {
    padding: 1.2rem 1.1rem 1.55rem;
  }

  .movie-popup__body::before {
    height: 52px;
  }

    /*.movie-card {
        inline-size: var(--playlist-card-width-mobile) !important;
        min-inline-size: var(--playlist-card-width-mobile) !important;
        max-inline-size: var(--playlist-card-width-mobile) !important;
    }*/
}

@media (max-width: 575.98px) {
  .hero-actions,
  .meta-pills,
  .hero-meta {
    gap: 0.6rem;
  }

  .btn-ott {
    width: 100%;
    justify-content: center;
  }

  .hero-meta .meta-chip,
  .meta-pills .meta-chip {
    font-size: 0.78rem;
  }

  .section-heading {
    align-items: flex-start;
/*    flex-direction: column;*/
     flex-direction:row;
  }

  .row-actions {
    display: none;
  }

  .playlist-edge-btn {
    top: auto;
    bottom: -0.3rem;
    transform: none;
  }

  .playlist-edge-btn--prev {
    left: auto;
    right: 3.25rem;
  }

  .playlist-edge-btn--next {
    right: 0.5rem;
  }

  .hero-logo {
    max-width: 210px;
  }

  .modal-hero {
    min-height: 200px;
  }

  .nav-search {
    left: 0;
    right: 0;
    width: 100%;
  }

  .nav-search__panel::before {
    display: none;
  }

  .nav-search__meta {
    padding-left: 0.35rem;
  }

  .movie-popup__title {
    font-size: 1.8rem;
  }

  .movie-popup__description {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .cast-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .cast-card {
    padding: 0.85rem;
  }

  .cast-card__avatar {
    width: 72px;
    height: 72px;
  }

  .movie-popup__related .playlist-row {
    --playlist-card-width: 150px;
  }

  .ott-modal.modal {
    --bs-modal-margin: 0.75rem;
  }

  .ott-modal .modal-content {
    max-height: 92vh;
    border-radius: 24px;
  }
}

.currentYear {
    color: #fff !important;
}

/*country dialog code css start*/
/* Dropdown container */
.iti__country-list {
    background-color: #0b0b0b !important;
    color: #fff !important;
    border: 1px solid #222 !important;
    z-index: 12;
}

/* Each country item */
.iti__country {
    color: #fff !important;
}

    /* Hover / active state */
    .iti__country:hover,
    .iti__country.iti__highlight {
        background-color: #1a1a1a !important;
    }

/* Selected flag area */
/*.iti__selected-flag {
    background-color: #0b0b0b !important;
    color: #fff !important;
}*/



/* Dial code text */
.iti__dial-code {
    color: #aaa !important;
}

/* Search input inside dropdown (if enabled) */
.iti__search-input {
    background-color: #111 !important;
    color: #fff !important;
    border: 1px solid #333 !important;
}

/* Scrollbar (optional nice touch) */
.iti__country-list::-webkit-scrollbar {
    width: 6px;
}

.iti__country-list::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 4px;
}

/*country dialog code css end*/

/*mobile navigation bar css start*/
@media (max-width: 991.98px) {
    .offcanvas-ott {
        background: radial-gradient(circle at top right, rgba(229, 9, 20, .14), transparent 30%), linear-gradient(180deg, rgba(11, 14, 27, .98), rgba(6, 10, 20, .98));
        border-left: 1px solid rgba(255, 255, 255, .08);
    }

        .offcanvas-ott .offcanvas-header {
            padding: 1.35rem 1.4rem 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, .06);
        }

        .offcanvas-ott .offcanvas-title,
        .offcanvas-ott .btn-close {
            color: #fff;
        }

        .offcanvas-ott .offcanvas-body {
            padding: 1.25rem 1.4rem 1.5rem;
        }

        .offcanvas-ott .nav-search__panel::before,
        .offcanvas-ott .nav-link::after {
            display: none !important;
            content: none !important;
        }

        .offcanvas-ott .nav-link {
            display: block;
            padding: .95rem 1rem;
            margin-bottom: .45rem;
            border-radius: 16px;
            color: rgba(255,255,255,.86);
            font-weight: 600;
            background: transparent;
            transition: background-color .2s ease, color .2s ease, border-color .2s ease;
        }

            .offcanvas-ott .nav-link.active,
            .offcanvas-ott .nav-link:hover,
            .offcanvas-ott .nav-link:focus,
            .offcanvas-ott .nav-link:focus-visible {
                color: #fff;
                background: linear-gradient(90deg, rgba(229, 9, 20, .14), rgba(255,255,255,.06));
                outline: none;
                box-shadow: inset 0 0 0 1px rgba(229, 9, 20, .24);
            }

        .offcanvas-ott .profile-pill {
            justify-content: flex-start;
            padding: 0;
            margin: .15rem 0 1.1rem;
            background: transparent;
            box-shadow: none;
        }
}

/*mobile navigation bar css end*/


/* Kableone button variations start*/
.btn-ko {
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 600;
    letter-spacing: .02em;
    transition: all .2s ease;
}

    .btn-ko:hover {
        filter: brightness(1.1);
        transform: translateY(-1px);
    }

/* Outline */
.btn-ko-outline {
    background: transparent;
    color: var(--brand);
    border: 1px solid var(--brand);
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 600;
    transition: all .2s ease;
}

    .btn-ko-outline:hover {
        background: rgba(229,9,20,.12);
    }

/* Ghost */
.btn-ko-ghost {
    background: transparent;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 999px;
}

    .btn-ko-ghost:hover {
        background: rgba(255,255,255,.08);
    }

/* Sizes */
.btn-ko-sm {
    padding: 6px 22px;
    font-size: 0.85rem;
}

.btn-ko-lg {
    padding: 14px 26px;
    font-size: 1.05rem;
}

/* Kableone button variations end*/


/* ================================
   ICON ONLY DOWNLOAD ROW
================================ */

.footer-download-icons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Row layout */
.footer-icons-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

    /* Each icon */
    .footer-icons-row a {
        display: flex;
        align-items: center;
        justify-content: center;
/*        width: 42px;*/
        width:81px;
        height: 42px;
        border-radius: 8px;
        background: rgba(255,255,255,0.05);
        text-decoration: none;
        color: #fff;
        transition: all 0.2s ease;
    }

    /* Icons size */
    .footer-icons-row i {
        font-size: 18px;
    }

/* VIDA / ROKU text as icons */
.vidaa-icon,
.roku-icon {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Subtle hover (NO RED) */
.footer-icons-row a:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {
    .footer-icons-row {
        gap: 12px;
    }

        .footer-icons-row a {
/*            width: 36px;*/
            width:81px;
            height: 36px;
        }

        .footer-icons-row i {
            font-size: 16px;
        }
}