/* App 下載 CTA 卡（共用元件，與 anime.css 的 .app-cta-card 同款） */
.app-cta-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem auto 1rem auto;
    max-width: 720px;
    padding: 1.2rem;
    background: linear-gradient(135deg, #4A6985 0%, #5B7A9A 100%);
    color: white;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(74, 105, 133, 0.25);
}
.app-cta-icon img { border-radius: 14px; box-shadow: 0 2px 8px rgba(0,0,0,0.2); }
.app-cta-text { flex: 1; min-width: 0; }
.app-cta-title { font-size: 1rem; font-weight: 700; }
.app-cta-subtitle {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: 0.2rem;
}
.app-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    background: white;
    color: #4A6985;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: transform 0.15s;
}
.app-cta-button:hover { transform: scale(1.05); }

@media (max-width: 600px) {
    .app-cta-card { flex-wrap: wrap; margin-left: 1rem; margin-right: 1rem; }
    .app-cta-button { width: 100%; justify-content: center; }
}
