 :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: 22px 22px !important;
     display: flex;
     align-items: center;
     justify-content: space-between;
     background: linear-gradient(to bottom, rgba(0, 0, 0, .82), rgba(0, 0, 0, 0));
 }

 .logo {
     font-size: 17px;
     letter-spacing: 4px;
     font-weight: 300;
 }

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

 .nav-menu {
     display: flex;
     gap: 34px;
     align-items: center;
 }

 .nav-menu a {
     position: relative;
     font-size: 12px;
     color: rgba(255, 255, 255, .68);
     font-weight: 300;
     letter-spacing: .6px;
     transition: .28s ease;
     padding-bottom: 6px;
 }

 /* 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 {
     display: flex;
     gap: 12px;
     align-items: center;
 }

 .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: 10px 10px 8px;
         display: flex;
         flex-direction: column;
         align-items: flex-start;
         gap: 10px;

         background:
             linear-gradient(to bottom,
                 rgba(0, 0, 0, .96),
                 rgba(0, 0, 0, .82),
                 rgba(0, 0, 0, .25),
                 transparent);

         backdrop-filter: blur(14px);
     }

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

     .nav-menu {
         display: flex !important;
         width: 100%;
         overflow-x: auto;
         overflow-y: hidden;
         gap: 8px;

         padding-bottom: 2px;

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

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

     .nav-menu a {
         flex: 0 0 auto;

         font-size: 11px;
         font-weight: 600;
         letter-spacing: .3px;

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

         padding: 7px 12px;
         border-radius: 999px;

         background: rgba(255, 255, 255, .08);
         border: 1px solid rgba(255, 255, 255, .08);

         white-space: nowrap;
     }

     .nav-actions {
         position: absolute;
         top: 10px;
         right: 10px;
     }

     .nav-btn {
         height: 32px;
         padding: 0 12px;
         font-size: 11px;
         border-radius: 999px;
     }

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

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

 @media(max-width:575px) {

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

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

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