/* استایل عمومی صفحه دانلود برنامه‌ها */
body {
    font-family: 'Vazir', Arial, sans-serif;
    margin:0; padding:0;
    background: #f0f2f5;
}

h1 {
    text-align:center;
    margin:30px 0;
    color: #333;
}

/* کانتینر کارت‌ها */
.container {
    width:90%;
    max-width:1200px;
    margin:0 auto;
}

/* لیست برنامه‌ها */
.app-list {
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
}

/* کارت برنامه */
.app-card {
    background:white;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
    width:220px;
    padding:15px;
    text-align:center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.app-card:hover {
    transform: translateY(-8px);
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

.app-card img {
    width:100%;
    border-radius:10px;
    margin-bottom:10px;
}

.app-card h2 {
    font-size:1.2em;
    color:#333;
    margin:10px 0 5px;
}

.app-card p {
    font-size:0.95em;
    color:#555;
    min-height:60px;
}

.app-card a {
    display:block;
    margin-top:10px;
    padding:12px;
    background:#ff6b6b;
    color:white;
    text-decoration:none;
    border-radius:10px;
    font-weight:bold;
    transition:0.3s;
}
.app-card a:hover {
    background:#ff4757;
}

/* دکمه بازگشت */
a.back {
    display:inline-block;
    margin:30px auto;
    padding:10px 20px;
    background:#2575fc;
    color:white;
    text-decoration:none;
    border-radius:10px;
    transition:0.3s;
}
a.back:hover {
    background:#6a11cb;
}

/* واکنشگرایی برای موبایل */
@media (max-width:600px){
    .app-list { flex-direction:column; align-items:center; }
    .app-card { width:90%; }
}
