body {
  font-family: 'Helvetica Neue', sans-serif;
  background: #eaeaea;
  padding: 40px;
}

.container {
  max-width: 960px;
  margin: 0 auto;
}

.page-title {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #222;
}

.film-block {
  width: 100%;
  margin-bottom: 60px;
}

.film-card {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 32px;
  border-radius: 24px;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}

.film-card:hover {
  transform: translateY(-4px);
}

.film-number {
  font-size: 110px;
  font-weight: 900;
  color: #2e2e2e;
  line-height: 1;
  flex-shrink: 0;
  display: flex;
  align-items: stretch;
}

.film-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.film-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #111;
}

.original-title {
  font-size: 16px;
  font-weight: 400;
  color: #888;
  margin-bottom: 12px;
}

.film-rating {
  color: #ff4d4f;
  font-weight: 500;
  margin-bottom: 12px;
  font-size: 16px;
}

.film-info {
  margin-bottom: 12px;
  line-height: 1.6;
  color: #333;
}

.film-meta {
  color: #666;
  font-size: 14px;
}

.film-poster img {
  border-radius: 14px;
  width: 180px;
  height: auto;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .film-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .film-number {
    font-size: 72px;
  }

  .film-poster img {
    width: 100%;
    max-width: 100%;
  }
}