/* Add this CSS code */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0b0c10;
  color: white;
  padding: 1rem 2rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  position: relative;
}

.nav-links a::after {
  content: '';
  display: block;
  height: 2px;
  background: #66fcf1;
  transition: 0.3s;
  width: 0;
}

.nav-links a:hover::after {
  width: 100%;
}

.hero {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('s.jpg') no-repeat center/cover;
  color: white;
  animation: fadeIn 2s ease;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero button {
  margin-top: 1rem;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  background: #66fcf1;
  color: #0b0c10;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s;
}

.hero button:hover {
  transform: scale(1.1);
}

.movie-section {
  padding: 2rem;
  background:#f4f4f4;
  text-align: center;
}

.movie-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1rem;
}
.movie-card img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
}

.movie-card:hover img {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.movie-card {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  cursor: pointer;
  width: 200px;
}

.movie-card:hover {
  transform: scale(1.05);
}

.movie-card img {
  width: 100%;
  border-radius: 5px;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #0b0c10;
  color: white;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .movie-grid {
    grid-template-columns: 1fr;
  }
}
.hero h1 {
  animation: fadeInUp 1s ease-in-out;
}
.social-links {
  margin-top: 10px;
  text-align: center;
}

.social-links a {
  color: #fff;
  font-size: 24px;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #ff0000; /* YouTube Red */
}

@keyframes fadeInUp {
  0% { transform: translateY(30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}


}
