/* ============================================================
 * MatLuk FotoChallenge — Daily-Done-Modal (Iter V.6)
 *
 * Wird angezeigt wenn der User im Bottom-Sheet auf die
 * Daily-Card klickt und die Daily heute schon erledigt ist.
 * ============================================================ */

.daily-done-card {
    max-width: 420px;
}

.daily-done-body {
    text-align: center;
    padding: 20px 24px 24px;
}

/* Großer Haken oben */
.daily-done-icon {
    font-size: 64px;
    line-height: 1;
    margin-bottom: 10px;
    animation: daily-done-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    filter: drop-shadow(0 2px 8px rgba(34, 197, 94, 0.3));
}

@keyframes daily-done-pop {
    0%   { transform: scale(0); opacity: 0; }
    60%  { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}

.daily-done-title {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 12px;
    color: #16a34a;
}

.daily-done-text {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text);
    margin: 0 0 14px;
}

.daily-done-text strong {
    font-weight: 700;
}

.daily-done-sub {
    font-size: 14px;
    color: var(--text-dim);
    margin: 0 0 20px;
    line-height: 1.5;
}

/* Belohnungs-Box */
.daily-done-rewards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 16px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.10), rgba(34, 197, 94, 0.08));
    border-radius: 12px;
    border: 1px dashed rgba(34, 197, 94, 0.3);
    margin-bottom: 18px;
}

.daily-done-rewards-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--text-dim);
    font-weight: 700;
}

.daily-done-rewards-list {
    display: flex;
    gap: 16px;
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
}

.daily-done-close-btn {
    margin-top: 4px;
}

/* Dark-Mode */
@media (prefers-color-scheme: dark) {
    .daily-done-title {
        color: #4ade80;
    }
    .daily-done-rewards {
        background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(34, 197, 94, 0.12));
        border-color: rgba(74, 222, 128, 0.4);
    }
}
