Reset
body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}


.member-footer-link-content {
  font-family: "Netflix Sans", "Helvetica Neue", "Segoe UI", Roboto, Ubuntu, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #808080;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease-in-out;
}

.member-footer-link-content:hover {
  text-decoration: underline;
  color: #b3b3b3; /* slightly lighter on hover */
}


/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  height: 68px;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.left-nav {
  display: flex;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #e50914;
  margin-right: 25px;
}

.nav-links {
  display: flex;
  gap: 18px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
}

.nav-links a:hover {
  color: #b3b3b3;
}

.right-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.right-nav i {
  font-size: 18px;
  cursor: pointer;
}

/* Hero */
.hero {
  margin-top: 68px;
  height: 70vh;
  background: url("https://www.youtube.com/watch?v=Ed1sGgHUo88&pp=ygUYc3F1aWQgZ2FtZSBtb3ZpZSB0cmFpbGVy") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1rem;
  max-width: 500px;
  margin-bottom: 20px;
}
/* Use Netflix Sans if available, fallback to sans-serif */
:root {
  --netflix-red: #E50914;
  --netflix-gray: #B3B3B3;
  --netflix-light-gray: #808080;
}

/* General body/typography */
body, a, button, .nav-links a, .age-badge, .profile-label {
  font-family: "Netflix Sans", "Helvetica Neue", Arial, sans-serif;
}

/* Nav links */
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-transform: none;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--netflix-gray);
}

/* Profile avatar and name/icon in nav */
.profile {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
}

.profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* “18+” badge / age rating badge */
.age-badge {
  background: var(--netflix-red);
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 2px;
  display: inline-block;
}


/* Button text style (Play / My List / etc) */
.btn, button {
  font-family: "Netflix Sans", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: none;
}

/* Example: search / notification icons tooltip or font style */
.search-icon, .notif-icon {
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  transition: color 0.2s ease;
}

.search-icon:hover, .notif-icon:hover {
  color: var(--netflix-gray);
}











/* Base button style */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  font-family: "Netflix Sans", "Helvetica Neue", "Segoe UI", Roboto, Ubuntu, sans-serif;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Play Button */
.btn.play {
  background-color: #fff;
  color: #000;
}

.btn.play:hover {
  background-color: #e6e6e6;
}

/* Play Button Icon */
.btn.play i {
  font-size: 18px;
}

/* More Info Button */
.btn.info {
  background-color: rgba(109, 109, 110, 0.7);
  color: #fff;
}

.btn.info:hover {
  background-color: rgba(109, 109, 110, 0.9);
}

/* More Info Icon */
.btn.info i {
  font-size: 18px;
}


/* Movie Rows */
.row {
  margin: 30px 0;
  padding: 0 30px;
}

.row h2 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.row-posters {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
}

.row-posters::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.movie-poster {
  flex: 0 0 auto; /* Prevent shrinking */
  width: 230px;
  height: 130px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.movie-poster:hover {
  transform: scale(1.1);
  z-index: 2;
}


/* TV Shows Page  */
/* Reset */
body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
  font-family: "Netflix Sans", Arial, sans-serif;
}

/* Header */
.pinning-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 40px;
  background: rgba(0, 0, 0, 0.9);
  position: sticky;
  top: 0;
  z-index: 100;
}

.pinning-header-container h1 {
  font-size: 24px;
  font-weight: bold;
}

.age-badge {
  background: red;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  padding: 4px 8px;
  border-radius: 4px;
}

/* Rows */
.row {
  margin: 20px 40px;
}

.row h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.row-posters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

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

.movie-poster {
  width: 200px;
  height: 120px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.3s;
  cursor: pointer;
}

.movie-poster:hover {
  transform: scale(1.08);
}
/* Footer */
.footer {
  margin-top: 50px;
  padding: 40px 50px;
  background-color: #000;
  color: #808080;
  text-align: center;
}

.footer p {
  margin-bottom: 15px;
}

.footer-links {
  margin-bottom: 15px;
}

.footer-links a {
  color: #808080;
  margin: 0 15px;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #fff;
}

.copy {
  font-size: 12px;
  color: #555;
}


/* movie page */
/* Movie Page */

/* Reset */
body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
  font-family: "Netflix Sans", Arial, sans-serif;
}

/* Header */
.pinning-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 40px;
  background: rgba(0, 0, 0, 0.9);
  position: sticky;
  top: 0;
  z-index: 100;
}

.pinning-header-container h1 {
  font-size: 24px;
  font-weight: bold;
}

.genre-badge {
  background: #e50914;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  padding: 4px 10px;
  border-radius: 4px;
}

/* Movie Rows */
.row {
  margin: 20px 40px;
}

.row h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.row-posters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

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

.movie-poster {
  width: 200px;
  height: 120px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.movie-poster:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

/* Top 10 Movies Row */
.top10-row {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  margin: 20px 40px;
}

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

.top10-item {
  position: relative;
  width: 200px;
  flex-shrink: 0;
}

.top10-item img {
  width: 100%;
  border-radius: 4px;
  z-index: 2;
  position: relative;
}

.rank {
  position: absolute;
  left: -25px;
  bottom: 5px;
  font-size: 80px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.08);
  z-index: 1;
}

/* Footer */
.footer {
  margin-top: 50px;
  padding: 40px 50px;
  background-color: #000;
  color: #808080;
  text-align: center;
}

.footer p {
  margin-bottom: 15px;
}

.footer-links {
  margin-bottom: 15px;
}

.footer-links a {
  color: #808080;
  margin: 0 15px;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #fff;
}

.copy {
  font-size: 12px;
  color: #555;
}



/* Netflix Navigation Logo */
.logo {
  font-family: "Netflix Sans", Arial, sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #e50914; /* Netflix Red */
  text-decoration: none;
  display: inline-block;
  margin-right: 30px;
  cursor: pointer;
  line-height: 1;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}


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

body {
  background: #000;
  color: #fff;
  font-family: "Netflix Sans", "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4vw;
  height: 68px;
  background: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

/* Netflix Logo Text */
.logo {
  font-family: "Netflix Sans", Arial, sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #e50914;
  text-decoration: none;
  cursor: pointer;
  margin-right: 30px;
  transition: opacity 0.3s ease;
}
.logo:hover { opacity: 0.85; }

/* Left Nav Links */
.left-nav {
  display: flex;
  align-items: center;
}
.nav-links {
  display: flex;
  gap: 18px;
}
.nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: #b3b3b3; }

/* Right Nav */
.right-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.search-icon, .notif-icon {
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  transition: color 0.2s ease;
}
.search-icon:hover, .notif-icon:hover { color: #b3b3b3; }

/* Profile Avatar */
.profile {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.profile img {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.3);
}
.profile::after {
  content: "▾";
  font-size: 12px;
  color: #fff;
  margin-left: 6px;
}
/* Dropdown */
.profile-menu {
  position: absolute;
  top: 45px;
  right: 0;
  background: rgba(0,0,0,0.95);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 10px;
  display: none;
  flex-direction: column;
  min-width: 160px;
  z-index: 2000;
}
.profile-menu a {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 3px;
  transition: background 0.2s;
}
.profile-menu a:hover { background: rgba(255,255,255,0.1); }
.profile:hover .profile-menu { display: flex; }

/* Age Badge */
.age-badge {
  background: #e50914;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  padding: 3px 7px;
  border-radius: 2px;
  display: inline-block;
}

.hero {
  position: relative;
  height: 80vh; /* adjust height like Netflix hero */
  width: 100%;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* behind everything */
  overflow: hidden;
}

.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps aspect ratio and fills */
  position: absolute;
  top: 0;
  left: 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 300%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 20%, rgba(0, 0, 0, 0) 60%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2; /* above video + overlay */
  color: #fff;
  padding: 0px 10px;
  max-width: 500px;
}
.title-logo {
  width: 250px;   /* Adjust width as needed */
  height: auto;   /* Keeps the aspect ratio */
  margin-bottom: 15px;  /* Optional spacing below logo */
}

