/* --- فونت وزیری از هاست خودت --- */
@font-face {
  font-family: 'Vazir';
  src: url('font/vazirmtn.woff2') format('woff2'),
       url('font/vazirmtn.woff2') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Vazir';
  src: url('font/vazirmtn.woff2') format('woff2'),
       url('font/vazirmtn.woff2') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

        body {
            font-family: 'Vazir', sans-serif;
            background-color: #0f172a;
            color: #e2e8f0;
        }
        .dark-gradient {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
        }
        .movie-card {
            transition: all 0.3s ease;
        }
        .movie-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        .swiper-slide {
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        .swiper-slide::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
        }
        .swiper-content {
            position: relative;
            z-index: 1;
            text-align: center;
            padding: 0 20px;
            max-width: 800px;
        }
/* --- استایل‌ها --- */
body {
  padding: 2rem;
  font-family: 'Vazir', -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
}

h1 {
  font-size: 16px;
  margin-top: 0;
  font-weight: 700; /* برای استفاده از Bold */
}

p {
  color: rgb(107, 114, 128);
  font-size: 15px;
  margin-bottom: 10px;
  margin-top: 5px;
}

.card {
  max-width: 620px;
  margin: 0 auto;
  padding: 16px;
  border: 1px solid lightgray;
  border-radius: 16px;
}

.card p:last-child {
  margin-bottom: 0;
}
