/* استایل کلی */
* { box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "IRANSans", "Vazirmatn", Arial, sans-serif;
  margin: 0; padding: 16px;
  background: #0b0f17; color: #e8ecf3;
}
.container { max-width: 720px; margin: 0 auto; text-align: center; }
.title { font-size: 20px; margin: 12px 0; line-height: 1.5; text-align: center; }

/* کاور استاندارد کوچیک‌تر */
.cover {
  width: 80%;                /* کوچیک‌تر از کل صفحه */
  aspect-ratio: 2 / 3;       /* نسبت پوستر */
  object-fit: cover;
  border-radius: 16px;
  background: #1b2230;
  display: block;
  margin: 0 auto 12px;       /* وسط‌چین */
}

/* کاور صفحه جزئیات */
.cover-large {
  width: 70%;                /* کوچیک‌تر برای دسکتاپ */
  max-width: 400px;
  margin: 0 auto 16px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 16px;
  background: #1b2230;
  display: block;
}

/* بج امتیاز IMDb */
.imdb-badge {
  display: inline-block;
  background: #f5c518;       /* رنگ زرد برند IMDb */
  color: #000;               /* متن مشکی */
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 16px;
  margin: 8px auto;
}

/* خلاصه */
.summary {
  margin: 12px auto 16px;
  line-height: 1.8;
  color: #cfd7e6;
  text-align: justify;
  max-width: 600px;
}

/* دکمه آبی تلگرام */
.btn-primary {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 12px auto;
  text-align: center;
  padding: 14px 16px;
  background: #1d9bf0; color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
}

/* گرید لیست فیلم‌ها */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.card {
  background: #121826;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  border: 1px solid #1f2a44;
}
.card-body { padding: 8px; text-align: center; }
.card .name { font-size: 14px; margin-top: 6px; }
.card .type { font-size: 12px; opacity: 0.8; }

@media (min-width: 640px){
  .grid { grid-template-columns: repeat(3, 1fr); }
  .title { font-size: 22px; }
}
