/* ============================================================
 * MatLuk FotoChallenge — App-Store-Hinweis (Iter V.6)
 *
 * Erklaert User auf der Login-Seite warum die App (noch) nicht
 * im Apple App Store / Google Play Store ist.
 * ============================================================ */

.auth-store-hint {
    display: flex;
    gap: 14px;
    padding: 16px 18px;
    margin: 16px 0;
    background: linear-gradient(135deg,
        rgba(99, 102, 241, 0.06),
        rgba(3, 215, 226, 0.04));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 14px;
}

.auth-store-hint-icon {
    font-size: 32px;
    line-height: 1;
    flex-shrink: 0;
}

.auth-store-hint-text {
    flex: 1;
    min-width: 0;
}

.auth-store-hint-text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.auth-store-hint-text p {
    margin: 0 0 8px;
    font-size: 13px;
    line-height: 1.45;
    color: var(--text-dim, #9ca3af);
}

.auth-store-hint-text p:last-child {
    margin-bottom: 0;
}

.auth-store-hint-text strong + p {
    margin-top: 4px;
}

/* Dark-Mode */
@media (prefers-color-scheme: dark) {
    .auth-store-hint {
        background: linear-gradient(135deg,
            rgba(99, 102, 241, 0.10),
            rgba(3, 215, 226, 0.06));
    }
}

/* Light-Mode */
[data-theme="light"] .auth-store-hint {
    background: linear-gradient(135deg,
        rgba(99, 102, 241, 0.08),
        rgba(3, 215, 226, 0.05));
    border-color: rgba(99, 102, 241, 0.25);
}
[data-theme="light"] .auth-store-hint-text p {
    color: #4b5563;
}
