:root {
  --utv-tv-bg: #000;
  --utv-tv-panel: rgba(0, 0, 0, 0.9);
  --utv-tv-cyan: #23bec8;
  --utv-tv-pink: #d61971;
  --utv-tv-topbar-height: 82px;
}

body.tv-home-page {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  background: var(--utv-tv-bg);
  color: #fff;
}

body.tv-home-page > header,
body.tv-home-page > footer,
body.tv-home-page .back-to-top {
  display: none;
}

.tv-home-topbar {
  position: sticky;
  top: 0;
  z-index: 1050;
  display: flex;
  max-width: 100vw;
  width: 100%;
  min-height: var(--utv-tv-topbar-height);
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.25rem, 3vw, 3rem);
  padding: 0 clamp(1.4rem, 4.4vw, 5rem);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.92) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  pointer-events: auto;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.tv-home-topbar.tv-home-topbar--scrolled {
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.68) 0%, rgba(8, 8, 8, 0.48) 100%);
  border-bottom-color: rgba(255, 255, 255, 0.11);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  backdrop-filter: blur(22px) saturate(150%);
}

.tv-home-topbar__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.tv-home-topbar__brand img {
  width: clamp(76px, 6.5vw, 118px);
  max-height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.36));
}

.tv-home-topbar__nav,
.tv-home-topbar__actions {
  display: flex;
  align-items: center;
  gap: clamp(0.35rem, 0.8vw, 0.75rem);
}

.tv-home-topbar__nav {
  flex: 1 1 auto;
  justify-content: center;
}

.tv-home-topbar__actions {
  flex: 0 0 auto;
  justify-content: flex-end;
}

.tv-home-topbar__item,
.tv-home-topbar__action,
.tv-home-topbar__profile-toggle,
.tv-home-topbar__login {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.82rem, 0.8vw, 0.96rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
  padding: 0 1rem;
  text-decoration: none;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.tv-home-topbar__item::after {
  position: absolute;
  right: 1rem;
  bottom: 0.42rem;
  left: 1rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--utv-tv-pink), var(--utv-tv-cyan));
  content: '';
  opacity: 0;
  transform: scaleX(0.38);
  transition: opacity 160ms ease, transform 160ms ease;
}

.tv-home-topbar__item:hover,
.tv-home-topbar__item:focus-visible,
.tv-home-topbar__action:hover,
.tv-home-topbar__action:focus-visible,
.tv-home-topbar__profile-toggle:hover,
.tv-home-topbar__profile-toggle:focus-visible,
.tv-home-topbar__profile-toggle[aria-expanded='true'],
.tv-home-topbar__login:hover,
.tv-home-topbar__login:focus-visible,
.tv-home-topbar__item--active {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.075);
  color: #fff;
  outline: none;
  transform: translateY(-1px);
}

.tv-home-topbar__item--active::after {
  opacity: 1;
  transform: scaleX(1);
}

.tv-home-topbar__item--active .tv-home-topbar__icon {
  color: var(--utv-tv-pink);
  filter: drop-shadow(0 0 7px rgba(214, 25, 113, 0.42));
}

.tv-home-topbar__icon,
.tv-home-topbar__action .ph {
  font-size: 1.25rem;
}

.tv-home-topbar__action {
  width: 42px;
  padding: 0;
}

.tv-home-topbar__icon-action span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.tv-home-topbar__search {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  overflow: hidden;
  transition: width 220ms ease, flex-basis 220ms ease;
}

.tv-home-topbar__search--open,
.tv-home-topbar__search:focus-within {
  width: clamp(16rem, 23vw, 22rem);
  flex-basis: clamp(16rem, 23vw, 22rem);
}

.tv-home-topbar__search-form {
  display: flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  padding: 0 0.32rem 0 1rem;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.tv-home-topbar__search--open .tv-home-topbar__search-form,
.tv-home-topbar__search:focus-within .tv-home-topbar__search-form,
.tv-home-topbar__search-form:hover {
  border-color: rgba(35, 190, 200, 0.26);
  background: rgba(10, 10, 10, 0.74);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.24), inset 0 0 0 1px rgba(35, 190, 200, 0.08);
}

.tv-home-topbar__search-submit {
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.18rem;
  padding: 0;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.tv-home-topbar__search-submit:hover,
.tv-home-topbar__search-submit:focus-visible,
.tv-home-topbar__search--open .tv-home-topbar__search-submit {
  background: rgba(35, 190, 200, 0.14);
  color: var(--utv-tv-cyan);
  outline: none;
}

.tv-home-topbar__search-submit:active {
  transform: scale(0.94);
}

.tv-home-topbar__search-submit span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.tv-home-topbar__search-input {
  width: 0;
  min-width: 0;
  flex: 1 1 auto;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity 180ms ease, transform 220ms ease;
}

.tv-home-topbar__search--open .tv-home-topbar__search-input,
.tv-home-topbar__search:focus-within .tv-home-topbar__search-input {
  width: auto;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.tv-home-topbar__search-input::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

.tv-home-topbar__login {
  border-color: rgba(35, 190, 200, 0.42);
  background: linear-gradient(135deg, var(--utv-tv-cyan), #2dd7df);
  color: #041113;
  box-shadow: 0 10px 30px rgba(35, 190, 200, 0.24);
  padding: 0 1.25rem;
}

.tv-home-topbar__login:hover,
.tv-home-topbar__login:focus-visible {
  background: linear-gradient(135deg, #35dbe4, var(--utv-tv-cyan));
  color: #041113;
}

.tv-home-topbar__profile {
  position: relative;
}

.tv-home-topbar__profile-toggle {
  gap: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.065);
  padding: 0.28rem 0.72rem 0.28rem 0.34rem;
}

.tv-home-topbar__profile-toggle img {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.12);
}

.tv-home-topbar__profile-toggle .ph {
  color: var(--utv-tv-cyan);
  font-size: 0.95rem;
}

.tv-home-topbar__profile-name {
  max-width: clamp(90px, 9vw, 150px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tv-home-topbar__profile-menu {
  min-width: 280px;
  margin-top: 0.85rem !important;
  padding: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(10, 10, 10, 0.97);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.58);
}

.tv-home-topbar__profile-summary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.45rem;
  padding: 0.7rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.tv-home-topbar__profile-summary img {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  object-fit: cover;
}

.tv-home-topbar__profile-summary span {
  min-width: 0;
}

.tv-home-topbar__profile-summary strong,
.tv-home-topbar__profile-summary small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tv-home-topbar__profile-summary strong {
  font-size: 0.95rem;
  line-height: 1.2;
}

.tv-home-topbar__profile-summary small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.tv-home-topbar__profile-menu .dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.78rem 0.85rem;
}

.tv-home-topbar__profile-menu .dropdown-item:hover,
.tv-home-topbar__profile-menu .dropdown-item:focus {
  background: linear-gradient(90deg, rgba(214, 25, 113, 0.2), rgba(35, 190, 200, 0.12));
  color: #fff;
}

.tv-home-topbar__profile-menu .dropdown-item .ph {
  color: var(--utv-tv-cyan);
  font-size: 1.15rem;
}

.tv-home-topbar__profile-menu .dropdown-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 0.45rem 0;
}

.tv-home-topbar__profile-menu .tv-home-topbar__logout,
.tv-home-topbar__profile-menu .tv-home-topbar__logout .ph {
  color: #ff6b9e;
}

.tv-home {
  min-height: 100vh;
  overflow: visible;
  background: #000;
}

.tv-account-page {
  min-height: 100vh;
  padding-top: clamp(2rem, 4vh, 3.5rem);
  background: #000;
}

.tv-movies-banner {
  margin: 0;
  background: #000;
}

.tv-home #banner-section {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
}

.tv-home .slick-banner,
.tv-home .slick-banner .slick-list,
.tv-home .slick-banner .slick-track,
.tv-home .slick-banner .slick-slide,
.tv-home .slick-banner .slick-slide > div,
.tv-home .slick-banner .slick-item {
  height: clamp(560px, 82vh, 880px);
}

.tv-home .slick-banner {
  position: relative;
}

.tv-home .slick-banner .slick-item {
  position: relative;
  isolation: isolate;
  overflow: visible;
  min-height: 0;
  background: #000;
}

.tv-home .slick-banner .slick-item::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, #000 0%, #000 22%, rgba(0, 0, 0, 0.78) 36%, rgba(0, 0, 0, 0.12) 56%, transparent 76%),
    linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.78) 16%, rgba(0, 0, 0, 0.34) 32%, transparent 52%);
  content: '';
  pointer-events: none;
}

.tv-home .slick-banner .slide-video {
  top: 0 !important;
  right: 0 !important;
  bottom: auto !important;
  left: auto !important;
  width: 75vw !important;
  max-width: 75vw;
  height: 100% !important;
  aspect-ratio: 16 / 9;
  background: #000;
  opacity: 1;
  object-fit: cover !important;
  object-position: center right;
}

.tv-home .slick-banner .movie-content {
  z-index: 2 !important;
  justify-content: flex-end !important;
  min-height: 0 !important;
  padding: 0 7vw 4.9vh 5.4vw;
}

.tv-home .slick-banner .movie-content .container-fluid {
  margin: 0;
  padding: 0;
}

.tv-home .slick-banner .movie-content .container-fluid > .d-flex {
  max-width: min(540px, 42vw) !important;
  align-items: flex-start !important;
  margin-right: auto !important;
  margin-left: 0 !important;
  padding-bottom: 0 !important;
  text-align: left !important;
}

.tv-home .tv-home-hero-copy {
  display: flex;
  max-width: min(520px, 36vw);
  flex-direction: column;
  align-items: flex-start;
}

.tv-home .tv-home-hero-title-image {
  display: block;
  width: auto;
  max-width: min(520px, 31vw);
  max-height: clamp(130px, 20vh, 260px);
  margin: 0 0 2.15vh;
  object-fit: contain;
  object-position: left bottom;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.58));
}

.tv-home .tv-home-hero-title {
  margin: 0 0 1.5vh;
  color: #fff;
  font-size: clamp(2rem, 3.4vw, 4.25rem);
  font-weight: 800 !important;
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.55);
}

.tv-home .slick-banner .movie-content h4 {
  margin-bottom: 14px !important;
  color: #fff;
  font-size: clamp(2rem, 3.4vw, 4.25rem);
  font-weight: 800 !important;
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.55);
}

.tv-home .tv-home-hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin: 0 0 1.25vh;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.82rem, 0.85vw, 1rem);
  font-weight: 700;
}

.tv-home .tv-home-hero-meta span + span {
  position: relative;
}

.tv-home .tv-home-hero-meta span + span::before {
  position: absolute;
  top: 50%;
  left: -12px;
  color: rgba(255, 255, 255, 0.44);
  content: '•';
  transform: translateY(-50%);
}

.tv-home .tv-home-hero-rating {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  padding: 0.18rem 0.54rem;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
}

.tv-home .tv-home-hero-description {
  display: -webkit-box;
  overflow: hidden;
  max-width: min(470px, 32vw);
  margin: 0 0 1.15vh;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(0.95rem, 1vw, 1.13rem);
  font-weight: 500;
  line-height: 1.5;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.62);
}

.tv-home .tv-home-hero-genres {
  margin: 0 0 2.15vh;
  color: rgba(255, 255, 255, 0.48);
  font-size: clamp(0.78rem, 0.78vw, 0.95rem);
  font-weight: 700;
}

.tv-home .slick-banner .movie-content .badge {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(8px);
}

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

.tv-home .tv-home-hero-actions .btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 9px;
  border: 0;
  border-radius: 9px !important;
  padding: 0.78rem 1.55rem;
  box-shadow: none;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.tv-home .tv-home-hero-actions .btn:hover,
.tv-home .tv-home-hero-actions .btn:focus-visible {
  transform: scale(1.04);
  box-shadow: 0 0 0 3px rgba(35, 190, 200, 0.25), 0 9px 26px rgba(0, 0, 0, 0.34);
}

.tv-home .tv-home-hero-actions .btn-danger {
  background: var(--utv-tv-cyan);
  color: #fff !important;
  box-shadow: 0 0 18px rgba(35, 190, 200, 0.34), 0 10px 28px rgba(0, 0, 0, 0.3);
}

.tv-home .tv-home-hero-actions .tv-home-hero-info {
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  backdrop-filter: blur(9px);
}

.tv-home .tv-home-hero-action-divider {
  width: 1px;
  height: 32px;
  margin: 0 3px 0 7px;
  background: rgba(255, 255, 255, 0.2);
}

.tv-home .tv-home-hero-actions .tv-home-hero-icon-btn {
  width: 50px;
  min-width: 50px;
  height: 50px;
  min-height: 50px;
  justify-content: center;
  border-radius: 999px !important;
  padding: 0;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.35rem;
}

.tv-home .tv-home-hero-bottom-fade {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: -12vh;
  left: 0;
  height: 46vh;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.34) 32%, rgba(0, 0, 0, 0.82) 66%, #000 100%);
  pointer-events: none;
}

.tv-home .slick-banner .slick-dots {
  position: absolute;
  z-index: 5;
  right: 5.6vw;
  bottom: 8vh;
  left: auto;
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  align-items: center;
  gap: 10px;
  width: auto;
  min-height: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tv-home .slick-banner .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0;
  transition: width 240ms ease;
}

.tv-home .slick-banner .slick-dots li button {
  position: relative;
  width: 10px;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.42);
  transition: width 240ms ease, background-color 240ms ease;
}

.tv-home .slick-banner .slick-dots li button::before {
  display: none;
}

.tv-home .slick-banner .slick-dots li.slick-active {
  width: 42px;
}

.tv-home .slick-banner .slick-dots li.slick-active button {
  width: 42px;
  height: 9px;
  background: rgba(255, 255, 255, 0.22);
}

.tv-home .slick-banner .slick-dots li.slick-active button::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: var(--tv-home-banner-progress, 24%);
  border-radius: inherit;
  background: var(--utv-tv-pink);
  content: '';
}

.tv-home .slick-banner .slick-arrow {
  display: none !important;
}

.tv-home .slick-banner .mute-toggle {
  z-index: 3 !important;
  right: 3.6vw !important;
  bottom: 13.8vh !important;
  margin: 0 !important;
  padding: 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.36) !important;
}

.tv-home .tv-home-banner-indicators {
  display: none;
}

.tv-home .tv-home-banner-indicator {
  position: relative;
  display: inline-flex;
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  padding: 0;
  transition: width 240ms ease, background-color 240ms ease, transform 180ms ease;
}

.tv-home .tv-home-banner-indicator.is-active {
  width: 42px;
  height: 9px;
  background: rgba(255, 255, 255, 0.22);
}

.tv-home .tv-home-banner-indicator.is-active::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: var(--tv-home-banner-progress, 24%);
  border-radius: inherit;
  background: var(--utv-tv-pink);
  content: '';
}

.tv-home .tv-home-banner-indicator:focus-visible {
  outline: 2px solid rgba(35, 190, 200, 0.85);
  outline-offset: 3px;
}

.tv-home .container-fluid.padding-right-0 {
  position: relative;
  z-index: 3;
  max-width: none;
  background: #000;
  padding: 2.5vh 4.8vw 4rem 5.2vw !important;
}

.tv-home .container-fluid.padding-right-0 > .overflow-hidden {
  overflow: visible !important;
}

.tv-home.tv-movies-page {
  background: #000;
}

.tv-home.tv-movies-page .container-fluid {
  max-width: none;
  padding-top: clamp(2rem, 4vh, 3.5rem);
  padding-right: 5.2vw;
  padding-left: 5.2vw;
}

.tv-movies-banner + .tv-home.tv-movies-page .container-fluid {
  padding-top: clamp(2.5rem, 5vh, 4.5rem);
}

.tv-movies-page-header {
  position: relative;
  margin-bottom: clamp(2rem, 3.2vw, 3.5rem);
  padding-bottom: 0.9rem;
}

.tv-movies-page-header::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: min(160px, 18vw);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--utv-tv-pink), var(--utv-tv-cyan));
  content: '';
}

.tv-movies-page-kicker {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: var(--utv-tv-cyan);
  font-size: clamp(0.7rem, 0.7vw, 0.86rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.tv-movies-page-title {
  margin: 0;
  color: #fff;
  font-size: clamp(2.2rem, 4.4vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.95;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.6);
}

.tv-home.tv-search-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 0%, rgba(35, 190, 200, 0.14), transparent 28rem),
    radial-gradient(circle at 78% 10%, rgba(214, 25, 113, 0.12), transparent 32rem),
    #000;
}

.tv-home.tv-search-page .tv-search-shell {
  max-width: none;
  padding-right: 5.2vw;
  padding-left: 5.2vw;
}

.tv-search-hero {
  width: min(980px, 100%);
  padding-top: clamp(2rem, 4vh, 3.5rem);
  padding-bottom: clamp(2rem, 4vh, 3.5rem);
}

.tv-search-subtitle {
  max-width: 42rem;
  margin: -0.5rem 0 1.8rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  font-weight: 600;
  line-height: 1.55;
}

.tv-search-input-group {
  position: relative;
  width: min(760px, 100%);
  min-height: 64px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36), inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.tv-search-input-group:focus-within {
  border-color: rgba(35, 190, 200, 0.34);
  background: rgba(8, 8, 8, 0.78);
  box-shadow: 0 26px 76px rgba(0, 0, 0, 0.42), 0 0 0 4px rgba(35, 190, 200, 0.08);
  transform: translateY(-1px);
}

.tv-search-input-icon {
  flex: 0 0 auto;
  margin-left: 1.35rem;
  color: var(--utv-tv-cyan);
  font-size: 1.45rem;
}

.tv-search-input-group .form-control {
  min-height: 64px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  font-weight: 800;
  padding: 0 1rem;
}

.tv-search-input-group .form-control:focus {
  box-shadow: none;
}

.tv-search-input-group .form-control::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.tv-search-input-group .remove-search,
.tv-search-input-group #movie-search {
  display: inline-flex;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  margin-right: 0.55rem;
  color: #fff;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.tv-search-input-group .remove-search {
  background: rgba(255, 255, 255, 0.09);
}

.tv-search-input-group #movie-search {
  background: linear-gradient(135deg, var(--utv-tv-cyan), #2ed9e1);
  color: #001719;
}

.tv-search-input-group .remove-search:hover,
.tv-search-input-group #movie-search:hover {
  transform: scale(1.04);
}

.tv-search-history {
  display: flex;
  max-width: 760px;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: -0.8rem 0 2rem;
}

.tv-search-history .history-item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  padding: 0.55rem 0.65rem 0.55rem 0.9rem;
}

.tv-search-history .history-item span {
  cursor: pointer;
}

.tv-search-history .history-item button {
  border: 0;
  border-radius: 999px;
  background: rgba(214, 25, 113, 0.18);
  color: #ff85b7;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.28rem 0.55rem;
}

.tv-search-results .container-fluid {
  max-width: none;
  padding-right: 5.2vw;
  padding-left: 5.2vw;
}

.tv-search-empty {
  padding: clamp(2rem, 5vw, 4rem) 5.2vw;
}

.tv-search-empty .content h5 {
  color: #fff;
  font-size: clamp(1.15rem, 1.6vw, 1.6rem);
  font-weight: 900;
}

.tv-search-empty .content span {
  color: rgba(255, 255, 255, 0.58);
  font-weight: 700;
}

.tv-movies-genre-dropdown {
  display: inline-block;
}

.tv-movies-genre-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.2em;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-align: left;
  text-shadow: inherit;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.tv-movies-genre-toggle:hover,
.tv-movies-genre-toggle:focus-visible,
.tv-movies-genre-toggle[aria-expanded='true'] {
  color: #fff;
  outline: none;
  transform: translateY(-1px);
}

.tv-movies-genre-toggle .ph {
  color: var(--utv-tv-cyan);
  font-size: 0.34em;
  filter: drop-shadow(0 0 10px rgba(35, 190, 200, 0.32));
  transform: translateY(0.08em);
}

.tv-movies-genre-menu {
  min-width: min(340px, calc(100vw - 2rem));
  max-height: min(430px, 62vh);
  overflow-y: auto;
  padding: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(12, 12, 12, 0.96);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.58);
  letter-spacing: 0;
  line-height: 1.35;
  text-shadow: none;
}

.tv-movies-genre-menu .dropdown-item {
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
  padding: 0.82rem 1rem;
  text-shadow: none;
  white-space: normal;
}

.tv-movies-genre-menu .dropdown-item:hover,
.tv-movies-genre-menu .dropdown-item:focus,
.tv-movies-genre-menu .dropdown-item.active {
  background: linear-gradient(90deg, rgba(214, 25, 113, 0.22), rgba(35, 190, 200, 0.12));
  color: #fff;
}

.tv-home.tv-movies-page .tv-home-movies-grid {
  overflow: visible;
  row-gap: clamp(2.25rem, 3.6vw, 4rem);
}

.tv-home.tv-movies-page .tv-home-movies-grid > .iq-card {
  margin-bottom: 0;
}

.tv-home .section-wraper {
  margin-bottom: 3vh;
}

.tv-home .streamit-block,
.tv-home .continue-watching-block {
  margin: 0;
}

.tv-home .streamit-block > .d-flex,
.tv-home .continue-watching-block > .d-flex {
  margin: 0 0 14px !important;
}

.tv-home .main-title {
  color: #fff;
  font-size: clamp(1rem, 1.18vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.018em;
}

.tv-home .card-style-slider,
.tv-home .slick-list,
.tv-home .slick-track {
  overflow: visible;
}

.tv-home .card-style-slider .slick-list {
  margin: 0 calc(-1 * var(--spacing));
}

.tv-home .card-style-slider .slick-slide {
  overflow: visible;
  padding: 0 var(--spacing) !important;
}

.tv-home .iq-card,
.tv-home .continue-watch-card {
  position: relative;
  overflow: visible;
  background: transparent;
  transform-origin: center center;
  transition: transform 220ms ease, z-index 0ms linear 220ms;
}

.tv-home-card-panel {
  display: none;
}

.tv-home .iq-card .block-images,
.tv-home .continue-watch-card-image {
  position: relative;
  overflow: hidden;
  border-radius: 11px;
  background: #141414;
  box-shadow: none !important;
  transition: outline-color 190ms ease;
}

.tv-home .iq-card > .block-images > a {
  z-index: 6;
}

.tv-home .iq-card .block-images::after,
.tv-home .iq-card .image-box::before,
.tv-home .continue-watch-card-image::after {
  display: none !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.tv-home .iq-card .image-box,
.tv-home .iq-card .image-box img,
.tv-home .continue-watch-card-image,
.tv-home .continue-watch-card-image img {
  aspect-ratio: 16 / 9;
}

.tv-home .iq-card .image-box {
  position: relative;
  overflow: hidden;
}

.tv-home .iq-card .image-box img,
.tv-home .continue-watch-card-image img {
  height: 100%;
  object-fit: cover;
  filter: none !important;
  mix-blend-mode: normal !important;
  opacity: 1;
  transition: opacity 260ms ease, transform 220ms ease;
}

.tv-home .iq-card:hover,
.tv-home .iq-card:focus-within,
.tv-home .iq-card.is-previewing {
  z-index: 30;
  transform: scale(1.30);
  transition-delay: 0ms;
}

.tv-home .iq-card:hover .block-images,
.tv-home .iq-card:focus-within .block-images,
.tv-home .iq-card.is-previewing .block-images,
.tv-home .continue-watch-card:hover .continue-watch-card-image,
.tv-home .continue-watch-card:focus-within .continue-watch-card-image {
  z-index: 3;
  outline: none;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.38) !important;
  transform: none;
}

.tv-home .iq-card:hover .image-box img,
.tv-home .iq-card:focus-within .image-box img,
.tv-home .continue-watch-card:hover .continue-watch-card-image img,
.tv-home .continue-watch-card:focus-within .continue-watch-card-image img {
  transform: none;
}

.tv-home .tv-home-card-preview {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  border-radius: inherit;
  background: #000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.tv-home .tv-home-card-preview video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tv-home .iq-card.is-preview-ready .tv-home-card-preview {
  opacity: 1;
}

.tv-home .iq-card.is-preview-ready .image-box > img {
  opacity: 0;
}

.tv-home .iq-card.is-preview-loading .tv-home-card-preview::after {
  content: none;
}

.tv-home .tv-home-card-panel {
  display: block;
  position: relative;
  z-index: 7;
  max-height: 0;
  overflow: hidden;
  padding: 0 12px;
  background: #141414;
  color: #fff;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height 240ms ease, padding 240ms ease, opacity 180ms ease, transform 220ms ease;
}

.tv-home .iq-card:hover .tv-home-card-panel,
.tv-home .iq-card:focus-within .tv-home-card-panel,
.tv-home .iq-card.is-previewing .tv-home-card-panel {
  max-height: 138px;
  padding: 10px 12px 12px;
  opacity: 1;
  transform: translateY(0);
}

.tv-home .tv-home-card-panel-actions {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
}

.tv-home .tv-home-card-panel-play,
.tv-home .tv-home-card-panel-icon {
  display: inline-grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  text-decoration: none;
}

.tv-home .tv-home-card-panel-play {
  background: #fff;
  color: #050505;
}

.tv-home .tv-home-card-panel-icon {
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.tv-home .tv-home-card-panel-title {
  margin: 0 0 5px;
  color: #fff;
  font-size: clamp(0.68rem, 0.62vw, 0.82rem);
  font-weight: 800;
  line-height: 1.18;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tv-home .tv-home-card-panel-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.58rem, 0.52vw, 0.68rem);
  font-weight: 700;
}

.tv-home .tv-home-card-panel-meta span + span::before {
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.45);
  content: '•';
}

.tv-home .tv-home-card-panel-genres {
  margin-top: 5px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(0.55rem, 0.5vw, 0.64rem);
  font-weight: 600;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tv-home .iq-card .card-description,
.tv-home .continue-watch-card-content {
  display: none !important;
}

.tv-home .continue-watch-card-image .progress {
  position: absolute;
  right: 14px;
  bottom: 12px;
  left: 14px;
  height: 5px;
  overflow: visible;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.tv-home .continue-watch-card-image .progress-bar {
  border-radius: inherit;
  background: var(--utv-tv-cyan);
}

.tv-home .continue-watch-card-image .progress-bar::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 10px;
  border: 2px solid var(--utv-tv-cyan);
  border-radius: 50%;
  background: #fff;
  content: '';
  transform: translate(50%, -50%);
}

.tv-home .continue_remove_btn {
  z-index: 4;
  top: 8px;
  right: 8px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.58);
  color: #fff;
  opacity: 0;
  transition: opacity 160ms ease;
}

.tv-home .continue-watch-card:hover .continue_remove_btn,
.tv-home .continue-watch-card:focus-within .continue_remove_btn {
  opacity: 1;
}

.tv-home .product-premium,
.tv-home .badge.bg-success {
  z-index: 4;
  border: 0;
  background: var(--utv-tv-pink) !important;
  color: #fff;
}

.tv-home .card-style-slider .slick-arrow {
  z-index: 4;
  display: grid !important;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  opacity: 0;
  transition: opacity 160ms ease, background-color 160ms ease;
}

.tv-home .card-style-slider:hover .slick-arrow,
.tv-home .card-style-slider:focus-within .slick-arrow {
  opacity: 1;
}

.tv-home .card-style-slider .slick-arrow:hover {
  background: var(--utv-tv-cyan);
  color: #071619;
}

.tv-home .card-style-slider .slick-prev {
  left: -14px;
}

.tv-home .card-style-slider .slick-next {
  right: -14px;
}

.tv-home .section-hidden {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 330ms ease-out, transform 330ms ease-out;
}

.tv-home .section-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  body.tv-home-page {
    overflow-x: hidden;
  }

  .tv-home {
    max-width: 100%;
    overflow-x: hidden;
  }

  body.tv-home-page > header {
    display: none;
  }

  .tv-home-topbar {
    min-height: auto;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.7rem;
    padding: 0.75rem max(1rem, env(safe-area-inset-right)) 0.9rem max(1rem, env(safe-area-inset-left));
  }

  .tv-home-topbar__brand {
    order: 1;
  }

  .tv-home-topbar__brand img {
    width: 70px;
    max-height: 34px;
  }

  .tv-home-topbar__nav {
    order: 3;
    width: 100%;
    flex: 0 0 100%;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 0.45rem;
    padding: 0.15rem 0 0.2rem;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }

  .tv-home-topbar__nav::-webkit-scrollbar {
    display: none;
  }

  .tv-home-topbar__item {
    min-height: 38px;
    flex: 0 0 auto;
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.045);
    padding: 0 0.82rem;
    scroll-snap-align: start;
  }

  .tv-home-topbar__item span {
    font-size: 0.82rem;
  }

  .tv-home-topbar__actions {
    order: 2;
    margin-left: auto;
    gap: 0.4rem;
  }

  .tv-home-topbar__action {
    width: 38px;
    min-height: 38px;
  }

  .tv-home-topbar__search {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .tv-home-topbar__search--open,
  .tv-home-topbar__search:focus-within {
    width: min(15rem, calc(100vw - 9.5rem));
    flex-basis: min(15rem, calc(100vw - 9.5rem));
  }

  .tv-home-topbar__search-form {
    min-height: 38px;
    padding: 0 0.24rem 0 0.82rem;
  }

  .tv-home-topbar__search-submit {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
    font-size: 1.08rem;
  }

  .tv-home-topbar__search-input {
    font-size: 0.86rem;
  }

  .tv-home-topbar__search.tv-home-topbar__search--open,
  .tv-home-topbar__search:focus-within {
    position: absolute;
    top: 0.75rem;
    right: max(4.8rem, env(safe-area-inset-right));
    left: max(5.9rem, env(safe-area-inset-left));
    z-index: 6;
    width: auto;
    flex-basis: auto;
  }

  .tv-home-topbar__search.tv-home-topbar__search--open .tv-home-topbar__search-form,
  .tv-home-topbar__search:focus-within .tv-home-topbar__search-form {
    min-height: 42px;
  }

  .tv-home-topbar__login {
    min-height: 38px;
    padding: 0 0.9rem;
  }

  .tv-home-topbar__profile-toggle {
    min-height: 38px;
    padding: 0.2rem 0.5rem 0.2rem 0.24rem;
  }

  .tv-home-topbar__profile-toggle img {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .tv-home-topbar__profile-toggle > .ph {
    display: none;
  }

  .tv-home-topbar__profile-name {
    display: none;
  }

  .tv-home-topbar__profile-menu {
    min-width: min(280px, calc(100vw - 2rem));
  }

  .tv-home .slick-banner,
  .tv-home .slick-banner .slick-list,
  .tv-home .slick-banner .slick-track,
  .tv-home .slick-banner .slick-slide,
  .tv-home .slick-banner .slick-slide > div,
  .tv-home .slick-banner .slick-item {
    height: clamp(430px, 68vh, 560px);
  }

  .tv-home .slick-banner .slide-video {
    width: 100% !important;
    opacity: 0.62;
  }

  .tv-home .slick-banner .movie-content {
    padding: 0 1.35rem 4.35rem;
  }

  .tv-home .slick-banner .movie-content .container-fluid > .d-flex {
    max-width: min(540px, 100%) !important;
  }

  .tv-home .tv-home-hero-copy {
    max-width: min(520px, 82vw);
  }

  .tv-home .tv-home-hero-title-image {
    max-width: min(350px, 58vw);
    max-height: 150px;
    margin-bottom: 1rem;
  }

  .tv-home .tv-home-hero-title {
    max-width: min(520px, 82vw);
    font-size: clamp(2rem, 8vw, 3.6rem);
  }

  .tv-home .tv-home-hero-meta {
    gap: 0.55rem 1rem;
    margin-bottom: 0.85rem;
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .tv-home .tv-home-hero-rating {
    flex-basis: 100%;
    width: fit-content;
  }

  .tv-home .tv-home-hero-description {
    max-width: min(500px, 82vw);
    margin-bottom: 0.85rem;
    -webkit-line-clamp: 2;
    font-size: 0.98rem;
    line-height: 1.42;
  }

  .tv-home .tv-home-hero-genres {
    margin-bottom: 1.2rem;
  }

  .tv-home .tv-home-hero-actions {
    max-width: min(520px, 82vw);
    gap: 0.6rem;
  }

  .tv-home .tv-home-hero-actions .btn:not(.tv-home-hero-icon-btn) {
    min-height: 44px;
    padding: 0.68rem 1.05rem;
    white-space: nowrap;
  }

  .tv-home .slick-banner .slick-dots {
    display: none !important;
  }

  .tv-home .tv-home-banner-indicators {
    position: absolute;
    z-index: 60;
    bottom: 2.85rem;
    left: 50%;
    display: flex;
    width: max-content;
    max-width: calc(100vw - 2.5rem);
    align-items: center;
    justify-content: center;
    gap: 7px;
    overflow: visible;
    transform: translateX(-50%);
  }

  .tv-home .tv-home-banner-indicator {
    width: 8px;
    height: 8px;
  }

  .tv-home .tv-home-banner-indicator.is-active {
    width: 34px;
  }

  .tv-home .slick-banner .mute-toggle {
    right: 1.25rem !important;
    bottom: 3.85rem !important;
    left: auto !important;
    transform: none;
  }

  .tv-home .container-fluid.padding-right-0 {
    padding: 2rem 1.25rem 3rem !important;
  }

  .tv-home .container-fluid.padding-right-0 > .overflow-hidden,
  .tv-home .streamit-block > .overflow-hidden,
  .tv-home .card-style-slider {
    overflow: hidden !important;
  }

  .tv-home.tv-movies-page .container-fluid,
  .tv-home.tv-search-page .tv-search-shell,
  .tv-search-results .container-fluid {
    padding-right: 1.15rem;
    padding-left: 1.15rem;
  }

  .tv-home.tv-movies-page .container-fluid {
    padding-top: 1.5rem;
  }

  .tv-movies-banner + .tv-home.tv-movies-page .container-fluid {
    padding-top: 1.6rem;
  }

  .tv-movies-page-header {
    margin-bottom: 1.5rem;
  }

  .tv-movies-page-title {
    font-size: clamp(2rem, 12vw, 3.6rem);
    line-height: 1;
  }

  .tv-movies-genre-toggle {
    max-width: calc(100vw - 2.3rem);
  }

  .tv-movies-genre-toggle span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .tv-movies-genre-menu {
    max-height: min(58vh, 420px);
    overflow-y: auto;
  }

  .tv-home.tv-movies-page .tv-home-movies-grid {
    row-gap: 1.15rem;
  }

  .tv-home.tv-movies-page .tv-home-movies-grid > .iq-card,
  .tv-search-results .tv-home-movies-grid > .iq-card,
  .tv-search-results .tv-home-movies-grid > .cast-card {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }

  .tv-home .iq-card,
  .tv-home .continue-watch-card {
    transform: none !important;
  }

  .tv-home .iq-card:hover,
  .tv-home .iq-card:focus-within,
  .tv-home .iq-card.is-previewing {
    z-index: auto;
    transform: none !important;
  }

  .tv-home .tv-home-card-panel {
    display: none !important;
  }

  .tv-home .iq-card:hover .block-images,
  .tv-home .iq-card:focus-within .block-images,
  .tv-home .iq-card.is-previewing .block-images,
  .tv-home .continue-watch-card:hover .continue-watch-card-image,
  .tv-home .continue-watch-card:focus-within .continue-watch-card-image {
    box-shadow: none !important;
  }

  .tv-home .card-style-slider .slick-list {
    overflow: hidden !important;
    margin: 0;
  }

  .tv-home .card-style-slider .slick-arrow {
    display: none !important;
  }

  .tv-search-hero {
    padding-top: 1.5rem;
    padding-bottom: 1.7rem;
  }

  .tv-search-subtitle {
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
  }

  .tv-search-input-group {
    min-height: 56px;
  }

  .tv-search-input-group .form-control {
    min-height: 56px;
    font-size: 0.98rem;
  }

  .tv-search-input-icon {
    margin-left: 1rem;
    font-size: 1.25rem;
  }

  .tv-search-input-group .remove-search,
  .tv-search-input-group #movie-search {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    margin-right: 0.42rem;
  }

  .tv-account-page {
    padding: 1.5rem 1rem 2.5rem;
  }
}

@media (max-width: 575.98px) {
  body.tv-home-page {
    overflow-x: hidden;
  }

  .tv-home {
    max-width: 100%;
    overflow-x: hidden;
  }

  .tv-home-topbar {
    padding-top: calc(0.7rem + env(safe-area-inset-top));
    padding-bottom: 0.78rem;
  }

  .tv-home-topbar__brand img {
    width: 58px;
  }

  .tv-home-topbar__item {
    min-height: 36px;
    gap: 0.38rem;
    padding: 0 0.72rem;
  }

  .tv-home-topbar__item span {
    font-size: 0.76rem;
  }

  .tv-home-topbar__icon {
    font-size: 1rem;
  }

  .tv-home-topbar__search.tv-home-topbar__search--open,
  .tv-home-topbar__search:focus-within {
    right: max(3.85rem, env(safe-area-inset-right));
    left: max(4.7rem, env(safe-area-inset-left));
    width: auto;
    flex-basis: auto;
  }

  .tv-home-topbar__login {
    min-height: 36px;
    padding: 0 0.72rem;
    font-size: 0.78rem;
  }

  .tv-home-topbar__profile-toggle {
    min-height: 36px;
    padding: 0.18rem;
  }

  .tv-home .slick-banner,
  .tv-home .slick-banner .slick-list,
  .tv-home .slick-banner .slick-track,
  .tv-home .slick-banner .slick-slide,
  .tv-home .slick-banner .slick-slide > div,
  .tv-home .slick-banner .slick-item {
    height: min(72vh, 500px);
    min-height: 430px;
  }

  .tv-home .slick-banner .movie-content {
    padding: 0 1rem 4.35rem;
  }

  .tv-home .slick-banner .movie-content h4 {
    font-size: clamp(1.7rem, 9vw, 2.35rem);
    line-height: 1.04;
  }

  .tv-home .tv-home-hero-copy {
    max-width: min(360px, calc(100vw - 2rem));
  }

  .tv-home .tv-home-hero-title-image {
    max-width: min(245px, 66vw);
    max-height: 105px;
    margin-bottom: 0.78rem;
  }

  .tv-home .tv-home-hero-title {
    max-width: min(360px, calc(100vw - 2rem));
    font-size: clamp(1.9rem, 11vw, 2.75rem);
  }

  .tv-home .tv-home-hero-meta {
    gap: 0.52rem 0.78rem;
    margin-bottom: 0.78rem;
    font-size: 0.82rem;
  }

  .tv-home .tv-home-hero-rating {
    flex-basis: 100%;
    max-width: min(270px, 100%);
    width: fit-content;
    line-height: 1.32;
    padding: 0.36rem 0.58rem;
  }

  .tv-home .tv-home-hero-description {
    max-width: 100%;
    margin-bottom: 0.72rem;
    -webkit-line-clamp: 2;
    font-size: 0.9rem;
  }

  .tv-home .tv-home-hero-genres {
    margin-bottom: 1.05rem;
    font-size: 0.78rem;
  }

  .tv-home .tv-home-hero-actions {
    display: grid;
    width: min(100%, 360px);
    max-width: calc(100vw - 2rem);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 0.72rem;
  }

  .tv-home .slick-banner .movie-content .btn:not(.tv-home-hero-icon-btn) {
    width: 100%;
    min-height: 42px;
    justify-content: center;
    padding: 0.64rem 0.58rem;
    font-size: 0.86rem;
    white-space: nowrap;
  }

  .tv-home .slick-banner .movie-content .btn:not(.tv-home-hero-icon-btn) .gap-2 {
    gap: 0.38rem !important;
  }

  .tv-home .tv-home-hero-action-divider {
    display: none;
  }

  .tv-home .tv-home-hero-actions .tv-home-hero-icon-btn {
    width: 48px;
    min-width: 48px;
    height: 48px;
    min-height: 48px;
    justify-self: start;
    font-size: 1.2rem;
  }

  .tv-home .tv-home-hero-actions .tv-home-hero-next {
    justify-self: start;
  }

  .tv-home .slick-banner .slick-dots {
    display: none !important;
  }

  .tv-home .tv-home-banner-indicators {
    bottom: 2.15rem;
    max-width: calc(100vw - 2rem);
    gap: 6px;
  }

  .tv-home .slick-banner .mute-toggle {
    right: 1rem !important;
    bottom: 3.1rem !important;
    left: auto !important;
    padding: 6px;
    transform: none;
  }

  .tv-home .container-fluid.padding-right-0 {
    padding: 1.35rem 1rem 2.5rem !important;
  }

  .tv-home.tv-movies-page .container-fluid,
  .tv-home.tv-search-page .tv-search-shell,
  .tv-search-results .container-fluid {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .tv-movies-page-kicker {
    font-size: 0.68rem;
  }

  .tv-movies-page-title {
    font-size: clamp(1.85rem, 13vw, 3rem);
  }

  .tv-home.tv-movies-page .tv-home-movies-grid {
    row-gap: 1rem;
  }

  .tv-home.tv-movies-page .tv-home-movies-grid > .iq-card,
  .tv-search-results .tv-home-movies-grid > .iq-card,
  .tv-search-results .tv-home-movies-grid > .cast-card {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }

  .tv-home .section-wraper {
    margin-bottom: 1.7rem;
  }

  .tv-home .main-title {
    font-size: 1.12rem;
    line-height: 1.2;
  }

  .tv-home .iq-card .block-images,
  .tv-home .continue-watch-card-image {
    border-radius: 9px;
  }

  .tv-search-input-group {
    border-radius: 18px;
  }

  .tv-search-input-group .form-control {
    padding-right: 0.55rem;
  }

  .tv-search-history {
    margin-bottom: 1.4rem;
  }

  .tv-search-history .history-item {
    max-width: 100%;
  }

  .tv-search-empty {
    padding: 2rem 1rem;
  }

  .tv-search-empty .d-flex {
    flex-direction: column;
    text-align: center;
  }
}
