
body {
  background-color: #000;
  margin: 0;
  padding: 0;
}

.netflix-navbar {
  background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
  padding: 15px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.netflix-navbar .navbar-brand {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.5rem;
  color: #E50914 !important;
  letter-spacing: 2px;
}

.netflix-navbar .nav-link {
  color: #fff !important;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
}

.netflix-navbar .nav-link:hover {
  color: #E50914 !important;
}


.search-btn {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 5px 15px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-btn:hover {
  background: #E50914;
  border-color: #E50914;
}

.classification-dropdown {
  background: rgba(0,0,0,0.7);
  border: 1px solid #fff;
  color: #fff;
  padding: 5px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.classification-dropdown:hover {
  border-color: #E50914;
}

.hero-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(to top, #141414 0%, transparent 50%),
              linear-gradient(to right, rgba(20,20,20,0.8) 0%, rgba(20,20,20,0.4) 50%, rgba(20,20,20,0.8) 100%);
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.movie-row-title {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 30px 0 15px 4%;
}

.movie-row {
  display: flex;
  gap: 15px;
  padding: 0 4%;
  overflow-x: auto;
  scroll-behavior: smooth;
}

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

.movie-card {
  min-width: 200px;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.movie-card:hover {
  transform: scale(1.15);
  box-shadow: 0 10px 30px rgba(229,9,20,0.5);
  z-index: 10;
}

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

.movie-card .movie-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
  padding: 20px 10px 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.movie-card:hover .movie-overlay {
  opacity: 1;
}

.movie-overlay h5 {
  color: #fff;
  font-size: 0.9rem;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

.movie-overlay span {
  color: #46d369;
  font-size: 0.8rem;
  font-family: 'Inter', sans-serif;
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.7);
  color: #fff;
  border: none;
  padding: 20px 10px;
  cursor: pointer;
  z-index: 100;
  font-size: 2rem;
  transition: background 0.3s ease;
}

.nav-arrow:hover {
  background: #E50914;
}

.nav-arrow.prev {
  left: 0;
}

.nav-arrow.next {
  right: 0;
}

.main-content {
  padding-top: 80px;
}

.hero-content {
  padding: 100px 4% 50px;
  color: #fff;
}

.hero-content h1 {
  font-family: 'Bebas Neue', cursive;
  font-size: 4rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  max-width: 500px;
  margin-bottom: 20px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn-play {
  background: #fff;
  color: #000;
  padding: 10px 30px;
  border-radius: 4px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-play:hover {
  background: rgba(255,255,255,0.7);
}

.btn-info {
  background: rgba(109,109,110,0.7);
  color: #fff;
  padding: 10px 30px;
  border-radius: 4px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.section-title {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin: 40px 0 15px 4%;
}

#heroCarousel {
  margin-top: 60px;
  height: 400px;
  overflow: hidden;
}

#heroCarousel .carousel-inner {
  height: 100%;
}

#heroCarousel .carousel-item {
  height: 100%;
}

#heroCarousel .carousel-item img {
  height: 100%;
  object-fit: cover;
}

#heroCarousel .carousel-caption {
  background: rgba(0, 0, 0, 0.6);
  padding: 25px 40px;
  border-radius: 10px;
  bottom: 30px;
  left: 5%;
  transform: none;
  width: auto;
  max-width: 500px;
  text-align: left;
}

#heroCarousel .carousel-caption h5 {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.5rem;
  color: #E50914;
  margin-bottom: 10px;
}

#heroCarousel .carousel-caption p {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 20px;
}

#heroCarousel .carousel-caption .hero-buttons {
  justify-content: flex-start;
}

#heroCarousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
}

#heroCarousel .carousel-control-prev-icon,
#heroCarousel .carousel-control-next-icon {
  background-color: #E50914;
  border-radius: 50%;
  padding: 20px;
}