/* body {
  background-color: #0b0f19;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(9, 9, 9, 0.25), transparent 70%),
    radial-gradient(circle at 85% 75%, rgba(0, 0, 0, 0.2), transparent 70%),
    radial-gradient(circle at 50% 0%, rgba(0,0,0,0.8), transparent 60%);
  background-attachment: fixed;
  color: white;
} */

body {
  background-color: #0b0b0b !important;
  overflow-x: hidden;
}
a {
  text-decoration: none;
}
.navbar {
  background: #141414;
  position: relative;
}
.navbar a,
.navbar input,
span {
  color: white;
  margin-right: 20px;
  cursor: pointer;
}
.navbar input {
  width: 250px;
  background: #0e1a2b;
  border: none;
  border-radius: 8px;
  padding: 5px 10px;
  color: white;
}
.search-suggestions {
  position: absolute;
  top: 50px;
  left: 20px;
  right: 20px;
  background: #1b2436;
  z-index: 1000;
  border-radius: 8px;
  max-height: 300px;
  overflow-y: auto;
  display: none;
}
.search-suggestions div {
  padding: 8px 12px;
  cursor: pointer;
}
.search-suggestions div:hover {
  background: #2c3650;
}

.hero-carousel .carousel-item img {
  height: 80vh;
}

.carousel-caption {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 20px;
  border-radius: 10px;
}

.section-title {
  margin: 30px 0 15px;
}
.movie-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s;
}
.movie-card img {
  width: 100%;
  object-fit: cover;
}
.movie-card:hover {
  transform: scale(1.05);
}
.rating {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #000000cc;
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 13px;
  color: #ffd43b;
}
.movie-title {
  margin-top: 6px;
  font-size: 14px;
  text-align: center;
}
.pagination {
  justify-content: center;
  margin-top: 15px;
}
.modal-body iframe {
  width: 100%;
  height: 400px;
}
.site-footer {
  background: #0f172a;
  color: #fff;
  padding-top: 50px;
  margin-top: 50px;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h3 {
  margin-bottom: 15px;
  position: relative;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #cbd5e1;
  text-decoration: none;
  transition: 0.3s;
}

.footer-section a:hover {
  color: #38bdf8;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  border-top: 1px solid #1e293b;
  color: #94a3b8;
}
