/* ===== ERROR STATE ===== */
.error {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 0;
    gap: 20px;
    flex: 1;
    justify-content: center;
}

.error__icon {
    font-size: 56px;
    filter: grayscale(0.3);
}

.error__text {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 300px;
    line-height: 1.7;
}

/* Error sticker */
.error__sticker {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 4px 16px rgba(155, 115, 255, 0.3)) grayscale(0.2);
}
