img[vd-node="logo"]{
    left: 0px !important;
}
#footer {
    margin-top: 100px;
}
vd-component#footer_footer_five_5 > section:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(3) > div:nth-child(1) > ul:nth-child(2) > li:nth-child(2) > vd-component-param:nth-child(1) > a:nth-child(1) {

width:100% !important;
}
.footer .content-data {

    margin-top: -3% !important;
}

#share_new{
    
    display: flex;
}
.tab-content>.active {
    display: block;
}
.paperview-tabs .picture img {
    border-radius: 8px;
}

    /* Post-home CSS styles*/


    body.page-bg-post-home {
    min-height: 100vh;
    }
    .bannerType-video {
    aspect-ratio: 16/9; /* or use fixed min-height */
    position: relative;
    overflow: hidden;
    }


    body {
    margin: 4rem auto 1rem;
    font-family: "Jost", sans-serif;
    background-color: #000;
    color: var(--white); /* Use white color variable */
    }

    /* Make sure headings also pick it up */
    h1, h2, h3, h4, h5, h6, p, a, button {
    font-family: 'Jost', sans-serif;
    }

     /* post home */
    .carousel { 
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 0.5rem;
      /*padding: 0 2rem 1rem;  padding left & right */
      margin: 0 2rem 2rem;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }

    .carousel-title {
    font-size: 1.1rem;
    font-weight: 400; 
    margin: 0 43px 20px; /* reduced to 40 from 70px Aug 19 */
    font-family: "Jost", sans-serif !important; /* Use 'Inter' font-family */
    }

    .carousel-container {
      padding-left: 16px; /* testing out container setting from theme*/
      padding-right: 16px;
      margin-left: 16px;
      margin-right: 16px; 
      width: 100%;
    }


    .see-all {
    float: right;
    font-weight: 400;
    font-size: 0.9rem;
    font-family: "jost", sans-serif; /* Use 'Inter' font-family */
    }


    .carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 70px;
    }


    .book-carousel {
    display: flex;
    overflow-x: auto;
    gap: 10px; /*removed gap from 10px to zero check.*/
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 10px;
    width: 100%;
    }
    .book-carousel::-webkit-scrollbar {
    display: none;
    }


    .movie-card {
    flex: 0 0 auto;
    min-width: 221px;
    max-width: 221px;
    margin-right: 0px;
    /*background: #111;*/
    border-radius: 8px;
    overflow: hidden;
    scroll-snap-align: start;
    }

    .image-container {
    position: relative;
    overflow: hidden;
    background: #000;
    aspect-ratio: 2 / 3; /* responsive height instead of fixed px */
    width: 100%;
    }


    .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    }
    .movie-card:hover img {
    transform: scale(1.08);
    }

    .card-content {
    padding: 1px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 180px; /* Ensure consistent height */
    }
    .card-content h3 {
    font-size: 1rem;
    font-weight: 400; 
    font-family: "Jost", sans-serif;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    }
    .card-content p {
    font-size: 0.9rem;
    color: var(--gray); /* Use gray color variable */
    font-family: "Jost", sans-serif; /* Use 'Inter' font-family */
    }
    .buy-button {
    display: inline-block;
    background-color: #ce6904; /* Use red color variable */
    color: var(--white); /* White color */
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
    font-family: "Jost", sans-serif; /* Use 'Inter' font-family */
    }
    .buy-button:hover {
    background-color: #cc5600;
    }

    /* card content mo essentials */

    /* movie-card1 beyond streaming Center the movie card container */
    .movie-card1 {
    display: flex;
    flex-direction: column;
    align-items: center; /* centers horizontally */
    justify-content: center;
    margin: 40px auto;
    text-align: center;
    width: 100%;
    max-width: 320px; /* controls card width */
    }

    /* Make sure image scales properly */
    .movie-card1 .card-image {
    width: 100%;
    /*height: auto;*/
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .movie-card1 .card-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
    }

    /* Optional: center the overlay text inside the image */
    .movie-card1 .card-overlay {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    }

    /* Center the title text */
    .movie-card1 .card-title {
    margin-top: 10px;
    font-weight: 600;
    text-transform: uppercase;
    }



    /* Product Grid */
    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 25px;
    }

    .product-card {
      background: var(--card-bg);
      border-radius: 14px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .product-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.6);
    }

    .image-container {
    position: relative;
    width: 100%;
    height: auto;       /* allow image to define height */
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    }

    .image-container img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: opacity 0.4s ease;
    }

    .image-back {
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
    }

    .product-card:hover .image-front {
      opacity: 0;
    }

    .product-card:hover .image-back {
      opacity: 1;
    }

    .card-content {
      padding: 1px;
      height: fit-content;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      flex-grow: 1;
    }

    .card-content h3 {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 8px;
      margin-top: 10px;
      color: var(--text);
      white-space: normal; /* allow full wrapping */
      overflow: visible;   /* no hiding */
      text-overflow: unset; /* disable truncation */
    }

    .price {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--brand);
      margin-bottom: 8px;
    }

    .details {
      font-size: 0.85rem;
      color: var(--text-light);
      margin-bottom: 10px;
    }

    .description {
      font-size: 0.85rem;
      color: var(--text);
      margin-bottom: 12px;
    }

     /* card content mo essentials ends */

    .carousel-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      color: #fff;
      font-size: 2rem;
      padding: 0.3rem 0.6rem;
      cursor: pointer;
      border-radius: 0;
      z-index: 10;
      opacity: 1;
      transition: none;
    }

    .carousel-nav:hover,
    .carousel-nav:focus,
    .carousel-nav:active {
      background: none;
      color: #fff;
      outline: none;
      box-shadow: none;
    }

    .carousel-nav.left {
      left: 0.25rem;
    }

    .carousel-nav.right {
      right: 0.25rem;
    }

    .carousel-nav:disabled {
      display: none;
    }

    /* Glowing border on texts */

    .text-card {
      position: relative;
      max-width: 600px;
      margin: 20px auto 40px;
      padding: 2rem;
      border-radius: 20px;
      text-align: center;
      color: #fff;
      background: rgba(0, 0, 0, 0.4); /* transparent */
      backdrop-filter: blur(10px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
      animation: floatUp 3s ease-in-out infinite alternate;
      z-index: 1;
    }

    /* Glowing animated border effect */
    .text-card::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 20px;
      padding: 2px;
      background: linear-gradient(270deg, #e50914, #ff8a00, #e50914);
      background-size: 300% 300%;
      animation: borderMove 6s linear infinite;
      -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      z-index: -1;
    }

    @keyframes borderMove {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    @keyframes floatUp {
      0% { transform: translateY(0); }
      100% { transform: translateY(-6px); }
    }

    @media (max-width: 768px) {
      .text-card {
        margin: 0 1rem 2rem;
        padding: 1.5rem;
      }
    }



    /* Responsive: up to 6 cards on desktop *
    @media (min-width: 1280px) {
      .movie-card {
        width: calc((100% - 6rem) / 7);
      }
    }

    @media (max-width: 1024px) {
      .movie-card {
        width: calc((100% - 3rem) / 4);
      }
    }

    @media (max-width: 768px) {
      .movie-card {
        width: calc((100% - 2rem) / 3);
      }
    }

    @media (max-width: 480px) {
      .movie-card {
        width: calc((100% - 1rem) / 2.5);
      }
    }

    .delay-load {
      opacity: 0;
      transition: opacity 1s ease;
    }
    .delay-load.visible {
      opacity: 1;
    }*/

    /*.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    padding: 0;
    height: 100%;
    width: 50px;
    cursor: pointer;
    z-index: 2;
    }
    .carousel-nav svg {
    position: relative;
    z-index: 3;
    }
    .carousel-nav.left {
    left: 0;
    }
    .carousel-nav.right {
    right: 0;
    }
    .fade-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    z-index: 1;
    }
    .left-fade {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), transparent);
    }
    .right-fade {
    background: linear-gradient(to left, rgba(0, 0, 0, 0.8), transparent);
    }*/

    /*
    @media (max-width: 768px) {
    .carousel-title {
    margin: 0 10px 20px;
    }
    .carousel-wrapper {
    padding-left: 10px;
    }
    .movie-card {
    min-width: 70%;
    }
    #share_new{
        display: -webkit-inline-box;
    }
    .mobcontent{
        padding-top:70px;
    }
    #content_content_banner_four_4 .main-heading {
        margin-top: 20px !important;
    }
    #content_content_banner_four_4 .banner-section-seasons .item {
        min-height: 641px !important;
    }
    }*/


    /* Footer section CSS for appstore */

    .footer-app-buttons {
        display: flex;
        justify-content: flex-start; /* Align items to the left */
        align-items: center;
        gap: 12px; /* Optional spacing between buttons */
        margin-top: 10px; /* Optional spacing */
    }

    .footer-app-buttons a {
        display: inline-block;
    }

    .footer-app-buttons img {
        max-width: 140px; /* Adjust as needed */
        height: auto;
        /*display: block;*/ 
    }
    .footer-section {
        display:none;
    }
    /* Footer remove side by side list items */

    .footer-coll .widget ul.menu li {
        margin-bottom: 10px !important;
        width: 100% !important;
        /*display: block !important;*/
    }

    /* reduce spacing around footer logo and description */

    .gen-footer-logo {
    margin-bottom: 8px; 
    /*display: block;*/ 
    }

    .footer-coll .widget p {
    margin-top: 0;
    }

    .footer-para{

    padding: 0px 30px 0 0 !important;
    margin-top: -18% !important;

    }

    /* Home page ------------------------------------------- */

/* Align all content inside the component to the left */
.vd, 
.gen-movie-info,
.gen-movie-meta-holder,
.social-share,
.gen-meta-after-title {
  text-align: left !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
}

/* Mobile-specific styles */
/* Burnt Orange for real links (not just #) */
a.buy-button[href]:not([href="#"]),
a.card-button[href]:not([href="#"]) {
  background-color: #ce6904; /* Burnt Orange*/
  color: white;
}
a.buy-button[href]:not([href="#"]):hover,
a.card-button[href]:not([href="#"]):hover {
  background-color: #CC5600;
}

/* Gray for placeholder links (#) */
a.buy-button[href="#"],
a.card-button[href="#"] {
  background-color: #5e5d5c; /* Gray */
  color: white;
}
a.buy-button[href="#"]:hover,
a.card-button[href="#"]:hover {
  background-color: #4a4948;
}
.buy-button {
 display: inline-block;
 background-color: #ce6904; /* Use red color variable */
 color: var(--white); /* White color */
 padding: 8px 16px;
 font-size: 0.9rem;
 font-weight: 600;
 border-radius: 5px;
 text-decoration: none;
 transition: background 0.3s ease;
 font-family: "Jost", sans-serif; /* Use 'Inter' font-family */
}
.buy-button:hover {
 background-color: #cc5600;
}

    /* Home Landing page main */
    .main {
    width: 100%;
    margin-top: -210px;
    background-size: contain;
    align-items: center;
    overflow-x: hidden;
    justify-content: center;
    display: flex;
    background-position: center;
    min-height: 710px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        /*url(https://assets.nflxext.com/ffe/siteui/vlv3/a1dc92ca-091d-4ca9-a05b-8cd44bbfce6a/f9368347-e982-4856-a5a4-396796381f28/RS-en-20191230-popsignuptwoweeks-perspective_alpha_website_large.jpg);*/
        url(https://dxqtuatoombic.cloudfront.net/zTRvh15xjc7Mxl22MRwhCuyrIIlzEfBG/3D28C83C85544F0D9517DD2E7C7EEDAA/il/63f0f94a7a104a01800496711d3f9804/ELON_Landing_Page_Main_002__1_-1758315435485.jpg)
    }

    .body-container {
        background-color: #000;
    }


/* home landing page button  */

.outlined-button {
      background: transparent;
      color: rgb(204, 85, 0);
      border: 2px solid rgba(204, 85, 0);
      border-radius: 30px;
      padding: 0.75rem 1.8rem;
      font-size: 1rem;
      letter-spacing: 0.5px;
      cursor: pointer;
      transition: all 0.3s ease;
      backdrop-filter: blur(5px);
    }

    .outlined-button:hover {
      border-color: rgba(223, 104, 0, 0.8);
      transform: translateY(-2px);
      background: rgba(255, 255, 255, 0.1);
    }

    /* home landing button end */

    .container1 {
    width: 100%;
    min-height: 260px; /* 460 */
    background-color: black;
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    text-align: left;
    }

    .container1f {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 60px;
      flex-wrap: wrap;
      max-width: 1500px;
      margin-left: auto;
      margin-right: auto;
    }

    .container1 img {
    display: flex;
    justify-content: center;
    flex-direction: row;
    object-fit: contain;
    object-position: center;
    align-self: center;

    max-width: 100%;
    height: 325px;
    }

    .container1 .image {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    align-self: center;
    object-fit: contain;
    }

    .collection-section-l { 
      text-align: center;
      padding: 40px 10px 20px;
      max-width: 900px;
      background-color: #000;
      margin: 0 auto;
      color: white;
    }


    .text h1, .text h2, .collection-section-l h1 {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 1rem;
      position: relative;
      display: inline-block;
    }
    .collection-section-l h1 {
    text-align: center;
    }
    .collection-section-l p {
        text-align: center;
        font-weight: 400;
    }

    /* home landing page logo */
    .logo img {
    margin-top: 10px;
    margin-bottom: 5px;
    width: 80px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .logo img:hover {
      transform: scale(1.05);
      /*box-shadow: 0 12px 30px rgba(229, 9, 20, 0.3);*/
      box-shadow: 0 12px 30px rgba(204, 85, 0);
    }

    .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: center;
    }

    /* Ends */

    /* Home landing page Partners Sponsors */

    .text-card1 {
      position: relative;
      max-width: 400px;
      margin: 20px auto 40px;
      padding: 2rem;
      border-radius: 20px;
      text-align: center;
      color: #fff;
      background: rgba(0, 0, 0, 0.4); /* transparent */
      backdrop-filter: blur(10px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
      animation: floatUp 3s ease-in-out infinite alternate;
      z-index: 1;
    }

    /* Glowing animated border effect */
    .text-card1::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 20px;
      padding: 2px;
      background: linear-gradient(270deg, #e50914, #ff8a00, #e50914);
      background-size: 300% 300%;
      animation: borderMove 6s linear infinite;
      -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      z-index: -1;
    }

    @keyframes borderMove {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    @keyframes floatUp {
      0% { transform: translateY(0); }
      100% { transform: translateY(-6px); }
    }

    @media (max-width: 768px) {
      .text-card1 {
        margin: 0 1rem 2rem;
        padding: 1.5rem;
      }
    }

    /*.sponsors-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background: transparent;
    /*border-top: 1px solid #ddd;*
    }*/

    /*.sponsors-title {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    color: #333;
    }*/

    .sponsors-logos img {
    height: 40px; /* Adjust size of logo */
    width: auto;
    object-fit: contain;
    }

    /* Inline layout for logo + text */
    .sponsors-section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    }

    .sponsors-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    text-align: center;
    }

    .sponsor-logo {
    width: 40px;
    height: auto;
    display: block;
    object-fit: contain;
    align-self: center;
    margin-bottom: 7px;
    transition: transform 0.3s ease;
    }

    .sponsor-logo:hover {
    transform: scale(1.05);
    }

    @media (max-width: 768px) {
    .sponsors-section {
        flex-direction: column;
        text-align: center;
    }

   /*.sponsor-logo {
        width: 100px;
        margin-bottom: 0.5rem;
    }*

    /*.sponsors-title {
        font-size: 1.2rem;
    }*/
    }
    

    /* Currency Toggle Button styled like buy-button */
    #toggleCurrency {
        display: block;
        margin: 20px auto;
        padding: 8px 16px;
        font-size: 0.9rem;
        font-weight: 600;
        border-radius: 5px;
        text-decoration: none;
        font-family: "Jost", sans-serif;
        cursor: pointer;
        transition: background 0.3s ease;

        /* Same burnt orange as buy button */
        background-color: #ce6904; 
        color: white;
        border: none;
    }

    #toggleCurrency:hover {
        background-color: #CC5600;
    }

:root {
    --primary-color: #ce6904;
    --primarydark-color: #CC6500;
    --black-color: #221f1f;
    --dark-color: #161616;
    --secondary-color: #cecfd1;
    --grey-color: #f5f5f1;
    --white-color: #ffffff;
    --body-fonts: "Roboto", sans-serif;
    --title-fonts: "Jost", sans-serif;
    --dropdown-hover: #2e3140;
    --light-black: #484848;
    --ink-primary: #cc5600;
    
}
.banner-section .banner-data .button.watch-now a {
    background: #CC6500;
    border-radius: 5px;
    display: inline-block;
    padding: 0 35px;
    position: relative;
    transition: 0.5s;
    text-decoration: none;
    border: solid 3px #CC6500;
}

.banner-section .banner-data .button.watch-now a:hover {
    border: solid 3px #fff;
    background: #fff;
    color: #CC6500;
}
/* EbonyLife Runway starts here */

    :root {
      --bg: #0b0b0d;
      --card: #121217;
      --text: #D5D5D5;
      --muted: #9aa0a6;
      --accent: #CC6500;
      --ring: rgba(255,255,255,0.12);
      --radius: 20px;
    }

    *,*::before,*::after{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: "Jost", sans-serif;
      /*font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";*/
      color: var(--text);
      background: radial-gradient(1200px 700px at 20% -10%, #1b1b23 0%, #0e0e12 60%, #0b0b0d 100%);
      line-height: 1.6;
    }

    .wrap{
      display:flex;
      justify-content:center;
      align-items:center;
      min-height:100vh;
      padding: clamp(5px, 3vw, 40px);
    }
    /* privacy policy terms  */
    
    .wrap1{
      display:flex;
      justify-content:center;
      align-items:left;
      /*min-height:100vh;*/
      min-height: unset;
      /*padding: clamp(5px, 3vw, 40px);*/
      padding: 10px 20px;
      margin-bottom: 20px;
    }

    .social-links {
    list-style: none; 
    padding: 0;
    margin: 0;
    }

    .hero{
        list-style: none;
      text-align:center;
      max-width:800px;
      background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)), var(--card);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: var(--radius);
      padding: clamp(5px, 4vw, 64px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.45);
      position: relative;
      overflow: clip;
      isolation: isolate;
    }

    .hero::after{
      content: "";
      position: absolute;
      inset: -20%;
      background: radial-gradient(600px 260px at 80% 0%, rgba(230,57,70,0.15), transparent 60%),
                  radial-gradient(500px 240px at 10% 100%, rgba(147,197,253,0.14), transparent 60%);
      filter: blur(30px);
      z-index: -1;
    }

    h1{
      margin:.25rem 0 1rem;
      font-family: "Jost", sans-serif;
      font-size: clamp(2.2rem, 6vw, 4rem);
      line-height: 1.05;
      letter-spacing: -0.02em;
    }

    .lead{
      font-size: clamp(1.05rem, 2.2vw, 1.25rem);
      font-family: "Jost", sans-serif;
      color: #e7e7e7;
      margin: 0 0 1.25rem;
    }

    .copy p{margin:0 0 .8rem}
    .copy p:last-child{margin-bottom:0}

    .leadbs p { /* beyond streaminng */
      margin: 0 0 .8rem;
      font-family: "Jost", sans-serif;
      /*text-align: left;*/
      text-align: justify;
    }

    /*.leadbs p:last-child { /*beyond streaming 
      margin-bottom: 0;
    }*/

    .curator{
      margin-top: 1.25rem;
      color: var(--muted);
      font-size: .95rem;
    }

    @keyframes riseIn{from{opacity:0; transform: translateY(12px)} to {opacity:1; transform:none}}
    .hero > *{animation: riseIn .6s ease both}
    .hero > *:nth-child(1){animation-delay:.02s}
    .hero > *:nth-child(2){animation-delay:.08s}
    .hero > *:nth-child(3){animation-delay:.14s}
    .hero > *:nth-child(4){animation-delay:.2s}
    .hero > *:nth-child(5){animation-delay:.26s}



    /* Beyond Streaming */
    /*.card-desc {
      font-size: 12px;
      color: #ccc;
      line-height: 16px;
      margin-top: 2px;
    }*/

    .divider {
    height: 1px;
    background-color: #cc5600;
    margin: 40px auto;      /* centers it horizontally */
    width: 90%;             /* sets the width */
    }

    /* ====== CAROUSEL STYLE ====== */
    .carousel {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 0.5rem;
      margin: 0 2rem 2rem;  /* left/right gutter, bottom spacing */
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
    .carousel::-webkit-scrollbar { display: none; }

    /* Containers: make them positioning context for absolute nav buttons */
    .carousel-container,
    .carousel-container-bs {
      position: relative;          /* IMPORTANT: for fixed nav positioning */
      width: 100%;
      padding-left: 16px;
      padding-right: 16px;
      margin-left: 16px;
      margin-right: 16px;
    }

    .carousel-container-bs {
      position: relative;
      padding-left: 1px; /* testing out container setting from theme*/
      padding-right: 0px;
      margin-left: 1px;
      margin-right: 5px; 
      width: 100%;
    }


    .carousel-section {
      position: relative;
      margin-bottom: 3rem;
    }

    /*.carousel-title {
      font-size: 1.2rem;
      font-weight: bold;
      margin-bottom: 1rem;
      padding-left: 0;
      padding-top: 15px;
      text-align: left;
      font-family: "Jost", sans-serif;
      font-size: 28px;
    }*/



    h1, h2, h3 {
        font-family: "Jost", sans-serif;
        color: var(--white-color);
        font-style: normal;
        text-transform: capitalize;
        font-weight: 600;
        margin: 0;
        letter-spacing: 0.02em;
        -ms-word-wrap: break-word;
        word-wrap: break-word;
    }

    h4, h5, h6 {
        font-family: "Jost", sans-serif;
        color: var(--white-color);
        font-style: normal;
        font-weight: 400;
        margin: 0;
        letter-spacing: 0.02em;
        -ms-word-wrap: break-word;
        word-wrap: break-word;
    }

    
    .text h1,
    .collection-section-bs h1 {
    text-transform: none !important;
    }
    
    /*.carousel-container {
      padding-left: 16px; /* testing out container setting from theme*
      padding-right: 16px;
      margin-left: 16px;
      margin-right: 16px; 
      width: 100%;
    }*/
    /* replicated at Local css 
    .carousel {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 0.5rem;
      /*padding: 0 2rem 1rem;  padding left & right *
      margin: 0 2rem 2rem;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }*/

    .carousel::-webkit-scrollbar {
      display: none;
    }

    .movie-card {
      flex: 0 0 auto;
      width: 221px;
      margin-right: 0px;
      scroll-snap-align: start;
    }

    .card-wrapper {
      position: relative;
      width: 100%;
      aspect-ratio: 2 / 3;
      overflow: hidden;
      border-radius: 0.5rem;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card-wrapper:hover {
      transform: scale(1.1);
      /*box-shadow: 0 10px 20px rgba(0, 0, 0, 0.8);*/
      z-index: 5;
    }

    .card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 0.5rem;
      /*display: block;*/
    }

    .card-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0, 0, 0, 0.9);
      padding: 1rem;
      opacity: 0;
      transform: translateY(100%);
      transition: transform 0.3s ease, opacity 0.3s ease;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .card-wrapper:hover .card-overlay {
      opacity: 1;
      transform: translateY(0%);
    }

    .card-desc {
      font-size: 12px;
      color: #ccc;
      line-height: 16px;
      margin-top: 2px;
    }

    .card-button {
      padding: 0.5rem 1rem;
      font-size: 0.85rem;
      font-weight: 600;
      background-color: #ce6904;
      color: #fff;
      border: none;
      border-radius: 0.25rem;
      cursor: pointer;
      width: fit-content;
      display: inline-block;
      text-decoration: none; /* removes underline */
      transition: background-color 0.3s ease, color 0.3s ease;
    }

    .card-button:hover {
      background-color: #CC6500;
      color: #fff;
      text-decoration: none;
    }


    .card-title {
      font-family: "Jost", sans-serif;
      margin-top: 2px;
      font-size: 14px;
      line-height: 18px;
      font-weight: 400;
      overflow-wrap: break-word;
    }
     /* margin-top: 0.5rem;
      font-size: 1rem;
      font-weight: 600;
      text-align: left;
    }*/

    .card-title a {
      color: #fff;
      text-decoration: none;
      background: none;
      transition: color 0.2s;
    }

    .card-title a:hover {
      color: #CC6500;
    }

    /* Carousel arrow buttons (no background or hover) *
    .carousel-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      color: #fff;
      font-size: 2rem;
      padding: 0.3rem 0.6rem;
      cursor: pointer;
      border-radius: 0;
      z-index: 10;
      opacity: 1;
      transition: none;
    }

    .carousel-nav:hover,
    .carousel-nav:focus,
    .carousel-nav:active {
      background: none;
      color: #fff;
      outline: none;
      box-shadow: none;
    }

    .carousel-nav.left {
      left: 0.25rem;
    }

    .carousel-nav.right {
      right: 0.25rem;
    }

    .carousel-nav:disabled {
      display: none;
    }

    /* Responsive: up to 6 cards on desktop *
    @media (min-width: 1280px) {
      .movie-card {
        width: calc((100% - 6rem) / 7);
      }
    }

    @media (max-width: 1024px) {
      .movie-card {
        width: calc((100% - 3rem) / 4);
      }
    }

    @media (max-width: 768px) {
      .movie-card {
        width: calc((100% - 2rem) / 3);
      }
    }

    @media (max-width: 480px) {
      .movie-card {
        width: calc((100% - 1rem) / 2.5);
      }
    }*/

    .delay-load {
      opacity: 0;
      transition: opacity 1s ease;
    }
    .delay-load.visible {
      opacity: 1;
    }


    /* Green for real links (not just #) *
    a.buy-button[href]:not([href="#"]) {
    background-color: #CC5600; 
    color: white;
    }
    a.buy-button[href]:not([href="#"]):hover {
    background-color: #009d5c;
    }


    /* Red for placeholder links (#) *
    a.buy-button[href="#"] {
    background-color: #e50914; /* Red *
    color: white;
    }
    a.buy-button[href="#"]:hover {
    background-color: #b00710;
    }*/
    /*.card-title {
    display: none;
    }/*
    /* Beyond-streaming ends */





  /* EbonyLife Runway Ends */


    /* FAQ SECTION */
   .faq-container {
    max-width: 800px;
    margin: 0 auto; /* center horizontally */
    padding: 40px 20px;
    }
    .question {
      margin-top: 10px;
      padding: 100px 20px 20px;
      max-width: 800px;
      margin: auto;
    }

    .question h1 {
      font-size: 2.5rem;
      margin-bottom: 30px;
      text-align: center;
    }

    .faq-item {
      background: #222;
      margin-bottom: 10px;
      border: 1px solid #333;
    }

    .faq-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      cursor: pointer;
      font-size: 1.2rem;
    }

    .faq-header i {
      font-size: 1.5rem;
      transition: transform 0.3s ease;
    }

    .faq-body {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      transition: max-height 0.4s ease, padding 0.3s ease;
      background: #111;
    }

    .faq-body.open {
      padding: 20px;
    }

    .faq-body p {
      margin: 0;
    }

    .faq-button-container {
      text-align: center;
      margin-top: 40px;
    }


  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      font-family: "Jost", sans-serif;
      background-color: #000;
      color: #fff;
      scroll-behavior: smooth;
      /*margin-top: 2rem;*/
      /*padding: 2rem 1rem;*/
    }

    .feature-section {
      padding: 60px 20px;
      background: black;
      color: white;
    }

    .container1 {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 60px;
      flex-wrap: wrap;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .container1.reverse {
      flex-direction: row-reverse;
    }

    .text {
      flex: 1;
      min-width: 300px;
      padding: 20px;
    }

    .text h1, .text h2, .collection-section h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      position: relative;
      display: inline-block;
    }
    .text h1, .text h2, .collection-section-bs h1 {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 1rem;
      position: relative;
      display: inline-block;
    }
    .collection-section-bs h1 {
    text-align: center;
    }
    .collection-section-bs p {
        text-align: left;
        font-weight: 400;
    }

    .text h1::after, .text h2::after, .collection-section h1::after {
      content: "";
      position: absolute;
      bottom: -5px;
      left: 25%;
      width: 50%;
      height: 2px;
      background-color: #cc5600;
      transform: scaleX(1);
      transform-origin: center;
      transition: transform 0.4s ease-in-out;
    }
    .text h1::after, .text h2::after, .collection-section-bs h1::after { /* beyond streaming */
      content: "";
      position: absolute;
      bottom: -5px;
      left: 25%;
      width: 50%;
      height: 2px;
      background-color: #cc5600;
      transform: scaleX(1);
      transform-origin: center;
      transition: transform 0.4s ease-in-out;
    }

    .text h1:hover::after, .text h2:hover::after, .collection-section h1:hover::after {
      transform: scaleX(2);
    }
    .text h1:hover::after, .text h2:hover::after, .collection-section-bs h1:hover::after {
      transform: scaleX(2);
    }

    .text p {
      font-size: 1rem; /*changed text from 1.5 */
      line-height: 1.5;
      font-weight: 400;
      font-family: "Jost", sans-serif;
    }

    .image {
      flex: 1;
      min-width: 300px;
      padding: 20px;
      text-align: center;
    }

    .image1 img {
    width: 120px;   /* adjust this down (e.g., 150px, 100px) */
    height: auto;   /* keeps aspect ratio */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: block;
    margin: 0 auto; /* centers it */
    }

    .area {
    max-width: 800px;
    margin: 0 auto;
    }

    .image1 {
    position: absolute;
    bottom: 50px; /* pinned to bottom */
    left: 50%;
    transform: translateX(-50%);
    }


    .image1 img:hover {
      transform: scale(1.05);
      /*box-shadow: 0 12px 30px rgba(229, 9, 20, 0.3);*/
      box-shadow: 0 12px 30px rgba(204, 85, 0);
    }

    .image img {
      width: 100%;
      max-width: 500px;
      height: auto;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      border-radius: 10px;
    }

    .image img:hover {
      transform: scale(1.05);
      /*box-shadow: 0 12px 30px rgba(229, 9, 20, 0.3);*/
      box-shadow: 0 12px 30px rgba(204, 85, 0);
    }

    /*.collection-section {
      text-align: center;
      padding: 140px 10px 20px;
      max-width: 900px;
      margin: 0 auto;
      color: white;
    }*/
    .collection-section-bs { /*beyond streaming */
      text-align: center;
      padding: 140px 10px 20px;
      max-width: 900px;
      margin: 0 auto;
      color: white;
    }

    .collection-section h1 {
      font-size: 2.8rem;
      margin-bottom: 1rem;
      font-weight: 400;
      position: relative;
      display: inline-block;
    }
    .collection-section-bs { /* beyond streaming */
      padding: 140px 10px 20px;
      max-width: 900px;
      margin: 0 auto;
      color: (--text);
    }

    .collection-section-bs h1 {
      font-size: 2.8rem;
      margin-bottom: 1rem;
      font-weight: 400;
      position: relative;
      display: inline-block;
    }

    

    /*.movie-card {
      min-width: 200px;
      max-width: 200px;
      /*background: #111;
      border-radius: 10px;
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.3s ease;
    }*/

    .image-container {
      overflow: hidden;
      height: 300px;
    }

    .image-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .movie-card:hover img {
      transform: scale(1.08);
    }

    /*.card-content {
      padding: 10px;
    }*/

    .card-content h3 {
      font-size: 1.1rem;
      font-weight: 600;
    }

    .card-content p {
      font-size: 0.9rem;
      color: #aaa;
      margin-bottom: 1px; /*changed from 10px*/
    }

    .buy-button {
      display: inline-block;
      background-color: #cc6500;
      color: white;
      padding: 8px 16px;
      font-size: 0.9rem;
      border-radius: 5px;
      text-decoration: none;
      transition: background 0.3s ease;
    }

    .buy-button:hover {
      background-color: #cc5600;
    }

    section::-webkit-scrollbar {
      display: none;
    }

    .infinite-tab-wrapper {
      position: relative;
      width: 100%;
      height: 100px;
      overflow: hidden;
      margin: 20px auto 5px;
    }

    .infinite-tab {
      position: absolute;
      top: 50%;
      left: -100%;
      width: 200%;
      height: 2px;
      background: linear-gradient(to right, transparent 0%, #cc6500 50%, transparent 100%);
      animation: slide-infinite 4s linear infinite;
    }

    @keyframes slide-infinite {
      0% { left: -100%; }
      100% { left: 90%; }
    }

    .image-stack {
      position: relative;
      width: 200px;
      height: 300px;
      margin: 0 auto;
    }

    .image-stack img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
      transition: transform 0.4s ease, opacity 0.4s ease, z-index 0.2s ease;
      cursor: pointer;
    }

    .image-stack img:nth-child(1) {
      transform: rotate(-8deg) scale(0.9);
      left: -20px;
      z-index: 1;
      opacity: 0.8;
    }

    .image-stack img:nth-child(2) {
      transform: rotate(8deg) scale(0.9);
      left: 20px;
      z-index: 2;
      opacity: 0.8;
    }

    .image-stack img:nth-child(3) {
      z-index: 3;
    }

    .image-stack img:nth-child(1):hover,
    .image-stack img:nth-child(2):hover {
      transform: rotate(0deg) scale(1.05);
      opacity: 1;
      z-index: 4;
    }

    .image-stack img:nth-child(3):hover {
      transform: scale(1.05);
      z-index: 4;
    }

    @media (min-width: 768px) {
   .navbar-expand-lg .navbar-collapse {
    /*display: -webkit-box !important;*/ /*testing ipad view */
   } 
    }
  .header .justify-content-end {
   -webkit-box-pack: unset !important;

  }

    /* Disable links for cards with href="#" */
      .movie-card a[href="#"] {
      pointer-events: none; /* disable clicks */
      position: relative;
      display: inline-block;
    }



    /* Garnet home buttons */

    
    .ctaBtnwatch{
    /*display: flex;
    padding: 0px 24px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex: 1 0 0;
    align-self: stretch;
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    border-radius: 8px;*/
    background: #cc5600;
    overflow: hidden;
    letter-spacing: 0.28px;
    /* background: rgba(255, 255, 255, 0.05); */
    }
    /*.ctaBtnwatch span{
        font-size: 14px;
    font-style: normal;
    font-weight: 500 !important;
    line-height: normal;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: normal;
    width: auto !important;
    }*/
    .ctaBtnwatch:hover{
        background: #fff;
        color: #cc5600;
    }
    .ctaBtnwatch:hover span{
        color: #cc5600 !important;
    }


    /* botton section carousel title */
    .carousel-title {
      font-size: 1.2rem;
      font-weight: normal;
      margin-bottom: 1rem;
      padding-left: 0;
      padding-top: 15px;
      text-align: left;
      font-family: "Jost", sans-serif;
      font-size: 18px;
    }

    /* Garnet CArousel heading */
    .sub-heading{ 
        font-size: 18px; 
        line-height: 38px; 
        font-weight: 400;
        font-family: "jost", sans-serif;
        }

    
    /* Title on button for garnet featured section */

    .product-listing .owl-carousel.owl-drag .owl-item .item .data .dataHeading{
    font-size: 14px;
    font-weight: 400;
    line-height: 18px; /* 116.667% */
    }


    /* CTA + icon svg garnet */

    .ctaBtnadd:hover svg path{
    fill: #cc5600;

    }

    /* Playlist */
    .checkbox-button input[type="checkbox"]:checked+.checkbox-label.blue{
    background-color: #cc5600;
    border: 1px solid #cc5600;
    }

    /*=====================================
     Gernet header custom 

    =====================================*/

    .primary-button{ background: #cc6500; border-radius: 6px; font-size: 16px; line-height: 24px; border: none; box-shadow: none; color: #ffffff; 
    padding: 10px 15px; cursor: pointer;}
    .primary-button:hover{ background: #ffffff; color: #cc6500;}
    .secondary-button{ background: transparent; border-radius: 6px; font-size: 16px; line-height: 22px; border: none; box-shadow: none; color: #ffffff; border: solid 1px #686868; 
        padding: 10px 15px; cursor: pointer;}
    .secondary-button:hover{ background: #cc6500; color: #ffffff; border-color: #cc6500;}

    /*===== Header Section Start Here====*/
    
    /* .header .navbar{ padding:23px 0;} */
    .header .navbar-nav .nav-link{
        font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #fff;
    padding: 8px 0;
    }
    .header .navbar-nav .nav-link:hover{ color: #ce6904;}
    .header .navbar-nav .nav-item .active{ 
        border-bottom: 1px solid #ce6904;
        color: #ce6904 !important;
    }
    .header .navbar-nav .signup{ padding: 0 13px;}

    .activeClass {
    border-bottom: 1px solid #cc6500;
    color: #cc6500 !important
    }


    /* Header Profile */
    .userProfileDropdown {
        border-color: #cc6500 !important;
    }

    .manage-Profile .modal-content .mp-body .mp-mb-btn .mp-mb-btn-done,.edit-Profile .modal-content .mp-body .mp-mb-btn .mp-mb-btn-done {
    display: none;
    width: 90px;
    padding: 10px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    background: #cc6500;
    box-shadow: 0 0 1px 0 rgb(0 0 0 / .04),0 0 2px 0 rgb(0 0 0 / .06),0 4px 8px 0 rgb(0 0 0 / .04);
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    cursor: pointer;
    outline: none;
    border: none
}

    /* Icons */
    .contect-listing .view-all a:hover {
        color: #cc6500 !important;
    }

    .callByAjax + svg path {
        stroke: #cc6500 !important;
        fill: #cc6500 !important;
    }

    .activeClass, .widget-area .widget ul li a.active {
        border-bottom: 1px solid #cc6500 !important;
        color: #cc6500 !important;
    }

    /* Tabs */
    .nav-tabs .nav-link.active {
        border-bottom-color: #cc6500 !important;
    }



    /* Below button color theme changes as per Debasish new design - 29 Mar 2023 */
    .header .navbar-nav .signup a{ border: none; padding: 9px 24px; border-radius: 8px; background: #CC6500;white-space: nowrap;}
    .header .navbar-nav .signup a:hover{ background: #fff; color: #ce6904;}
    .header .navbar-nav .signup a.active{ background: #fff; color: #ce6904;}
    .header .navbar-nav .nav-link:focus{ color: #cc6500;}
    .header .navbar-nav .signup .nav-link:focus{ color: #cc6500;background: #fff;}

    .header-new .nav-link{font-size: 16px; font-weight: 600; color: #ffffff; padding: 0 8px; line-height: 37px; cursor: pointer;}
    .header-new .nav-link:hover{ color: #cc6500;}
    .header-new .nav-item .active{ color: #cc6500;}
    .header-new li:last-child a{ padding-right: 0;}
    .header-new .signup{ padding: 0 13px;}
    .header-new .signup a{ 
        border: none;
        padding: 0 25px;
        border-radius: 5px;
        background: #cc6500;
        color: #ffffff;
    }
    .header-new .signup a:hover{ background: #fff; color: #cc6500;}
    .header-new .signup a.active{background: #fff; color: #cc6500;}
    .header-new .nav-link:focus{ color: #cc6500;}

    /*====Banner Section Start Here====*/
    .banner-section{ padding: 0; margin: 0;}
    .banner-section .order-1{ order: 1;}
    .banner-section .order-2{ order: 2;}
    .banner-section .banner-data{ padding: 70px 0 0 0; margin: 0;width: 100%;}
    .banner-section .banner-data h1{ padding: 0 0 10px 0; margin: 0; font-weight: 600;}
    .banner-section .banner-data h2{ padding: 0 0 10px 0;margin: 0; font-weight: 600;}
    .banner-section .banner-data p{ padding: 0 0 10px 0; margin: 0; font-weight: 500; line-height: 24px;}
    .banner-section .banner-data p a{ color: #fff; text-decoration: none; padding: 0 0 0 5px;}
    .banner-section .banner-data p a:hover{ color: #cc6500;}

    .banner-section .banner-data ul{ list-style-type: none; padding: 0; margin: 0;}
    .banner-section .banner-data ul li{ display: inline-block; vertical-align: top;}
    .banner-section .banner-data .button{ padding: 40px 0 40px 0;}
    .banner-section .banner-data .button a{ font-size: 16px; line-height:26px; font-weight: 600; color: #ffffff;}

    /* old button stucture */
    .banner-section .banner-data .button .watch-now a{ 
        padding: 0px 24px;
        border-radius: 8px;
        background: #cc6500;
    display: inline-block;  position: relative; transition: 0.5s; text-decoration: none; 
    min-height: 50px;
    display: flex;
        align-items: center;
        gap: 12px;
        flex-direction: row;
        text-transform: uppercase;
        height: 54px;
    }
    .banner-section .banner-data .button .watch-now a:hover{ background: #fff; color:#cc6500;}
    /*.banner-section .banner-data .button .watch-now a::before{ position: absolute; content: ""; bottom: -8px; left: 0; background: #12f4d9;
    width: 25px; height: 8px; border-bottom-left-radius: 5px; transition: 0.5s;}
    .banner-section .banner-data .button .watch-now a:hover::before{ background: #12f4d9; width: 100%; left: 0; border-bottom-right-radius: 5px;}*/
    .banner-section .banner-data .button .watch-trailer{ position: relative; padding: 0px !important;}
    .banner-section .banner-data .button .watch-trailer a{ 
        border-radius: 5px; display: inline-block; padding: 0 35px; transition: 0.5s; text-decoration: none; 
    border: solid 3px #cc6500; line-height: 26px;
    min-height: 50px;
    display: flex;
        align-items: center;
        gap: 6px;
        flex-direction: row;
        min-height: 50px;
    }
    .banner-section .banner-data .button .watch-trailer a:hover{ border-color: #cc6500;}

    /* New button stucture */
    .banner-section .banner-data span.button{ display: inline-block;}
    .banner-section .banner-data span.button.watch-now{padding-right: 20px;}
    .banner-section .banner-data span.button.watch-now a{ background: #cc6500; border-radius: 5px;
        display: inline-block; padding: 0 35px; position: relative; transition: 0.5s; text-decoration: none; border: solid 3px #cc6500;
        display: flex;
        align-items: center;
        gap: 6px;
        flex-direction: row;
        min-height: 50px;
    }
        .banner-section .banner-data span.button.watch-now a:hover{ border: solid 3px #fff; background: #fff; color:#cc6500;}
        .banner-section .banner-data span.button.watch-trailer{ position: relative; padding: 0 !important;}
        .banner-section .banner-data span.button.watch-trailer a{ border-radius: 5px; display: inline-block; padding: 0 35px; transition: 0.5s; text-decoration: none; 
        border: solid 3px #fff; line-height: 26px;
        display: flex;
        align-items: center;
        gap: 6px;
        flex-direction: row;
        min-height: 50px;
    }
        .banner-section .banner-data span.button.watch-trailer a:hover{ border-color: #cc6500;}

        .banner-section .banner-data .button li{margin-bottom: 10px;}
        .banner-section .banner-data .button .watch-now{padding-right: 20px;}

    .banner-section .banner-data .social-share a:hover, .share-video .bottom a:hover{ background: #fff;}
    .banner-section .banner-data .social-share a.svg-fill:hover svg path{
        fill: #cc6500;
    }
    .banner-section .banner-data .social-share a.svg-stroke:hover svg path{
        stroke: #cc6500;
        fill: #cc6500;
    }


    /* Drop down menu background */
    .garnetMenu .gmItems a {
        opacity: 80%;
        
    }

    .garnet-nav-dropdown .garnetMenu .gmItems a:hover{
        color: #cc6500;
        border-left: none;
    }

    .garnetMenu .gmItems a:hover{
    color: #cc6500;
    color: #000;
    background: transparent -webkit-gradient(linear,right top,left top,from(rgba(11,1,2,0)),to(rgba(255,55,65,.3)));
    background: transparent linear-gradient(270deg,rgba(11,1,2,0),rgba(255,55,65,.3));
    border-left: 2px solid #cc6500;
    border-radius: 0;
    cursor: pointer;
    }
    .garnetMenu .gmItems a {
    display: flex;
    padding: 12px 16px;
    align-items: flex-start;
    flex: 1 0 0%;
    background: none;
    color: #ffffff;
    opacity: 100%;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border-left: 2px solid #cc6500;
    }
    .activeClass {
    border-bottom: 1px solid #cc6500;
    color: #cc6500; //set to burnt orange from #e50914 line under active sub menu
    }

    .phoenix-nav-dropdown .btn-navigation.show {
    border-bottom: 1px solid #cc6500; // Line under main active menu
    }

    .phoenix-nav-dropdown .btn-navigation:hover a.nav-link {
    color: #cc6500; // menu after hover color
    }
    /* Navigation dropdown menu */

    .phoenix-nav-dropdown .dropdown-menu .dropdown-item:focus, .phoenix-nav-dropdown .dropdown-menu .dropdown-item:hover{
    color: #ffffff;
    text-decoration: none;
    background-color: #cc6500;
    }
    .navbar-light .navbar-nav .active > .nav-link, 
    .navbar-light .navbar-nav .nav-link.active, 
    .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show > .nav-link{
        color: #cc6500;
    }

    .phoenix-nav-dropdown .dropdown-menu{
    background: #2B3037;
    border: 1px solid #cc6500;
    border-radius: 4px;
    top: 50px;
    padding: 16px;
    border-radius: 8px;
    background: #000000;
    opacity: 80%; 
    flex-direction: column;
    width: 400px;
    }

    .navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show>.nav-link {
    color: #cc6500;
    }
    
    /* Footer section store icons and links */
    .app-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    }

    .store-badge {
    height: 40px;
    transition: transform 0.3s ease;
    }

    .store-badge:hover {
    transform: scale(1.05);
    }
     /* Movie page banner synopsis area *
    //.banner-section .se-BannerData .content-data {
     //.text-card {
      //position: relative;
      //max-width: 600px;
      @media (min-width: 768px) and (max-height: 1024px) {
    .banner-section .se-BannerData .content-data {
      margin: 20px auto 40px;
      padding: 2rem;
      border-radius: 20px;
      text-align: center;
      color: #fff;
      background: rgba(0, 0, 0, 0.4); /* transparent *
      backdrop-filter: blur(10px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
      animation: floatUp 3s ease-in-out infinite alternate;
      z-index: 1;
    }
    }

    /* Glowing animated border effect *
    .banner-section .se-BannerData .content-data::before {
    //.text-card::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 20px;
      padding: 2px;
      background: linear-gradient(270deg, #e50914, #ff8a00, #e50914);
      background-size: 300% 300%;
      animation: borderMove 6s linear infinite;
      -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      z-index: -1;
    }*/

    /* General styling for all screen sizes */
    .banner-section .se-BannerData .content-data {
    position: relative;
    margin: 20px 5px 40px;
    padding: 0.5rem 0.5rem 1rem 0.5rem !important;
    border-radius: 20px;
    border-color: #cc6500;
    text-align: left;
    color: #fff;
    /*background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);*/
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    animation: floatUp 3s ease-in-out infinite alternate;
    z-index: 1;
    max-width: 600px; /* Set max-width globally */
    border: 1px solid #cc6500; /* Adding the border color and thickness */
    }

    /* Media query for desktop and larger devices */
    @media (min-width: 1024px) {
    .banner-section .se-BannerData .content-data {
        max-width: 800px; /* Increase max-width for larger screens */
        padding: 3rem; /* Adjust padding for larger screens */
    }
    }

    @keyframes floatUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
    }

    .banner-section .se-BannerData .button .watch-trailer a {
   background: #cc6500;
    }

    /* Target the Play Store and App Store images */
    .playstore img, .appstore img {
        transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for scaling and shadow */
    }

    .playstore:hover img, .appstore:hover img {
        transform: scale(1.1);  /* Grow the image */
        box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);  /* Add shadow on hover */
    }


    /* Footer section Social icons */
    .followSocial li {
    min-width: 39px;
    min-height: 39px;
    display: flex;
    align-items: center;
    border-radius: 50%;
    border: 1px solid #cc6500;
    justify-content: center
    }
    
    .followSocial li:hover{
        background: #cc6500;
        cursor: pointer;
    }

    .footer ul li a:hover{ color: #cc6500;}


    /*.footer ul li a:hover {
    color: #cc6500;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    padding: 0;
    margin: 0;
    text-decoration: none;
    }*/

    /*.footer ul li a{ 
    color: #ce6904;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 214.286% 
        padding: 0; margin: 0; text-decoration: none;}
    .footer ul li a:hover{ color: #cc6500;}
    .footer ul li a:hover svg path{ fill: #fff;}*/

    .footer img{ 
        max-width: 120px;
        padding-top: 5px;
        margin-top: 5px;
        padding-bottom: none;
        margin-bottom: none;
        top: 0px;
    
    }


    /* Reduce top margin/padding for the section containing the "Download Apps" title */
    .footer .boxes h3 {
        margin-top: 5px; /* Adjust this value as needed */
        padding-top: 0;  /* Ensure there's no padding at the top */
    }


    /* signup page button */

    .common-btn{
    display: flex;
    height: 52px;
    padding: 16px 32px;
    justify-content: center;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    border-radius: 8px;
    background: #cc6500;
    width: 100%;
    border: none;
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    }
    .blue{
        background: #cc6500;
    }
    .common-btn.blue:hover{
        background: #fff;
        color: #cc6500;
    }

    .create-account-a {
    color: #cc6500 !important;
    }

    }
    .social-btn:hover{
        color: #CC6500;
    }

    /*.owl-banner .owl-item {
    height: 800px;
    display: flex;             /* centre the image nicely *
    align-items: center;
    justify-content: center;
    background: #000;          /* optional letterbox colour *
    }*/

    /*.owl-banner .owl-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;               /* maintain aspect ratio *
    height: auto;              /* maintain aspect ratio *
    display: block;
    }*/


    


    /* Single Movie Page */
    .season-content.mt-min300 {
        margin-top: 0px;
    }

    @media (min-width: 768px) {
        .banner-section .se-BannerData .content-data {
            /* -webkit-line-clamp: 3; */
            width: min(500px, 100%) !important;
        }

        .banner-section .item {
            background-size: contain !important;
            background-position: right 100px !important;
        }

        .si-span:hover {
            background: #cc6500;
        }

        a:hover svg path {
            stroke: #cc6500 !important;
            fill: #cc6500 !important;
        }
    }

    @media screen and (max-width: 768px) {
        .rightSidemenu {
            padding-right: 20px;
        }

        #content_content_banner_four_4 .main-heading {
            margin-top: 80px;
        }

        .cast-listing {
            margin-top: 80px;
        }
    }

    @media screen and (max-width: 468px) {
        .banner-section .item {
            background-size: contain !important;
            background-position: center 100px !important;
        }

        /*.banner-section .banner-data {
            margin-top: 240px !important;
        }*/
    }

    .vd.product-details-ten {
        display: none !important;
    }

    .banner-section .banner-data {
        margin-top: 200px !important;
    }

    .banner-section .item::after {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 51.16%, rgba(0, 0, 0, 0.90) 78.24%);
    }

    .banner-section.banner-section-seasons {
        max-height: 820px;
    }


    @media screen and (min-width:481px) and (max-width:768px) {
    .banner-section .item {
        height: auto !important;
        background-size: cover !important;
        background-position: center 100px !important;
    }
    }


    /* Browse | Post Home Page */
    .banner-section .item::before {
        content: "";
        /* background: linear-gradient(153deg, #000 -13.38%, rgba(0, 0, 0, 0.00) 64.68%); */
        width: 100%;
        height: 100%;
        position: absolute;
        /* background: linear-gradient(250deg, rgba(0, 0, 0, 0.00) 31.67%, #000000 64.05%); */
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 31.67%, #000000 90%);
        /* display: none; */
    }

    /* Buy plan page */
    .new-all-plans-page .final-amount-area .checkout-btn-area .checkout-btn:hover {
    background: #cc6500;
    color: #FFF
    }

    .cancel-button:hover{
    color: #cc6500;
    }

    .new-all-plans-page .plan-area input:checked~.single-plan {
    background: rgb(0 0 0 / .4);
    border: 1px solid #cc6500;
    border-radius: 8px;
    position: relative;
    }


    /* Signup button pay now */
    .paynow-button {
    min-width: 272px;
    min-height: 48px;
    background: #cc6500;
    }
    .paynow-button:hover {
        background: #fff;
        color: #cc6500;
        text-decoration: none
    }

    .paynow-button:hover svg path[fill] {
        fill: #cc6500;
        stroke: none
    }

    .condition span a {
        color: #cc6500;
        text-decoration: none
    }


    /* Pagination header */

    
.banner-section .banner-content .owl-theme .owl-dots .owl-dot span{ width: 7px; height: 7px; background: #cc6500; margin: 0 1px; outline: none;} 
.banner-section .banner-content .owl-theme .owl-dots .active span{ background: #fff; border: none; width: 30px; outline: none;}
.banner-section .banner-content .owl-theme .owl-dots .active:focus{ outline: none;}

    /* Footer section redisign 

    .footer h2 {
    color: #BEBEBE;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    padding: 0 0 15px 0;
    margin: 0 */

    /* carousel button style pullled from owl */

    /* When hovering over the carousel container *

    
.carousel-container:hover {
  z-index: 8;
}

/* Style for both left and right nav buttons *
.carousel-nav.left,
.carousel-nav.right {
  z-index: 8;
  height: calc(100% - 82px);
  top: 36px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
}

/* Optional: Position them absolutely if not already *
.carousel-nav.left {
  left: 0;
}

.carousel-nav.right {
  right: 0;
}

/* Overlay gradient for the left side *
.carousel-nav.left::after {
  content: '';
  display: flex;
  width: 220px;
  height: 100%;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  left: -15px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background: linear-gradient(-90deg, #fff0 52.27%, rgb(0 0 0 / 0.8) 79.55%);
  pointer-events: none;
  z-index: -8;
}

/* Prevent right side from accidentally applying same overlay logic *
.carousel-nav.right::after {
  display: none;
}

/* Optional utility class to disable the gradient *
.carousel-nav.noOverlay::after {
  display: none !important;
}*/

   /* .carousel-container .carousel-nav.left:hover,
    .carousel-container .carousel-nav.right:hover {
    background: rgba(255, 255, 255, 0.20) !important;
    }*/

   /* .carousel-section .carousel-container {
    position: relative;
    }

    .carousel-section .carousel-container .carousel-nav {
        position: absolute;
        bottom: 294px; /* adjust as needed *
        right: 31px;
        display: flex;
        align-items: center;
        gap: 8px;
        justify-content: flex-end;
        z-index: 10;
    }

    .carousel-section .carousel-container .carousel-nav.left,
    .carousel-section .carousel-container .carousel-nav.right {
        display: flex;
        width: 42px;
        height: 42px;
        padding: 8px !important;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.10) !important;
        border: none;
        cursor: pointer;
        z-index: 10;
    }

    .carousel-nav.left:hover,
    .carousel-nav.right:hover {
        background: rgba(255, 255, 255, 0.20) !important;
    }

    .carousel-nav svg path {
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
    }
*/


.loadercontainer {
    margin-top: 100px;
    /*border-radius: 4px;*/
    /* padding: 0 16px 0 16px; */
    /* margin-bottom: 16px; */
    /* box-shadow: 0 8px 24px rgba(149, 157, 165, 0.1); */
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}
.smr-text {
    height: 40px !important;
    width: 120px;
}
.t1{
  width: 55%
}
.t2{
  width: 40%
}
.t3{
  width: 30%
}
/*.card-content { testing Sep 8
    padding: 50px;
    background: #0f1419;
     height: 300px;
}*/
i.fa.far.text-line {
    margin: 5px !important;
    border-radius: 100px !important;

}
.card-content .text-line,
.image-placeholder {
    background-color: #313030;
    position: relative;
    overflow: hidden;
}

.card-content .text-line {
    height: 12px;
   /* border-radius: 4px;*/
    margin-bottom: 8px;
}
.card-content .text-line::after,
.image-placeholder::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #2a2b2c, transparent);
    animation: 1.5s infinite shimmer;
}
.card-content .text-line:last-child {
    width: 70%;
}
.image-placeholder {
    height: 300px;
    /*border-radius: 4px;*/
   /* margin: 16px 0;*/
}
@media (max-width: 600px) {
    .container {
        padding: 0 10px;
    }
    .image-placeholder {
        height: 160px;
    }
}
@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}
.episodeviewall{
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: .08px;
}
@media (min-width: 768px) and (max-height: 1024px) {
  #content_content_banner_four_4 .banner-section .se-BannerData .content-data {
    -webkit-line-clamp: 4 !important;
  }
}
.episodeviewall > a{color: #ffffffb0;text-decoration: none;}
.episodeviewall > a:hover{color: #ffffff;}
.newpopup:hover {text-decoration: none;color: #cc6500; }
#home_default_features_list_five_5 .episode-heading {z-index: 99999999999999 !important;}





    





   


    
    



  



