/* ═══════════════════════════════════
   ShiftMate – Download Page Styles
   ═══════════════════════════════════ */

/* ── Download page ────────────────── */
.download-section {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.playstore-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 40px;
    border-radius: 999px;
    background: var(--gradient-main);
    color: #fff;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 32px rgba(74, 108, 247, 0.25);
    margin-bottom: 48px;
}
.playstore-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 44px rgba(74, 108, 247, 0.35);
}
.download-features {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    backdrop-filter: blur(12px);
    text-align: left;
}
.download-features h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 20px;
}
.download-features ul {
    list-style: none;
    padding: 0;
}
.download-features li {
    position: relative;
    padding: 10px 0 10px 32px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(100, 120, 255, 0.04);
}
.download-features li:last-child { border-bottom: none; }
.download-features li::before {
    content: '✓';
    position: absolute;
    left: 0; top: 10px;
    color: var(--neon-cyan);
    font-weight: 700;
}

/* ── Responsive ───────────────────── */
@media (max-width: 768px) {
    .playstore-btn { padding: 16px 32px; font-size: 1rem; }
    .download-features { padding: 24px 20px; }
}