body {
  margin: 0;
  background: #0b0b0b;
  color: #eaeaea;
  font-family: Helvetica, Arial, sans-serif;
  letter-spacing: 0.5px;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  gap: 20px;
  padding: 20px 40px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
}

nav a {
  color: #eaeaea;
  text-decoration: none;
  font-size: 12px;
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  font-weight: 400;
  margin: 0;
}

.hero p {
  opacity: 0.7;
}

.film {
  display: block;
  text-decoration: none;
  color: inherit;
  margin-bottom: 40px;
}

.film:hover {
  opacity: 0.7;
}

.work, .info {
  padding: 120px 40px;
  max-width: 1000px;
  margin: auto;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.thumb {
  background: #1a1a1a;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  opacity: 0.6;
}

.film p {
  font-size: 12px;
  opacity: 0.8;
}

a {
  color: #eaeaea;
}