body {
  font-family: 'Fira Sans';
  margin: 0px;
  padding:0px;
  background:#000;
   }

.nav__cont {
  position: fixed;
  width: 60px;
  top:0;
  height: 100vh;
  z-index: 100;
  background: linear-gradient(to right, #202020 40%, rgba(0,0,0,0) 100%);
  overflow:hidden;
  transition:width .3s ease;
  cursor:pointer; 
  
  

    display: flex;
    flex-direction: column;
    justify-content: center;   /* Center items vertically */
    align-items: flex-start;
    
  &:hover {
    width:400px;
  }
  @media screen and (min-width: 600px) {
    width: 90px;
  }
}

.nav {
  list-style-type: none;
  color:white;
  &:first-child {
    padding-top:1.5rem;
  }
}
.logo img { width: 50px; position: fixed; top: 15px; left: 15px; z-index: 1000; }
.nav__items {
  padding-bottom:10px; 
   a {
    position: relative;
    display:block;
    top:-30px;
    padding-left:25px;
    padding-right:15px;
    transition:all .3s ease;
    margin-left:25px;
    margin-right:10px;
    text-decoration: none;
    color:#EBEBEB; 
    font-weight: 100;
    font-size: 1.35em;
     &:after {
       content:'';
       width: 100%;
       height: 100%;
       position: absolute;
       top:0;
       left:0;
       border-radius:2px;
       color:#fff; 
       opacity:0;
       transition:all .5s ease;
       z-index: -10;
     }
  }
  &:hover a:after {
    opacity:1;
  }
   svg{
    width:26px;
    height:26px;
    position: relative;
    left:-25px;
    cursor:pointer;
    @media screen and(min-width:600px) {
      width:32px;
    height:32px;
left:-15px;
    }
  }
}
.details-page .nav__items:hover svg {
  fill: #EBEBEB;
  transform: none;
}

.details-page .nav__items:hover a {
  color: #EBEBEB;
}

.details-page .nav__items:hover a::after {
  opacity: 0;
}
.details-page .nav__cont {
  width: 60px; /* fixed */
}

.details-page .nav__cont:hover {
  width: 60px; /* no expand */
}
.nav__items svg {
  transition: fill 0.3s ease, transform 0.3s ease;
}

/* hover fill */
.nav__items:hover svg {
  fill: #fff;          /* active color */
  transform: scale(1.15);
}

/* optional: text color */
.nav__items:hover a {
  color: #fff;
}


h1 {
  margin-top: 6rem;
  margin-left:80px;
  text-align: center; 
  font-weight: 100;
  font-size: 4rem;
  text-transform:uppercase;
  color:white;
  letter-spacing:6px;
  text-shadow:10px 10px 10px rgba(0,0,0,.3);
}

/* Video Card Container */
.video-card {
    width: 100%;
    height:500px;
    aspect-ratio: 16 / 9; 
    position: relative; 
    overflow: hidden;  
     
}

 

/* Image */
.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center;    /* CENTER the image */
    display: block;
}
@media (max-width: 768px) {
    .video-card {
        max-height: 420px;
    }
    .video-desc{
        width:90% !important;
    }
     .video-desc{
        width:90% !important;
    }
    .video-title{
        margin-left:0px !important;
        font-size: 18px !important;
        margin-right: 20px !important;
    }
    
    .video-desc{
        margin:4px 0 !important;
        -webkit-line-clamp: 1 !important;
   
 
    }
    .video-meta{
        margin:4px 0 !important;
        display: block;
    }
    .panel{
        margin-left:20px !important;
        margin-left:20px !important;
    }
    .video-card img{
        height: auto !important;
    }
    .watch-btn{
        margin-left:0px !important;
    }
    .bold-text{
        font-size: 12px !important;
    }
    .video-overlay{
        bottom: 50px !important;
    }
    .video-card-details{
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .video-card {
        max-height: 284px;
        margin-top: 54px;
        
    }
     .video-desc{
        width:90% !important;
    }
    .video-title{
        margin-left:0px !important;
        margin-right: 20px !important;
        font-size: 18px !important;
    }
    .video-meta{
        margin:4px 0 !important;
        display: block !important;
    }
    .video-desc{
       margin:4px 0 !important;
         -webkit-line-clamp: 1 !important;  
    }
    
    .panel{
        margin-left:20px !important;
        margin-right:20px !important;
    }
    .video-card img{
        height: auto !important;
    }
    .watch-btn{
        margin-left:0px !important;
    }
    .bold-text{
        font-size: 12px !important;
    }
    .video-overlay{
        bottom: 50px !important;
    }
    .video-card-details{
        width: 100% !important;
    height: auto !important;
    margin-top: 56px !important;
    }
}

.mobile-logo{
    width:32px !important;
}
.video-card-details {
        width: 88%;
    height:500px;
    aspect-ratio: 16 / 9; 
    position: relative; 
    margin:auto;
    overflow: hidden;  
    transition: transform .3s ease;
}

 .close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: #fff;
    color: #000;
    transform: scale(1.1);
}
/* MOBILE HEADER */
.mobile-header {
    display: none; /* hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 56px;
    background: #000;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 15px;
    border-bottom: 1px solid #222;
}

/* Logo */
.mobile-header .logo {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
}

/* Menu */
.header-nav {
    display: flex;
    gap: 18px;
    padding-right: 32px;
}

.header-nav a {
    color: #eee;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
}

.header-nav a:hover {
    color: #fff;
}

/* SHOW ONLY MOBILE & TABLET */
@media (max-width: 991px) {
    .mobile-header {
        display: flex;
    }
    .nav__cont{
        display: none;
    }
    .header-lg{
    display:none;
}
}

/* HIDE ON DESKTOP */
@media (min-width: 992px) {
    .mobile-header {
        display: none;
    }
}

.nav-home-link {
  display: block;
  text-decoration: none;
}

.details-page .nav__items a {
  pointer-events: none; /* disable individual links */
}

/* Image */
.video-card-details img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay Content */
.video-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0));
    color: #fff;
    transition: opacity .3s ease;
}
.video-overlays {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0));
    color: #fff;
    transition: opacity .3s ease;
}
/* Title */
.video-title {
    margin: 0;
    font-size: 26px;
    font-weight: bold;
    margin-left: 90px;
}

/* Meta Info */
.video-meta {
    display: flex;
    gap: 15px;
    margin: 8px 0;
    font-size: 14px; 
    align-items: center;
    margin-left: 90px;
}

/* Short Description */
.video-desc {
    margin: 18px 0;
    font-size: 15px;
    opacity: 0.9;
    margin-left: 90px;
        width: 40%;
        display: -webkit-box;
  -webkit-line-clamp: 3;   /* number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Watch Now Button */
.watch-btn {
    margin-left: 90px;
    padding: 10px 18px;
    background: #e50914;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    text-decoration: none;
    transition: .3s;
    display: inline-flex;
    align-items: center;  
    gap: 6px;
}

.watch-btn:hover {
    background: #ff1a25;
}
.part-divided {
 
}
.text-white{
    color:white;
}
/* PANEL WRAPPER */
.panel {
  /*margin-top: 50px;*/
  margin-left: 90px;
  margin-right: 40px;
  color: #fff;
}

/* HEADER */
.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.panel-header h3 {
  font-size: 22px;
  font-weight: 500;
}

.view-all {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
}

.view-all:hover {
  color: #fff;
}

/* CONTENT */
.panel-content {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

/* ITEM */
.panel-item {
  cursor: pointer;
  transition: transform 0.3s ease;
  text-decoration:none;
}

.panel-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;

  /* DOUBLE BORDER EFFECT */
  border: 2px solid #000;          /* inner black border */
  outline: 2px solid transparent;  /* outer transparent border */
  outline-offset: 2px;

  transition: border 0.3s ease, outline 0.3s ease;
}
.panel-item:hover img {
            /* inner becomes white */
  outline-color: #fff;             /* outer becomes white */
}


.panel-item h4 {
  margin-top: 8px;
  font-size: 14px;
  text-align: center;
  color: #eee;
}

.panel-item:hover { 
}
 

/* Large tablets */
@media (max-width: 1200px) {
  .panel-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Tablets */
@media (max-width: 992px) {
  .panel-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .panel-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer {
  display: flex;
  padding-left:90px !important;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px;
  background-color: #0b0b0b;
  color: #aaa;
  font-family: 'Fira Sans', sans-serif;
}

.footer-left {
  flex: 1 1 250px;
  margin-bottom: 20px;
}

.footer-logo {
  width: 50px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-social a img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1); /* makes icons white */
  transition: transform 0.3s;
}

.footer-social a img:hover {
  transform: scale(1.2);
}

.footer-right {
  display: flex; 
  gap: 60px;
  flex-wrap: wrap;
}

.footer-column h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-column a {
  display: block;
  color: #aaa;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #fff;
}

@media screen and (max-width: 768px) {
     .panels{
   margin: 0 !important;
}
    .watch-container { 
    margin-top: 52px !important;
}

  .footer {
    flex-direction: column;
    padding: 30px 20px;
    padding-left: 20px !important;
  }
  .footer-right {
    gap: 40px;
    margin-top: 20px;
  }
  .footer-left {
  flex: 0; 
}
.close-btn{
    top: 50px;
}
}
.bold-text{
    font-weight:bold;
    color:white;
    font-size: 16px;
}
.category-item {
    text-align: center;
    padding: 20px;
    border-radius:20px;
}

.category-image {
    width: 100%;
    height: 100px;
    border-radius: 10px;

    display: flex;
    align-items: center;      
    justify-content: center;  

    font-size: 18px;         
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.watch-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden; 
}

.watch-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Active state */
.popup-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Popup box */
.popup-box {
  background: #252b37;
  padding: 20px 25px;
  border-radius: 8px;
  max-width: 90%;
  width: 320px;
  text-align: center;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

/* Animate popup */
.popup-overlay.active .popup-box {
  transform: scale(1);
}
.popup-box h2 {
  margin-bottom: 10px;
  font-size: 18px;
}

.popup-box p {
  margin-bottom: 20px;
  font-size: 14px;
  color: #fff;
}

.popup-box button {
  padding: 8px 20px;
  border: none;
  background: red;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}

.popup-box button:hover {
  background: brown;
}
.no-scroll {
  overflow: hidden;
  height: 100vh;
}

