@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

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

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom, #0f0f0f, #1a1a1a);
  color: #fff;
  text-align: center;
  min-height: 100vh;
  transition: opacity 0.8s;
  opacity: 0;
}

header {
  padding: 30px 20px;
  background: #111;
  border-bottom: 2px solid #ff0055;
}

header h1 {
  font-size: 2.5em;
  color: #ff0055;
}

header p {
  color: #aaa;
  margin-bottom: 15px;
}

.search-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.search-bar input {
  padding: 10px;
  border: none;
  border-radius: 6px;
  width: 200px;
}

.search-bar button {
  padding: 10px 15px;
  border: none;
  border-radius: 6px;
  background: #ff0055;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.search-bar button:hover {
  background: #ff3377;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.card {
  background: #1b1b1b;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #ff005580;
}

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

.card h2 {
  margin: 10px 0;
  color: #ff0055;
}

.card p {
  color: #ccc;
  font-size: 0.9em;
  padding: 0 10px 15px;
}

footer {
  background: #111;
  padding: 15px;
  border-top: 2px solid #ff0055;
  color: #aaa;
}.card button {
  margin-top: 10px;
  margin-bottom: 15px;
  background: #ff0055;
  border: none;
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.card button:hover {
  background: #ff3385;
}.trailer {
  margin: 10px 0;
}

.trailer iframe {
  width: 90%;
  height: 200px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 10px #ff005580;
}