/* ==========================================
   LunarStar Error State
   Soft red, not alarm red.
========================================== */

.ls-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    text-align: center;
    gap: 16px;
    border: 1px solid rgba(255, 120, 120, 0.2);
    background: rgba(255, 90, 90, 0.04);
    border-radius: 20px;
}

.ls-error .error-icon {
    font-size: 28px;
    opacity: 0.5;
}

.ls-error h3 {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

.ls-error p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

.ls-error .btn-retry {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 120, 120, 0.25);
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
}

.ls-error .btn-retry:hover {
    background: rgba(255, 120, 120, 0.08);
    border-color: rgba(255, 120, 120, 0.4);
}
