    body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background: #0F0F0F;
      color: #fff;
      line-height: 1.6;
    }
    a{color:white}
    .navbar {
      position: fixed;
      top: 0;
      width: 100%;
      background: rgba(0, 0, 0, 0.9);
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      backdrop-filter: blur(10px);
    }
    .logo { font-size: 1.5rem; font-weight: 700; color: #FF6B35; } /* Orange accent */
    .search-bar { flex: 1; max-width: 400px; margin: 0 2rem; }
    .search-bar input { width: 100%; padding: 0.5rem; border: none; border-radius: 4px; background: #333; color: #fff; }
    .user-menu { display: flex; gap: 1rem; }
    .hero {
      position: relative;
      height: 60vh;
      background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://via.placeholder.com/1920x1080?text=The+Incredibles+Hero+Image') center/cover; /* Replace with actual hero image */
      display: flex;
      align-items: center;
      padding: 9rem 2rem;
    }
    .hero-content {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 2rem;
    }
    .poster { width: 300px; height: 450px; background: #333; border-radius: 8px; } /* Placeholder for poster */
    .movie-info h1 { font-size: 2.5rem; margin: 0 0 1rem; color: #fff; }
    .metadata { display: flex; gap: 1rem; margin-bottom: 1rem; font-size: 0.9rem; color: #ccc; }
    .play-btn {
      background: #FF6B35; /* Orange */
      color: #fff;
      border: none;
      padding: 1rem 2rem;
      font-size: 1.1rem;
      border-radius: 4px;
      cursor: pointer;
      transition: background 0.3s;
    }
    .play-btn:hover { background: #E55A2B; }
    .main-content {
      max-width: 1200px;
      margin: 2rem auto;
      padding: 0 2rem;
    }
    .synopsis { font-size: 1.1rem; margin-bottom: 2rem; }
    .video-player { width: 100%; height: auto; background: #222; border-radius: 8px; margin-bottom: 2rem; } /* Embed video here */

    .footer {
      background: #000;
      padding: 2rem;
      text-align: center;
      color: #ccc;
    }
    @media (max-width: 768px) {
      .hero-content { grid-template-columns: 1fr; text-align: center; }
      .navbar { padding: 1rem; }
    }

.videojs_content{text-align:center;}
.videojs_content h1{display:block;padding:20px;text-transform:uppercase;font-size:16px;line-height:150%}

.video-16-9-wrapper {
  position: relative;
  width: 100%;
  /* max-width: 900px; /or your preferred max width */
  aspect-ratio: 16 / 9; /* modern browsers */

  margin: 0 auto;
  background: #222;
  border-radius: 8px;
}

/* For browsers that don't support aspect-ratio */
.video-16-9-wrapper-fallback {
  position: relative;
  width: 100%;
  max-width: 900px;
  padding-top: 56.25%; /* 16:9 ratio */
  background: #000;
  margin: 0 auto;
}
.video-16-9-wrapper-fallback #video_v3,
.video-16-9-wrapper #video_v3 {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.related{display: flex; overflow-x: auto; gap: 1rem; padding-bottom: 1rem;}
.related img{min-width: 200px; height: auto; background: #333; border-radius: 8px;}


#my_overlay {
	background:rgba(0,0,0,0.5);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index:99;
	display:none;
	overflow:hidden;

}
#my_overlay .overlay-in {
	position:absolute;
	top:50%;
	left:50%;
	transform: translate(-50%, -50%);
	display:inline-block;
	height:250px;
}
#my_overlay .overlay-close {
	width: 28px;
	height: 28px;
	background:url(/images/overlay svg);
	background-size:28px 28px;
	top:10px;
	right:10px;
	cursor:pointer;
	position:absolute;
}


