body {
  margin:0;
  font-family: Arial, sans-serif;
  background:#0e0e0e;
  color:#fff;
}

a { text-decoration:none; color:#fff; }

header {
  background:#000;
  padding:15px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:fixed;
  width:100%;
  top:0;
  z-index:1000;
}

.logo {
  font-size:24px;
  font-weight:bold;
}

nav a {
  margin-left:20px;
}

.hero {
  height:90vh;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  background:#111;
}

.grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(200px,1fr));
  gap:20px;
  padding:40px;
}

.card img {
  width:100%;
  border-radius:10px;
}

.movie-hero {
  height:70vh;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:end;
  padding:40px;
}

.player {
  position:fixed;
  bottom:0;
  right:0;
  width:350px;
  height:200px;
}

.player iframe {
  width:100%;
  height:100%;
}

.mural {
  padding:40px;
}

form input, form textarea {
  width:100%;
  padding:10px;
  margin:10px 0;
}
