
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background: #f9fdfb;
  color: #333;
}
header {
  background: #2C8C4A;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}
.logo {
  width: 80px;
  border-radius: 12px;
}
nav a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
}
.hero {
  background: linear-gradient(to right, #4CAF50, #81C784);
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}
.hero h1 {
  font-size: 2.5rem;
}
.hero .button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: white;
  color: #2C8C4A;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
}
.trailers-preview {
  padding: 3rem 2rem;
  text-align: center;
}
.trailers-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.trailers-grid img {
  width: 300px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
footer {
  background: #2C8C4A;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 3rem;
}
