    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Roboto Mono', monospace;
      line-height: 1.6;
    }

/* Hero section */
.hero {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin-top: 0;
}

.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product section */
.products {
  padding: 80px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 30px;
  background: #fff;
}

.products img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s;
}

.products img:hover {
  transform: scale(1.05);
}

/* Poster section */
.poster {
  padding: 60px 40px;
  background: #f9f9f9;
  text-align: center;
}

.poster img {
  max-width: 100%;
  border-radius: 10px;
}

