/* ==========================================
   LunarStar Success State
   Brand gold, not generic green.
========================================== */

.ls-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    text-align: center;
    gap: 16px;
    border: 1px solid rgba(212, 176, 82, 0.25);
    background: rgba(212, 176, 82, 0.06);
    border-radius: 20px;
}

.ls-success .success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 176, 82, 0.18), transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #D4B052;
}

.ls-success h3 {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.ls-success p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
    max-width: 320px;
    line-height: 1.6;
}
