body {
    background: #f7f8fb;
}

.card {
    transition: transform .15s ease, box-shadow .15s ease;
}

    .card:hover {
        /*
        transform: translateY(-3px);
            */
        box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
    }

.btn-primary {
    background: #4f46e5;
    border: none;
}

.btn-success {
    background: #22c55e;
    border: none;
}

.badge {
    font-weight: 600;
}

.display-6 {
    letter-spacing: -.5px;
}
.mobile-mission-bar {
    position: sticky;
    bottom: 0;
    z-index: 1030;
    padding: 0.75rem;
    margin-top: 1rem;
}

.mobile-mission-bar__inner {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid #e9ecef;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    padding: 0.75rem;
}

@media (min-width: 992px) {
    .mobile-mission-bar {
        display: none;
    }
}
.progress-stat-card {
    background: linear-gradient(135deg, #fff7ed, #ffffff);
    border: 1px solid #fde7c7;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.progress-stat-card__label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.progress-stat-card__value {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
}

.progress-stat-card__unit {
    font-size: 1rem;
    font-weight: 600;
    color: #6c757d;
}
.dashboard-scroll-cards {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scroll-snap-type: x proximity;
}

.dashboard-scroll-card {
    min-width: 220px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
    scroll-snap-align: start;
}
.streak-progress-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 1rem;
    padding: 1rem;
}

.streak-progress-track {
    height: 14px;
    background-color: #eceef3;
    border-radius: 999px;
    overflow: hidden;
}

.streak-progress-fill {
    background: linear-gradient(90deg, #f59e0b, #f97316);
    border-radius: 999px;
}

.celebration-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #ecfdf3, #ffffff);
    border: 1px solid #bbf7d0;
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    box-shadow: 0 12px 25px rgba(34, 197, 94, 0.08);
    margin-bottom: 1rem;
    animation: celebration-pop 0.4s ease-out;
}

.celebration-banner__emoji {
    font-size: 2rem;
    line-height: 1;
}

.celebration-banner__title {
    font-size: 1.15rem;
    font-weight: 800;
}

.celebration-banner__text {
    color: #6c757d;
    font-weight: 500;
}

@keyframes celebration-pop {
    0% {
        transform: scale(0.96);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}
.confetti-burst {
    position: relative;
    height: 0;
    margin-bottom: 1.5rem;
}

    .confetti-burst span {
        position: absolute;
        width: 10px;
        height: 16px;
        border-radius: 4px;
        animation: confetti-fall 1.2s ease-out forwards;
        opacity: 0;
    }

        .confetti-burst span:nth-child(1) {
            left: 10%;
            background: #f59e0b;
            animation-delay: 0s;
        }

        .confetti-burst span:nth-child(2) {
            left: 25%;
            background: #22c55e;
            animation-delay: 0.05s;
        }

        .confetti-burst span:nth-child(3) {
            left: 40%;
            background: #3b82f6;
            animation-delay: 0.1s;
        }

        .confetti-burst span:nth-child(4) {
            left: 55%;
            background: #ef4444;
            animation-delay: 0.15s;
        }

        .confetti-burst span:nth-child(5) {
            left: 70%;
            background: #a855f7;
            animation-delay: 0.2s;
        }

        .confetti-burst span:nth-child(6) {
            left: 85%;
            background: #14b8a6;
            animation-delay: 0.25s;
        }

@keyframes confetti-fall {
    0% {
        transform: translateY(-30px) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(70px) rotate(240deg);
        opacity: 0;
    }
}
.retention-card {
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
/*
    .retention-card:hover {
        transform: translateY(-2px);
    }
    */
.retention-label {
    letter-spacing: 0.08em;
}

.retention-card-default {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    border-left: 5px solid #6c757d;
}

.retention-card-urgency {
    background: linear-gradient(180deg, #fff8e1 0%, #fffdf5 100%);
    border-left: 5px solid #ffc107;
}

.retention-card-recovery {
    background: linear-gradient(180deg, #eef7ff 0%, #f8fbff 100%);
    border-left: 5px solid #0dcaf0;
}

.retention-card-comeback {
    background: linear-gradient(180deg, #ecfff3 0%, #f8fff9 100%);
    border-left: 5px solid #198754;
}

/* coach style */
.coach-border-builder {
    border-left: 4px solid #198754 !important;
}

.coach-border-challenger {
    border-left: 4px solid #dc3545 !important;
}

.coach-border-strategist {
    border-left: 4px solid #0d6efd !important;
}

.coach-border-reflector {
    border-left: 4px solid #6f42c1 !important;
}

.coach-bg-builder {
    background: rgba(25, 135, 84, 0.04);
}

.coach-bg-challenger {
    background: rgba(220, 53, 69, 0.04);
}

.coach-bg-strategist {
    background: rgba(13, 110, 253, 0.04);
}

.coach-bg-reflector {
    background: rgba(111, 66, 193, 0.04);
}

.coach-accent-builder {
    background-color: rgba(25, 135, 84, 0.12);
    color: #146c43;
}

.coach-accent-challenger {
    background-color: rgba(220, 53, 69, 0.12);
    color: #b02a37;
}

.coach-accent-strategist {
    background-color: rgba(13, 110, 253, 0.12);
    color: #0a58ca;
}

.coach-accent-reflector {
    background-color: rgba(111, 66, 193, 0.12);
    color: #59359c;
}

.coach-option-card {
    transition: all 0.18s ease;
}
/*
    .coach-option-card:hover {
        transform: translateY(-1px);
    }
    */
.coach-option-selected {
    border-color: #0d6efd !important;
    box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.15);
}

#reminder-center-container.reminder-center-updated {
    animation: reminderPulse 1.2s ease;
}

#reminder-center-container.reminder-center-updated {
    animation: reminderPulse 1.2s ease;
}

@keyframes reminderPulse {
    0% {
        transform: scale(1);
        filter: brightness(1);
    }

    35% {
        transform: scale(1.015);
        filter: brightness(1.08);
    }

    100% {
        transform: scale(1);
        filter: brightness(1);
    }
}
@keyframes pulse-soft {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.85;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.pulse-soft {
    animation: pulse-soft 1.8s ease-in-out infinite;
}


.admin-tool-card {
    border-radius: 1.25rem;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

    .admin-tool-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.18) !important;
    }

.admin-tool-card-disabled {
    opacity: 0.75;
}

.atc-beta-badge {
    display: inline-block;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(25, 211, 255, 0.08);
    border: 1px solid rgba(25, 211, 255, 0.20);
    color: #147BFF;
    font-weight: 600;
    margin-bottom: 1rem;
}

.atc-beta-text {
    color: rgba(255,255,255,0.75);
    max-width: 700px;
}