 :root {
     --black: #000;
     --white: #fff;
     --muted: rgba(255, 255, 255, .55);
     --soft: rgba(255, 255, 255, .12);
     --primary: #e84c3d;
 }

 * {
     box-sizing: border-box
 }

 html,
 body {
     margin: 0;
     padding: 0;
     background: #000 !important;
     color: #fff;
     font-family: Inter, Arial, sans-serif;
     font-weight: 300;
     overflow-x: hidden;
 }

 a {
     text-decoration: none;
     color: inherit
 }

 .web-home {
     background: #000;
     min-height: 100vh;
 }

 .top-nav {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     z-index: 50;
     padding: 16px 22px 12px !important;
     display: grid;
     grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
     grid-template-areas:
         "actions logo right"
         "menu menu menu";
     align-items: center;
     row-gap: 18px;
     column-gap: 22px;
     background:
         linear-gradient(180deg,
             rgba(0, 0, 0, .96) 0%,
             rgba(0, 0, 0, .9) 45%,
             rgba(0, 0, 0, .62) 72%,
             rgba(0, 0, 0, 0) 100%);
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     transition: padding .28s ease, background .28s ease, box-shadow .28s ease;
 }

 .logo {
     grid-area: logo;
     justify-self: center;
     font-size: 17px;
     letter-spacing: 4px;
     font-weight: 300;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     min-width: 0;
     transition: opacity .22s ease, transform .28s ease, max-height .28s ease;
 }

 .logo span {
     color: var(--primary);
 }

 .app-top-logo img {
     width: auto !important;
     height: 42px !important;
     max-width: 42px;
     object-fit: contain;
     display: block;
     filter: drop-shadow(0 8px 22px rgba(0, 0, 0, .38));
 }

 .app-top-logo {
     flex-direction: column;
     gap: 6px;
 }

 .app-top-logo-word {
     width: auto !important;
     height: 28px !important;
     max-width: 190px;
     object-fit: contain;
     display: block;
 }

 .nav-menu {
     grid-area: menu;
     position: relative;
     display: flex;
     gap: 0;
     align-items: center;
     justify-content: center;
     min-width: 0;
     transition: transform .28s ease;
 }

 .nav-menu::before {
     content: none;
 }

 .nav-center-links {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 26px;
     min-width: 0;
 }

 .nav-right-links {
     position: absolute;
     right: 0;
     top: 50%;
     transform: translateY(-50%);
     display: inline-flex;
     align-items: center;
     justify-content: flex-end;
     gap: 22px;
     min-width: 0;
 }

 .nav-menu a {
     position: relative;
     min-height: 24px;
     display: inline-flex;
     align-items: center;
     font-size: 12px;
     color: rgba(255, 255, 255, .68);
     font-weight: 300;
     letter-spacing: .6px;
     transition: .28s ease;
     padding: 0;
     line-height: 1;
 }

 .nav-menu-fm {
     position: relative;
     border: 0;
     background: transparent;
     color: rgba(255, 255, 255, .68);
     cursor: pointer;
     font: inherit;
     font-size: 12px;
     font-weight: 300;
     letter-spacing: .6px;
     min-height: 24px;
     padding: 0;
     transition: .28s ease;
 }

 .nav-menu-action-spacer {
     display: none;
 }

 .nav-menu-fm:hover {
     color: #fff;
 }

 .nav-menu-icon,
 .nav-menu-lock {
     width: 24px;
     height: 24px;
     padding: 0;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     color: rgba(255, 255, 255, .72);
     background: transparent;
     border: 0;
     cursor: pointer;
 }

 .nav-menu-icon svg,
 .nav-menu-lock svg {
     width: 16px;
     height: 16px;
     fill: currentColor;
 }

 .nav-menu-icon:hover,
 .nav-menu-lock:hover {
     color: #fff;
 }

 .nav-menu-search {
     display: none !important;
 }

 .nav-menu-lock.unlocked {
     color: #e50914;
     background: transparent !important;
 }

 .nav-red-separator {
     width: 1px;
     height: 18px;
     border-radius: 99px;
     background: linear-gradient(180deg, transparent, var(--primary), transparent);
     box-shadow: 0 0 16px rgba(232, 76, 61, .68);
 }

 .nav-menu a.nav-cinebox-btn {
     width: auto;
     height: 35px;
     margin-left: 0;
     padding: 7px 0 0;
     border-radius: 0;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     background: transparent;
     border: 0;
     box-shadow: none;
     backdrop-filter: none;
     line-height: 0;
     overflow: visible;
 }

 .nav-cinebox-btn img {
     width: auto;
     max-width: 142px;
     height: 23px;
     border-radius: 0;
     object-fit: contain;
     object-position: center;
     display: block;
     transform: none;
     box-shadow: none;
 }

 .nav-menu a.nav-cinebox-btn:hover,
 .nav-menu a.nav-cinebox-btn.active {
     color: #fff;
     background: transparent;
     transform: none;
 }

 /* hover */
 .nav-menu a:hover {
     color: #fff;
 }

 /* cinematic underline */
 .nav-menu a::after {
     content: "";
     position: absolute;
     left: 50%;
     bottom: 0;
     width: 0;
     height: 1.5px;
     border-radius: 99px;
     background: linear-gradient(90deg,
             transparent,
             rgba(255, 255, 255, .95),
             transparent);
     transform: translateX(-50%);
     transition: .35s ease;
     opacity: 0;
 }

 /* hover line */
 .nav-menu a:hover::after {
     width: 120%;
     opacity: 1;
 }

 /* ACTIVE MENU */
 .nav-menu a.active {
     color: #fff;
     text-shadow:
         0 0 10px rgba(255, 255, 255, .45),
         0 0 22px rgba(255, 255, 255, .18);
 }

 /* active line */
 .nav-menu a.active::after {
     width: 140%;
     opacity: 1;
     box-shadow:
         0 0 10px rgba(255, 255, 255, .55),
         0 0 20px rgba(255, 255, 255, .25);
 }

 /* soft cinematic pulse */
 .nav-menu a.active {
     animation: navGlow 2.8s ease-in-out infinite;
 }

 @keyframes navGlow {

     0%,
     100% {
         opacity: 1;
     }

     50% {
         opacity: .82;
     }
 }

 .nav-actions {
     grid-area: actions;
     display: none !important;
     gap: 12px;
     align-items: center;
     justify-content: flex-start;
     min-width: 0;
     transition: opacity .22s ease, transform .28s ease, max-height .28s ease;
 }

 .nav-account-actions {
     display: none !important;
     align-items: center;
     justify-content: flex-end;
     gap: 12px;
     min-width: 0;
 }

 .top-nav.nav-compact {
     padding-top: 13px !important;
     padding-bottom: 13px !important;
     row-gap: 2px;
     background:
         linear-gradient(180deg,
             rgba(0, 0, 0, .96) 0%,
             rgba(0, 0, 0, .9) 62%,
             rgba(0, 0, 0, .18) 100%);
     box-shadow: 0 18px 48px rgba(0, 0, 0, .32);
 }

 .top-nav.nav-compact .logo,
 .top-nav.nav-compact .nav-actions {
     max-height: 0;
     opacity: 0;
     transform: translateY(-12px);
     pointer-events: none;
     overflow: hidden;
 }

 .nav-search-btn {
     position: absolute;
     left: 0;
     top: 50%;
     transform: translateY(-50%);
     width: 132px;
     min-width: 132px;
     height: 34px;
     padding: 0;
     padding-inline: 15px 18px;
     border: 1px solid rgba(255, 255, 255, .1);
     border-radius: 999px;
     display: inline-flex;
     align-items: center;
     justify-content: flex-start;
     gap: 10px;
     color: #fff;
     cursor: pointer;
     font-size: 12px;
     font-weight: 300;
     letter-spacing: .2px;
     background: rgba(0, 0, 0, .38);
     backdrop-filter: blur(14px);
     transition: .25s ease;
 }

 .nav-search-btn span {
     color: rgba(255, 255, 255, .42);
     font-size: 11px;
     font-weight: 400;
     letter-spacing: .02em;
     white-space: nowrap;
 }

 .nav-search-btn:hover {
     border-color: rgba(255, 255, 255, .2);
     background: rgba(0, 0, 0, .52);
     transform: translateY(-50%);
 }

 .nav-search-btn svg {
     width: 17px;
     height: 17px;
     fill: currentColor;
     flex-shrink: 0;
 }

 .kino-search-overlay {
     position: fixed;
     inset: 0;
     z-index: 99998;
     display: none;
     align-items: flex-start;
     justify-content: center;
     padding: 96px 18px 28px;
     background: rgba(0, 0, 0, .72);
     backdrop-filter: blur(18px);
 }

 .kino-search-overlay.show {
     display: flex;
 }

 .fm-box-overlay {
     position: fixed;
     inset: 0;
     z-index: 99997;
     display: none;
     align-items: flex-start;
     justify-content: center;
     padding: 96px 18px 28px;
     background: rgba(0, 0, 0, .74);
     backdrop-filter: blur(18px);
 }

 .fm-box-overlay.show {
     display: flex;
 }

 .fm-box-modal {
     position: relative;
     width: min(760px, 100%);
     max-height: calc(100vh - 124px);
     padding: 28px;
     border-radius: 30px;
     overflow: hidden;
     background:
         radial-gradient(circle at 18% 0%, rgba(232, 76, 61, .28), transparent 36%),
         linear-gradient(180deg, rgba(24, 24, 24, .98), rgba(4, 4, 4, .98));
     border: 1px solid rgba(255, 255, 255, .12);
     box-shadow: 0 34px 90px rgba(0, 0, 0, .72);
     animation: kinoSearchIn .28s cubic-bezier(.2, .9, .2, 1) forwards;
 }

 .fm-box-close {
     position: absolute;
     top: 16px;
     right: 16px;
     width: 38px;
     height: 38px;
     border: 0;
     border-radius: 50%;
     color: #fff;
     font-size: 26px;
     line-height: 1;
     cursor: pointer;
     background: rgba(255, 255, 255, .1);
     transition: .25s ease;
 }

 .fm-box-close:hover {
     background: var(--primary);
     transform: rotate(90deg) scale(1.04);
 }

 .fm-box-head {
     padding-right: 46px;
 }

 .fm-box-head p {
     margin: 0 0 8px;
     color: rgba(255, 255, 255, .5);
     font-size: 11px;
     letter-spacing: 2.8px;
     font-weight: 400;
 }

 .fm-box-head h2 {
     margin: 0;
     color: #fff;
     font-size: clamp(30px, 5vw, 48px);
     font-weight: 300;
     letter-spacing: -1px;
 }

 .fm-box-head span {
     display: block;
     margin-top: 8px;
     color: rgba(255, 255, 255, .58);
     line-height: 1.6;
 }

 .fm-box-list {
     margin-top: 22px;
     max-height: min(50vh, 420px);
     overflow-y: auto;
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
     gap: 12px;
     padding-right: 4px;
 }

 .fm-box-list::-webkit-scrollbar {
     width: 5px;
 }

 .fm-box-list::-webkit-scrollbar-thumb {
     background: rgba(232, 76, 61, .8);
     border-radius: 99px;
 }

 .fm-box-card {
     min-height: 72px;
     border: 1px solid rgba(255, 255, 255, .1);
     border-radius: 18px;
     padding: 12px;
     display: grid;
     grid-template-columns: 42px 1fr auto;
     align-items: center;
     gap: 12px;
     color: #fff;
     cursor: pointer;
     text-align: left;
     background: rgba(255, 255, 255, .065);
     transition: .22s ease;
 }

 .fm-box-card:hover,
 .fm-box-card.active {
     border-color: rgba(232, 76, 61, .58);
     background: rgba(255, 255, 255, .11);
     transform: translateY(-2px);
 }

 .fm-wave {
     width: 42px;
     height: 42px;
     border-radius: 15px;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 3px;
     background: rgba(232, 76, 61, .2);
 }

 .fm-wave i {
     width: 4px;
     height: 13px;
     border-radius: 99px;
     background: #fff;
     animation: fmWave 1s ease-in-out infinite;
 }

 .fm-wave i:nth-child(2) {
     height: 20px;
     animation-delay: .14s;
 }

 .fm-wave i:nth-child(3) {
     animation-delay: .28s;
 }

 @keyframes fmWave {

     0%,
     100% {
         transform: scaleY(.55);
         opacity: .58;
     }

     50% {
         transform: scaleY(1.2);
         opacity: 1;
     }
 }

 .fm-title {
     min-width: 0;
     font-size: 14px;
     font-weight: 400;
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
 }

 .fm-play {
     padding: 7px 10px;
     border-radius: 999px;
     color: #000;
     background: #fff;
     font-size: 12px;
     font-weight: 700;
 }

 .fm-player {
     margin-top: 18px;
     padding: 14px;
     border-radius: 20px;
     grid-template-columns: 1fr minmax(220px, 360px);
     gap: 14px;
     align-items: center;
     background: rgba(255, 255, 255, .08);
     border: 1px solid rgba(255, 255, 255, .1);
 }

 .fm-player small {
     display: block;
     color: rgba(255, 255, 255, .5);
     font-size: 11px;
     margin-bottom: 5px;
 }

 .fm-player b {
     font-weight: 400;
 }

 .fm-player audio {
     width: 100%;
 }

 .fm-lock-note,
 .fm-empty {
     margin-top: 16px;
     padding: 14px;
     border-radius: 18px;
     color: rgba(255, 255, 255, .68);
     background: rgba(255, 255, 255, .07);
     border: 1px solid rgba(255, 255, 255, .09);
     line-height: 1.6;
 }

 .detail-favorite-btn {
     width: 48px;
     height: 48px;
     border-radius: 999px;
     border: 1px solid rgba(255, 255, 255, .14);
     background: rgba(255, 255, 255, .1);
     color: #fff;
     cursor: pointer;
     display: inline-grid;
     place-items: center;
     font-size: 24px;
     backdrop-filter: blur(16px);
     transition: .24s ease;
 }

 .detail-favorite-btn:hover,
 .detail-favorite-btn.active {
     color: #fff;
     background: var(--primary);
     border-color: var(--primary);
     box-shadow: 0 16px 42px rgba(232, 76, 61, .38);
     transform: translateY(-2px);
 }

 .favorite-inline-btn.active {
     color: #fff !important;
     background: var(--primary) !important;
     border-color: var(--primary) !important;
     box-shadow: 0 14px 34px rgba(232, 76, 61, .34);
 }

 .kino-search-modal {
     position: relative;
     width: min(860px, 100%);
     max-height: calc(100vh - 124px);
     padding: 26px;
     border-radius: 28px;
     overflow: hidden;
     background:
         radial-gradient(circle at 50% 0%, rgba(232, 76, 61, .26), transparent 36%),
         linear-gradient(180deg, rgba(24, 24, 24, .97), rgba(4, 4, 4, .97));
     border: 1px solid rgba(255, 255, 255, .12);
     box-shadow: 0 34px 90px rgba(0, 0, 0, .72);
     animation: kinoSearchIn .28s cubic-bezier(.2, .9, .2, 1) forwards;
 }

 @keyframes kinoSearchIn {
     from {
         opacity: 0;
         transform: translateY(18px) scale(.97);
     }

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

 .kino-search-close {
     position: absolute;
     top: 16px;
     right: 16px;
     width: 38px;
     height: 38px;
     border: 0;
     border-radius: 50%;
     color: #fff;
     font-size: 26px;
     line-height: 1;
     cursor: pointer;
     background: rgba(255, 255, 255, .1);
     transition: .25s ease;
 }

 .kino-search-close:hover {
     background: var(--primary);
     transform: rotate(90deg) scale(1.04);
 }

 .kino-search-head {
     padding-right: 48px;
 }

 .kino-search-head p {
     margin: 0 0 8px;
     color: rgba(255, 255, 255, .5);
     font-size: 11px;
     letter-spacing: 2.8px;
     font-weight: 400;
 }

 .kino-search-head h2 {
     margin: 0;
     color: #fff;
     font-size: clamp(26px, 4vw, 42px);
     font-weight: 400;
     letter-spacing: -.6px;
 }

 .kino-search-field {
     height: 58px;
     margin-top: 22px;
     padding: 0 18px;
     border-radius: 18px;
     display: flex;
     align-items: center;
     gap: 12px;
     background: rgba(255, 255, 255, .08);
     border: 1px solid rgba(255, 255, 255, .12);
 }

 .kino-search-field svg {
     width: 22px;
     height: 22px;
     fill: rgba(255, 255, 255, .7);
     flex-shrink: 0;
 }

 .kino-search-field input {
     width: 100%;
     border: 0;
     outline: none;
     color: #fff;
     background: transparent;
     font: inherit;
     font-size: 17px;
     font-weight: 300;
 }

 .kino-search-field input::placeholder {
     color: rgba(255, 255, 255, .42);
 }

 .kino-search-status {
     min-height: 22px;
     margin: 14px 2px 16px;
     color: rgba(255, 255, 255, .56);
     font-size: 13px;
     line-height: 1.55;
 }

 .kino-search-results {
     max-height: min(55vh, 520px);
     overflow-y: auto;
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
     gap: 12px;
     padding-right: 4px;
 }

 .kino-search-results::-webkit-scrollbar {
     width: 5px;
 }

 .kino-search-results::-webkit-scrollbar-thumb {
     background: rgba(232, 76, 61, .78);
     border-radius: 99px;
 }

 .kino-search-card {
     min-width: 0;
     border: 1px solid rgba(255, 255, 255, .1);
     border-radius: 16px;
     padding: 10px;
     display: grid;
     grid-template-columns: 54px 1fr auto;
     gap: 12px;
     align-items: center;
     color: #fff;
     text-align: left;
     cursor: pointer;
     background: rgba(255, 255, 255, .065);
     transition: .22s ease;
 }

 .kino-search-card:hover {
     border-color: rgba(232, 76, 61, .55);
     background: rgba(255, 255, 255, .105);
     transform: translateY(-2px);
 }

 .kino-search-poster {
     width: 54px;
     aspect-ratio: 2/3;
     border-radius: 8px;
     overflow: hidden;
     display: block;
     background: #151515;
 }

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

 .kino-search-info {
     min-width: 0;
     display: block;
 }

 .kino-search-info b {
     display: block;
     color: #fff;
     font-size: 14px;
     font-weight: 500;
     line-height: 1.35;
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
 }

 .kino-search-info small {
     display: block;
     margin-top: 5px;
     color: rgba(255, 255, 255, .48);
     font-size: 12px;
     line-height: 1.35;
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
 }

 .kino-search-tag {
     padding: 6px 9px;
     border-radius: 999px;
     color: rgba(255, 255, 255, .78);
     background: rgba(255, 255, 255, .08);
     font-size: 11px;
     white-space: nowrap;
 }

 .nav-btn {
     font-size: 12px;
     font-weight: 300;
     color: #fff;
     border: 1px solid rgba(255, 255, 255, .22);
     padding: 9px 17px;
     border-radius: 99px;
     background: rgba(0, 0, 0, .18);
     backdrop-filter: blur(14px);
 }

 .nav-btn.primary {
     border-color: var(--primary);
     background: var(--primary);
 }

 .hero-slider {
     width: 100%;
     height: 90vh;
     min-height: 560px;
     max-height: 820px;
     position: relative;
     background: #000;
     overflow: hidden;
     cursor: grab;
     touch-action: pan-y;
 }

 .hero-slider.dragging {
     cursor: grabbing;
 }

 .hero-track {
     height: 100%;
     display: flex;
     will-change: transform;
     transition: transform .85s cubic-bezier(.22, .61, .36, 1);
 }

 .hero-slider.dragging .hero-track {
     transition: none;
 }

 .hero-slide {
     position: relative;
     flex: 0 0 100%;
     width: 100%;
     height: 100%;
     overflow: hidden;
 }

 .hero-slide img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     transform: scale(1.04);
     transition: transform 10s linear;
     pointer-events: none;
     user-select: none;
 }

 .hero-slide.is-current img {
     transform: scale(1.12);
 }

 .hero-shade {
     position: absolute;
     inset: 0;
     z-index: 2 !important;

     background:
         linear-gradient(to right,
             rgba(0, 0, 0, .96) 0%,
             rgba(0, 0, 0, .58) 38%,
             rgba(0, 0, 0, .18) 100%),

         linear-gradient(to top,
             rgba(0, 0, 0, 1) 0%,
             rgba(0, 0, 0, .32) 42%,
             rgba(0, 0, 0, .58) 100%);
 }

 .hero-content {
     position: absolute;
     left: 58px;
     bottom: 92px;
     max-width: 520px;
     z-index: 3;
 }

 .hero-small {
     font-size: 14px;
     letter-spacing: 2.8px;
     text-transform: uppercase;
     color: rgba(255, 255, 255, .58);
     font-weight: 300;
     margin-bottom: 18px;
 }

 .hero-title {
     font-size: clamp(34px, 5.5vw, 74px);
     line-height: .96;
     letter-spacing: -2.6px;
     font-weight: 300;
     margin: 0 0 18px;
 }

 .hero-poster-title {
     width: auto;
     max-width: min(680px, 85vw);
     display: block;
     margin-bottom: 22px;
     filter:
         drop-shadow(0 10px 35px rgba(0, 0, 0, .65)) drop-shadow(0 2px 12px rgba(0, 0, 0, .55));
     user-select: none;
     pointer-events: none;
 }

 @media(max-width:991px) {
     .hero-poster-title {
         max-width: 420px;
     }
 }

 @media(max-width:575px) {
     .hero-poster-title {
         max-width: 82vw;
         margin-bottom: 16px;
     }

     .section {
         padding: 4px 4px 2px !important;
     }

     .section-head {
         margin-bottom: 6px;
     }

     .section-title {
         font-size: 16px;
     }

     .movie-row {
         gap: 8px;
         padding-bottom: 16px;
     }

     .movie-card {
         flex: 0 0 118px;
     }

     .movie-poster {
         aspect-ratio: 2/3;
         border-radius: 5px;
     }

     .hero-buttons {
         flex-direction: row;
         gap: 8px;
     }

     .hero-btn {
         height: 38px;
         padding: 0 14px;
         font-size: 13px;
     }

     .hero-btn svg {
         width: 18px;
         height: 18px;
     }
 }

 .hero-desc {
     font-size: 18px !important;
     line-height: 1.9;
     color: rgba(255, 255, 255, .62);
     font-weight: 300;
     max-width: 470px;
     margin: 0;
 }

 .hero-info {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
     margin-top: 22px;
 }

 .hero-info span {
     font-size: 16px !important;
     font-weight: 300;
     color: rgba(255, 255, 255, .7);
     border: 1px solid rgba(255, 255, 255, .14);
     padding: 7px 12px;
     border-radius: 99px;
     background: rgba(0, 0, 0, .22);
 }

 .hero-buttons {
     display: flex;
     gap: 10px;
     margin-top: 24px;
 }

 .hero-btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 9px;
     height: 44px;
     padding: 0 22px;
     border-radius: 4px;
     border: 0;
     font-size: 15px;
     font-weight: 700;
     color: #fff;
     background: rgba(109, 109, 110, .45);
 }

 .hero-btn.primary {
     background: #fff;
     color: #000;
 }

 .hero-btn svg {
     width: 22px;
     height: 22px;
 }

 .slider-dots {
     position: absolute;
     right: 42px;
     bottom: 42px;
     z-index: 5;
     display: flex;
     gap: 9px;
 }

 .slider-dot {
     width: 8px !important;
     height: 8px !important;
     border-radius: 150px !important;
     background: rgba(255, 255, 255, .28);
     border: 0;
     padding: 0;
     cursor: pointer;
 }

 .slider-dot.active {
     width: 10px !important;
     height: 10px !important;
     background: var(--primary);
 }

 .section {
     padding: 10px 24px 8px !important;
     background: #000;
     position: relative;
 }

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

 .section-title {
     font-size: 20px;
     font-weight: 300;
     letter-spacing: -.4px;
     margin: 0;
 }

 .section-sub {
     margin-top: 7px;
     font-size: 12px;
     line-height: 1.7;
     color: var(--muted);
     font-weight: 300;
 }

 .see-all {
     font-size: 12px;
     color: rgba(255, 255, 255, .52);
     font-weight: 300;
 }

 .movie-row {
     display: flex;
     gap: 12px;
     padding-bottom: 22px;
     overflow-x: auto !important;
     overflow-y: hidden !important;
     scroll-behavior: smooth;
     overscroll-behavior-x: contain;
     cursor: default;
     user-select: auto;
     scrollbar-width: none;
 }

 .movie-row:active {}

 .movie-row.dragging {
     scroll-snap-type: none;
 }

 .movie-row::-webkit-scrollbar {
     display: none;
 }

 .movie-card {
     flex: 0 0 205px !important;
     scroll-snap-align: start;
     background: #000;
     border-radius: 4px;
     overflow: hidden;
     position: relative;
 }

 .movie-poster {
     position: relative;
     width: 100%;
     aspect-ratio: 2/3 !important;
     background: #111;
     overflow: hidden;
     border-radius: 7px;
 }

 .movie-poster img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     opacity: .96;
     transform: none;
     transition: opacity .2s ease;
     backface-visibility: hidden;
 }

 @media (hover:hover) {
     .movie-card:hover .movie-poster img {
         opacity: 1;
     }
 }

 .movie-body {
     display: none;
 }

 .movie-body {
     padding: 12px 0 2px;
 }

 .movie-title {
     margin: 0;
     font-size: 13px;
     line-height: 1.35;
     font-weight: 300;
     color: #fff;
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
 }

 .movie-meta {
     margin-top: 5px;
     display: flex;
     justify-content: space-between;
     gap: 10px;
     font-size: 11px;
     color: rgba(255, 255, 255, .48);
     font-weight: 300;
 }

 .movie-badge {
     position: absolute;
     top: 9px;
     left: 9px;
     z-index: 2;
     font-size: 10px;
     font-weight: 300;
     padding: 5px 8px;
     border-radius: 99px;
     background: rgba(232, 76, 61, .9);
     color: #fff;
 }

 .black-band {
     padding: 70px 42px;
     background: #000;
     border-top: 1px solid rgba(255, 255, 255, .06);
     border-bottom: 1px solid rgba(255, 255, 255, .06);
     display: grid;
     grid-template-columns: 1.2fr .8fr;
     gap: 40px;
     align-items: center;
 }

 .black-band h2 {
     font-size: clamp(28px, 4vw, 52px);
     line-height: 1;
     letter-spacing: -2px;
     font-weight: 300;
     margin: 0;
 }

 .black-band p {
     margin: 18px 0 0;
     max-width: 620px;
     font-size: 13px;
     line-height: 1.9;
     color: rgba(255, 255, 255, .58);
     font-weight: 300;
 }

 .price-panel {
     border: 1px solid rgba(255, 255, 255, .12);
     padding: 28px;
     background: #030303;
 }

 .price-panel .price {
     font-size: 28px;
     font-weight: 300;
     letter-spacing: -.8px;
 }

 .footer {
     background: #000;
     padding: 54px 42px;
     display: grid;
     grid-template-columns: 1.4fr repeat(3, 1fr);
     gap: 30px;
     border-top: 1px solid rgba(255, 255, 255, .08);
 }

 .footer h4 {
     margin: 0 0 16px;
     font-size: 12px;
     font-weight: 300;
     color: #fff;
     letter-spacing: .8px;
 }

 .footer p,
 .footer a {
     display: block;
     font-size: 12px;
     line-height: 1.9;
     color: rgba(255, 255, 255, .48);
     font-weight: 300;
     margin: 0;
 }

 @media(max-width:991px) {

     .nav-menu {
         display: none;
     }

     .hero-content {
         left: 28px;
         right: 28px;
         bottom: 72px;
     }

     .black-band {
         grid-template-columns: 1fr;
     }

     .footer {
         grid-template-columns: 1fr 1fr;
     }

     .top-nav {
         position: fixed;
         top: 0;
         left: 0;
         width: 100%;

         padding: 13px 12px 10px !important;
         display: grid;
         grid-template-columns: minmax(84px, 1fr) auto minmax(84px, 1fr);
         grid-template-areas:
             "actions logo left"
             "menu menu menu";
         align-items: center;
         row-gap: 13px;
         column-gap: 10px;

         background:
             linear-gradient(to bottom,
                 rgba(0, 0, 0, .96) 0%,
                 rgba(0, 0, 0, .9) 52%,
                 rgba(0, 0, 0, .58) 78%,
                 transparent 100%);

         backdrop-filter: blur(14px);
     }

     .logo {
         font-size: 15px;
         letter-spacing: 2px;
     }

     .app-top-logo img {
         height: 34px !important;
         max-width: 34px;
     }

     .app-top-logo-word {
         height: 22px !important;
         max-width: 150px;
     }

     .nav-menu {
         position: relative;
         display: flex !important;
         width: 100%;
         max-width: 100%;
         min-width: 0;
         overflow-x: auto;
         overflow-y: hidden;
         gap: 24px;
         justify-content: flex-start;

         padding: 0 2px 8px;

         scrollbar-width: none;
         -webkit-overflow-scrolling: touch;
     }

     .nav-menu::before {
         content: none;
     }

     .nav-center-links,
     .nav-right-links {
         display: contents;
     }

     .nav-menu::-webkit-scrollbar {
         display: none;
     }

     .nav-menu a {
         flex: 0 0 auto;
         min-height: 24px;
         display: inline-flex;
         align-items: center;

         font-size: 11px;
         font-weight: 500;
         letter-spacing: .45px;

         color: rgba(255, 255, 255, .72);

         padding: 0;
         border-radius: 0;
         background: transparent;
         border: 0;

         white-space: nowrap;
     }

     .nav-menu a.nav-cinebox-btn {
         width: auto;
         height: 33px;
         margin-left: 0;
         padding: 6px 0 0;
     }

     .nav-cinebox-btn img {
         width: auto;
         max-width: 122px;
         height: 21px;
         transform: none;
     }

     .nav-menu-fm {
         flex: 0 0 auto;
         font-size: 11px;
         font-weight: 500;
         letter-spacing: .45px;
         color: rgba(255, 255, 255, .72);
         min-height: 24px;
         padding: 0;
         border-radius: 0;
         background: transparent;
         border: 0;
         white-space: nowrap;
     }

     .nav-red-separator {
         flex: 0 0 1px;
         width: 1px;
         height: 22px;
         margin: 4px 2px 0;
     }

     .nav-actions {
         position: static;
         grid-area: auto;
         grid-column: 1;
         grid-row: 1;
         width: auto;
         display: none !important;
         align-items: center;
         gap: 8px;
         justify-content: flex-start;
         z-index: 2;
         pointer-events: auto;
     }

     .nav-search-btn {
         position: relative;
         left: auto;
         top: auto;
         transform: none;
         justify-self: start;
         pointer-events: auto;
     }

     .nav-account-actions {
         grid-column: 3;
         justify-self: end;
         display: none !important;
         gap: 7px;
         pointer-events: auto;
     }

     .top-nav.nav-compact {
         padding-top: 12px !important;
         padding-bottom: 12px !important;
         row-gap: 2px;
     }

     .nav-search-btn {
         width: 118px;
         min-width: 118px;
         height: 34px;
         padding: 0 12px;
     }

     .nav-search-btn span {
         display: inline;
         font-size: 10px;
     }

     .nav-btn {
         height: 32px;
         max-width: 76px;
         padding: 0 11px;
         font-size: 11px;
         border-radius: 999px;
         overflow: hidden;
         text-overflow: ellipsis;
         white-space: nowrap;
     }

     .nav-actions .nav-btn:first-child {
         display: flex;
         align-items: center;
         justify-content: center;
     }

     .hero-slider {
         margin-top: 84px;
     }

     .kino-search-overlay {
         padding: 72px 12px 18px;
     }

     .kino-search-modal {
         max-height: calc(100vh - 90px);
         padding: 22px 16px 18px;
         border-radius: 22px;
     }

     .kino-search-field {
         height: 52px;
         border-radius: 15px;
     }

     .kino-search-results {
         grid-template-columns: 1fr;
         max-height: 58vh;
     }

     .fm-box-overlay {
         padding: 72px 12px 18px;
     }

     .fm-box-modal {
         max-height: calc(100vh - 90px);
         padding: 22px 16px 18px;
         border-radius: 22px;
     }

     .fm-box-list {
         grid-template-columns: 1fr;
         max-height: 48vh;
     }

     .fm-player {
         grid-template-columns: 1fr;
     }
 }

 @media(max-width:575px) {

     .logo {
         font-size: 14px;
         letter-spacing: 3px;
     }

     .nav-btn {
         font-size: 11px;
         padding: 8px 12px;
     }

     .nav-actions .nav-btn:not(.primary) {
         display: inline-flex;
     }

     .kino-search-head h2 {
         font-size: 25px;
     }

     .kino-search-card {
         grid-template-columns: 48px 1fr;
     }

     .kino-search-tag {
         display: none;
     }

     .hero-slider {
         height: 80vh;
         min-height: 420px;
     }

     .hero-content {
         left: 18px;
         right: 18px;
         bottom: 58px;
     }

     .hero-title {
         font-size: 42px;
         letter-spacing: -1.6px;
     }

     .hero-desc {
         font-size: 12px !important;
     }

     .hero-buttons {
         flex-direction: column;
         align-items: flex-start;
     }

     .hero-info span {
         font-size: 10px !important;
     }

     .slider-dots {
         left: 18px;
         right: auto;
         bottom: 24px;
     }

     .section {
         padding: 6px 6px 4px !important;
     }

     .movie-card {
         flex: 0 0 118px !important;
     }

     .section-title {
         font-size: 17px;
     }

     .movie-poster {
         aspect-ratio: 2/3 !important;
     }

     .black-band {
         padding: 54px 16px;
     }

     .footer {
         padding: 42px 16px;
         grid-template-columns: 1fr;
     }
 }

 .hero-glow {
     position: absolute;
     inset: 0;
     z-index: 1;
     overflow: hidden;
     pointer-events: none;
 }

 .hero-glow::before,
 .hero-glow::after {
     content: "";
     position: absolute;
     border-radius: 50%;
     filter: blur(120px);
     mix-blend-mode: screen;
     opacity: .9;
 }

 /* LEFT RED/ORANGE GLOW */
 .hero-glow::before {
     width: 720px;
     height: 720px;
     left: -140px;
     bottom: -220px;

     background:
         radial-gradient(circle,
             rgba(232, 76, 61, .55) 0%,
             rgba(255, 120, 70, .35) 28%,
             rgba(255, 255, 255, .12) 48%,
             transparent 74%);

     animation: glowLeft 5s ease-in-out infinite alternate;
 }

 /* TOP RIGHT BLUE/PURPLE GLOW */
 .hero-glow::after {
     width: 620px;
     height: 620px;
     top: -160px;
     right: -120px;

     background:
         radial-gradient(circle,
             rgba(80, 120, 255, .38) 0%,
             rgba(170, 90, 255, .25) 30%,
             rgba(255, 255, 255, .10) 50%,
             transparent 75%);

     animation: glowRight 4s ease-in-out infinite alternate;
 }

 @keyframes glowLeft {
     0% {
         transform: scale(1) translate(0, 0);
         opacity: .75;
     }

     100% {
         transform: scale(1.18) translate(60px, -35px);
         opacity: 1;
     }
 }

 @keyframes glowRight {
     0% {
         transform: scale(1) translate(0, 0);
         opacity: .55;
     }

     100% {
         transform: scale(1.22) translate(-50px, 40px);
         opacity: .95;
     }
 }

 .movie-detail-overlay {
     position: fixed;
     inset: 0;
     z-index: 9999;
     background: rgba(0, 0, 0, .76);
     backdrop-filter: blur(12px);
     display: none;
     align-items: center !important;
     justify-content: center;
     padding: 26px 14px;
     overflow-y: auto;
 }

 .movie-detail-overlay.show {
     display: flex;
 }

 .movie-detail-modal {
     width: min(960px, 100%);
     max-height: calc(100vh - 52px) !important;
     background: #141414;
     border-radius: 10px;
     overflow-y: auto !important;
     overflow-x: hidden !important;
     position: relative;
     box-shadow: 0 30px 120px rgba(0, 0, 0, .75);
     animation: modalIn .22s ease;
 }

 .movie-detail-modal::-webkit-scrollbar {
     width: 6px;
 }

 .movie-detail-modal::-webkit-scrollbar-thumb {
     background: rgba(255, 255, 255, .18);
     border-radius: 99px;
 }

 @keyframes modalIn {
     from {
         opacity: 0;
         transform: translateY(18px) scale(.98);
     }

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

 .movie-detail-close {
     position: absolute;
     top: 16px;
     right: 16px;
     z-index: 5;
     width: 38px;
     height: 38px;
     border-radius: 50%;
     border: 0;
     background: rgba(0, 0, 0, .62);
     color: #fff;
     font-size: 24px;
     line-height: 1;
     cursor: pointer;
 }

 .movie-detail-hero {
     height: 520px;
     position: relative;
     background-size: cover;
     background-position: center;
 }

 .movie-detail-hero::after {
     content: "";
     position: absolute;
     inset: 0;
     background:
         linear-gradient(to top, #141414 0%, rgba(20, 20, 20, .78) 28%, rgba(20, 20, 20, .12) 70%),
         linear-gradient(to right, rgba(0, 0, 0, .75), rgba(0, 0, 0, .08));
 }

 .movie-detail-info {
     position: absolute;
     left: 38px;
     right: 38px;
     bottom: 38px;
     z-index: 2;
 }

 .movie-detail-title {
     font-size: clamp(34px, 5vw, 68px);
     line-height: .95;
     letter-spacing: -2px;
     font-weight: 300;
     margin: 0 0 22px;
 }

 .movie-detail-actions {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .movie-detail-play {
     height: 46px;
     padding: 0 24px;
     border-radius: 4px;
     border: 0;
     background: #fff;
     color: #000;
     font-size: 15px;
     font-weight: 700;
     display: inline-flex;
     align-items: center;
     gap: 9px;
     cursor: pointer;
 }

 .movie-detail-circle {
     width: 42px;
     height: 42px;
     border-radius: 50%;
     border: 1px solid rgba(255, 255, 255, .48);
     background: rgba(35, 35, 35, .55);
     color: #fff;
     font-size: 22px;
     cursor: pointer;
 }

 .movie-detail-body {
     padding: 0 38px 42px;
     display: grid;
     grid-template-columns: 1.45fr .75fr;
     gap: 48px;
 }

 .movie-detail-meta {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
     margin-bottom: 18px;
 }

 .movie-detail-meta span {
     font-size: 13px;
     font-weight: 300;
     color: rgba(255, 255, 255, .74);
 }

 .movie-detail-age {
     border: 1px solid rgba(255, 255, 255, .34);
     padding: 1px 6px;
 }

 .movie-detail-desc {
     font-size: 15px;
     line-height: 1.8;
     font-weight: 300;
     color: rgba(255, 255, 255, .86);
     margin: 0;
 }

 .movie-detail-side p {
     margin: 0 0 12px;
     font-size: 13px;
     line-height: 1.65;
     color: rgba(255, 255, 255, .46);
     font-weight: 300;
 }

 .movie-detail-side b {
     color: rgba(255, 255, 255, .82);
     font-weight: 400;
 }

 @media(max-width: 700px) {
     .movie-detail-overlay {
         padding: 0;
         align-items: stretch;
         overflow-y: auto !important;
     }

     .movie-detail-modal {
         min-height: 100vh;
         max-height: none !important;
         border-radius: 0;
     }

     .movie-detail-hero {
         height: 430px;
     }

     .movie-detail-info {
         left: 18px;
         right: 18px;
         bottom: 28px;
     }

     .movie-detail-body {
         padding: 0 18px 34px;
         grid-template-columns: 1fr;
         gap: 24px;
     }

     .movie-detail-title {
         font-size: 38px;
     }
 }

 .pro-alert-overlay {
     position: fixed;
     inset: 0;
     z-index: 999999;
     background: rgba(0, 0, 0, .72);
     backdrop-filter: blur(14px);
     display: none;
     align-items: center;
     justify-content: center;
     padding: 18px;
 }

 .pro-alert-overlay.active {
     display: flex;
 }

 .pro-alert-box {
     width: min(420px, 100%);
     position: relative;
     background: linear-gradient(180deg, rgba(28, 28, 28, .96), rgba(8, 8, 8, .98));
     border: 1px solid rgba(255, 255, 255, .12);
     border-radius: 24px;
     padding: 34px 26px 24px;
     text-align: center;
     color: #fff;
     box-shadow: 0 30px 90px rgba(0, 0, 0, .65);
     animation: proPop .25s ease forwards;
 }

 .pro-alert-close {
     position: absolute;
     top: 12px;
     right: 12px;
     width: 34px;
     height: 34px;
     border-radius: 50%;
     border: 0;
     background: rgba(255, 255, 255, .08);
     color: #fff;
     font-size: 20px;
     cursor: pointer;
 }

 .pro-alert-icon {
     width: 58px;
     height: 58px;
     border-radius: 50%;
     margin: 0 auto 18px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: #e50914;
     color: #fff;
     box-shadow: 0 0 34px rgba(229, 9, 20, .45);
 }

 .pro-alert-box h3 {
     font-size: 20px;
     font-weight: 500;
     margin: 0 0 10px;
 }

 .pro-alert-box p {
     margin: 0;
     font-size: 14px;
     line-height: 1.7;
     font-weight: 300;
     color: rgba(255, 255, 255, .72);
 }

 .pro-alert-actions {
     margin-top: 24px;
     display: flex;
     gap: 12px;
     justify-content: center;
 }

 .pro-alert-btn {
     min-width: 118px;
     border: 0;
     border-radius: 999px;
     padding: 12px 18px;
     font-size: 13px;
     font-weight: 400;
     cursor: pointer;
 }

 .pro-alert-btn.primary {
     background: #e50914;
     color: #fff;
 }

 .pro-alert-btn.ghost {
     background: rgba(255, 255, 255, .08);
     color: #fff;
 }

 @keyframes proPop {
     from {
         opacity: 0;
         transform: scale(.94) translateY(10px);
     }

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



 .movie-row {}

 .row-arrow {
     position: absolute;
     top: 58%;
     transform: translateY(-50%);
     z-index: 20;
     width: 42px;
     height: 72px;
     border: 0;
     border-radius: 14px;
     background: rgba(0, 0, 0, .55);
     color: #fff;
     font-size: 38px;
     cursor: pointer;
     backdrop-filter: blur(14px);
 }

 .row-arrow-left {
     left: 6px;
 }

 .row-arrow-right {
     right: 6px;
 }

 .row-arrow:hover {
     background: rgba(229, 9, 20, .85);
 }

 @media(max-width: 768px) {
     .row-arrow {
         width: 34px;
         height: 56px;
         font-size: 30px;
         top: 62%;
     }
 }

 @media(max-width: 768px) {
     .movie-detail-overlay {
         align-items: flex-start !important;
         padding: 12px 10px 34px !important;
         overflow-y: auto !important;
         -webkit-overflow-scrolling: touch;
     }

     .movie-detail-modal {
         width: 100% !important;
         max-height: none !important;
         min-height: auto !important;
         overflow: visible !important;
         border-radius: 16px !important;
         margin-top: 12px !important;
         margin-bottom: 40px !important;
     }

     .movie-detail-hero {
         min-height: 360px !important;
         height: 360px !important;
         border-radius: 16px 16px 0 0 !important;
     }

     .movie-detail-info {
         padding: 22px 18px !important;
     }

     .movie-detail-title {
         font-size: 28px !important;
         line-height: 1.05 !important;
     }

     .movie-detail-body {
         display: block !important;
         padding: 20px 18px 30px !important;
         padding: 20px 18px 30px !important;
         max-height: none !important;
         overflow: visible !important;
     }

     .movie-detail-desc {
         max-height: none !important;
         overflow: visible !important;
         font-size: 14px !important;
         line-height: 1.75 !important;
         white-space: normal !important;
     }

     .movie-detail-side {
         margin-top: 18px !important;
     }
 }
