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

body {
  background: #202124;
  color: #e8eaed;
  font-family: Inter, system-ui, sans-serif;
}

.container {
  max-width: 1400px;
  margin: auto;
  padding: 10px;
}

/* Masonry Layout */
.grid {
  columns: 200px;
  column-gap: 14px;
}

@media (max-width: 768px) {
  .grid {
    columns: 2;
  }
}

.card {
  background: #414345;
  border-radius: 12px;
  overflow: hidden;
  display: inline-block;
  width: 100%;
  margin-bottom: 14px;
  break-inside: avoid;
  transition: transform 0.15s;
}

.card:hover {
  transform: scale(1.03);
}

.poster img {
  width: 100%;
  height: auto;
  display: block;
}

.info {
  padding: 10px;
}

.title {
  font-size: 12px;
  line-height: 1.4;
}

.no-tap-highlight {
  -webkit-tap-highlight-color: transparent;
}
