*{
  border: 0px;
  padding: 0px;
  box-sizing: border-box;
}
body{
  font-family:Arial, Helvetica, sans-serif;
  background-color: #141414;
  color: #fff;
}
.nav-bar{
  position: fixed;
  top:0px;
  width:100%;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0)
    );
    z-index: 100;
    transition: color 0.3s;
}
.logo{
  height: 25px;
  cursor: pointer;
}
.nav-links{
  text-decoration: none;
  font-size: 14px;
  color: #e5e5e5;
  transition: color 0.3s;
}
.nav-links:hover{
  color:#b3b3b3;
}
.nav-options{
  display: flex;
  gap:20px;
}
.nav-right{
  display: flex;
  gap:20px;
  align-items: center;
}
.profile{
  height: 32px;
  weight: 32px;
  border-radius: 5px;
  cursor: pointer;
}
.hero {
  height: 80vh;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.4)0%,
    rgba(0, 0, 0, 0.8)100%)
    ,url("images/stranger-things.webp")center/cover;
    display: flex;
    align-items: center;
    padding: 0 60px;
    margin-bottom: 20px;
}
.hero-content{
  max-width:600px;
}
.hero-title{
  font-size: 48px;
  margin-bottom: 16px;
}
.hero-discription{
  font-size: 18px;
  color:#e5e5e5;
  margin-bottom: 24px;
}
.hero-button{
  display: flex;
  gap: 16px;
}
.btn{
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}
.btn-play{
  background-color: #fff;
  color: #000;
}
.btn-play:hover{
  background-color: rgba(255, 255, 255, 0.75);
}
.btn-info{
  background-color:  rgba(109, 109, 110, 0.7);
  color: #fff;
}
.btn-info:hover{
  background-color:  rgba(109, 109, 110, 0.4);
}

.container{
  max-width:100%;
  padding: 0 4%;
}
.content-section{
  margin-bottom: 50px;
}
.section-title{
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  letter-spacing: 0.5px;
}
.content-row{
  display: flex;
  gap: 15px;
  overflow-x:auto;
  padding-bottom: 10px;
  scroll-behavior: smooth;
}
.content-row::-webkit-scrollbar{
  height: 8px;
}

.content-row::-webkit-scrollbar-thumb{
  background: #333;
  border-radius: 4px;
}
.content-row::-webkit-scrollbar-thumb:hover{
  background: #555;
}
.content-card{
  position:relative;
  min-width:250px;
  height:140px;
  border-radius:8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.content-card:hover{
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
  z-index: 10;
}
.content-card img{
  height:100%;
  width:100%;
  object-fit:cover;
  transition: filter 0.3s ease;
}

.content-card:hover img{
  filter:brightness(0.4);
}
.netflix-badge{
  position: absolute;
  top:8px;
  left:8px;
  background: #e50914;
  height: 24px;
  width:24px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index:2;
  font-weight: bold;
  font-size: 14px;
}
.card-overlay{
  position: absolute;
  top:0;
  bottom:0;
  right:0;
  left:0;
  transition: linear-gradient(180deg,
    rgba(0,0,0,0.1)0%,
    rgba(0,0,0,0.3)50%,
    rgba(0,0,0,0.6)100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    flex-direction: column;
    justify-content: space-between;
    color: white;
    padding: 15px;
}
.card-overlay:hover{
  opacity: 1;
}
.overlay-top{
  display: flex;
  align-items: flex;
  justify-content: space-between;
}
.overlay-bottom{
  display: flex;
  flex-direction: column;
  gap:10px;
}
.overlay-title{
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
  margin-bottom: 10px;
}
.overlay-ctrl{
  display: flex;
  gap:8px;
  margin-bottom: 8px;
}
.ctrl-btn{
  height: 35px;
  width:35px;
  border-radius: 50%;
  border: 1px solid white;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background:  rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  font-size: 14px;
  transition: all 0.3s ease;
}
.ctrl-btn:hover{
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}
.play-btn{
  color: white;
}

.ctrl-btn:hover{
   background: rgba(255, 255, 255, 0.9);
   color: black;
}
.ctrl-btn:active{
   background: black;
   color: white;
}
.overlay-info{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 8px;
  gap:10px;
}
.info-badge{
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter:blur(10px);
  border-radius: 3px;
  padding: 3px 6px;
  font-size: 10px;
  font-weight: bold;

}
.play-btn::before {
  content: " ▶";
}
.check-btn:before{
  content:" ✔︎";
}
.thumbs-btn:before{
  content: "❤";
}
.more-btn:before{
  content: "︙";
}
.conten-card:before{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  right:0;
  background: linear-gradient(180deg,transparent:0%,transparent:50%,
    rgba(0, 0, 0, 0.8)100%);
    z-index=1;
}
@media (max-width: 1200px) {
  .container {
    padding: 0 3%;
  }

  .content-card {
    min-width: 220px;
    height: 125px;
  }

  .section-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 2%;
  }

  .content-section {
    margin-bottom: 35px;
  }

  .content-card {
    min-width: 180px;
    height: 100px;
  }

  .section-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }

  .netflix-badge {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }

  .content-row {
    gap: 10px;
  }

  /* Mobile overlay adjustments */
  .card-overlay {
    padding: 10px;
  }

  .overlay-title {
    font-size: 14px;
  }

  .control-btn {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .overlay-controls {
    gap: 6px;
  }

  .info-badge {
    font-size: 9px;
    padding: 2px 4px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1%;
  }

  .content-card {
    min-width: 150px;
    height: 85px;
  }


  .section-title {
    font-size: 1.2rem;
  }

  .netflix-badge {
    width: 18px;
    height: 18px;
    font-size: 10px;
    top: 4px;
    left: 4px;
  }

  .content-row {
    gap: 8px;
  }

  .content-section {
    margin-bottom: 25px;
  }

  /* Small mobile overlay adjustments */
  .card-overlay {
    padding: 8px;
  }

  .overlay-title {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .control-btn {
    width: 25px;
    height: 25px;
    font-size: 10px;
  }

  .overlay-controls {
    gap: 4px;
    margin-bottom: 6px;
  }

  .info-badge {
    font-size: 8px;
    padding: 1px 3px;
  }

  .overlay-info {
    gap: 6px;
    margin-bottom: 6px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-bar {
    padding: 15px 20px;
  }

  .nav-options {
    display: none;
  }

  .hero {
    height: 60vh;
    padding: 0 20px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-description {
    font-size: 16px;
  }

  .content-section {
    padding: 20px;
  }
}
.footer{
  background-color: #000;
  color: #808080;
  padding: 50px 60px 20px;
  margin-top: 50px;
}
.footer-content{
  max-width:1200px;
  margin:0 auto;
}
.footer-top{
  margin-bottom: 30px;
}
.social-links{
  display: flex;
  gap:20px;
  margin-bottom:20px;

}
.social-link{
  color: #808080;
  font-size: 20px;
  transition: all 0.3s ease;
}
.social-link:hover{
  color: #fff;
  transform: scale(1.1);
}
.footer-links{
  display: grid;
  grid-template-columns :repeat(4,1fr);
  gap:30px;
  margin-bottom: 30px;
}
.footer-column ul{
  list-style: none;
}
.footer-column ul li{
  margin-bottom: 15px;
}
.footer-column ul li a{
  color:#808080;
  text-decoration: none;
  font-size:14px;
  transition: color 0.3s ease;
}
.footer-column ul li a:hover{
  color: #fff;
  text-decoration: underline;
}
.footer-bottom{
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #808080;
}
.service-code{
  height: 50px;
  width:150px;
  font-size: 14px;
  background-color: black;
  border: 1px solid #808080;
  color: #808080;
  margin-bottom: 50px;
  transition: all 0.3s ease;
}
.service-code:hover{
  color: #fff;
  border: 1px solid #fff;
}
.service-code:active{
  color: black;
  background-color: white;
  border: 1px solid white;
}
@media (max-width: 768px) {
  .footer {
    padding: 30px 20px 20px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-links {
    grid-template-columns: 1fr;
  }
}
