/* User stats - pro portfolio layout (inspired by dense trading dashboards) */

.page-user-stats .dashboard-main {
    width: 100%;
    max-width: min(1480px, 100vw);
    padding: calc(88px + 24px) clamp(10px, 1.6vw, 22px) clamp(118px, 12vw, 148px);
}

.page-user-stats .dash-dock-wrap {
    pointer-events: none;
}

.ustat-shell {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-bottom: 24px;
}

.ustat-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 4px;
}

.ustat-head h1 {
    margin: 0 0 4px;
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 0.95;
}

.ustat-head p {
    max-width: min(560px, 78vw);
    margin: 0;
    overflow: hidden;
    color: var(--text-secondary);
    font-size: 12px;
    font-variant-numeric: tabular-nums;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ustat-cta {
    flex-shrink: 0;
    min-height: 38px;
    padding: 9px 17px;
    border: 1px solid rgba(var(--accent-rgb), 0.24);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015)),
        rgba(var(--accent-rgb), 0.1);
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.ustat-cta:hover {
    background: rgba(var(--accent-rgb), 0.14);
    border-color: rgba(var(--accent-rgb), 0.42);
    transform: translateY(-1px);
}

.ustat-top-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
}

.ustat-top-grid .ustat-panel {
    min-height: auto;
}

.ustat-bottom-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 380px);
    gap: 14px;
    min-height: 420px;
}

.ustat-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 12px;
    background:
        radial-gradient(circle at 14% 0%, rgba(var(--accent-rgb), 0.08), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
        rgba(13, 16, 22, 0.86);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.07) inset,
        0 18px 52px rgba(0, 0, 0, 0.22);
}

[data-theme="light"] .ustat-panel {
    background:
        radial-gradient(circle at 14% 0%, rgba(var(--accent-rgb), 0.08), transparent 34%),
        #ffffff;
    border-color: rgba(15, 23, 42, 0.1);
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 8px 24px rgba(15, 23, 42, 0.06);
}

.ustat-panel__title {
    margin: 0;
    padding: 16px 18px 0;
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 750;
}

.ustat-balance {
    display: flex;
    min-height: 168px;
    padding: 0;
    flex-direction: column;
}

.ustat-balance__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px 0;
}

.ustat-balance__head .ustat-panel__title {
    padding: 0;
}

.ustat-balance__body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(150px, auto);
    align-items: end;
    gap: 28px;
    padding: 18px 22px 22px;
}

.ustat-balance__primary {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 16px;
}

.ustat-balance__total {
    font-size: clamp(34px, 4.4vw, 48px);
    font-weight: 850;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0;
    line-height: 1;
}

.ustat-balance__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 680px;
    gap: 18px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

[data-theme="light"] .ustat-balance__stats {
    background: transparent;
}

.ustat-balance__stats .ustat-kv {
    min-width: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
}

.ustat-balance__stats .ustat-kv strong {
    max-width: 100%;
    overflow: hidden;
    font-size: 16px;
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ustat-kv--period strong {
    font-size: 17px;
}

.ustat-balance__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.ustat-pnl-period {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 3px;
    border: 1px solid var(--border-subtle);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .ustat-pnl-period {
    background: rgba(15, 23, 42, 0.04);
}

.ustat-pnl-tab {
    min-width: 38px;
    padding: 6px 12px;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    font: inherit;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0;
}

.ustat-pnl-tab.is-active {
    background: rgba(var(--accent-rgb), 0.24);
    color: var(--text-primary);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

.ustat-share-btn {
    min-height: 40px;
    padding: 10px 18px;
    border: 1px solid rgba(var(--accent-rgb), 0.42);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015)),
        rgba(var(--accent-rgb), 0.14);
    color: var(--text-primary);
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.ustat-share-btn:hover {
    background: rgba(var(--accent-rgb), 0.2);
    border-color: rgba(var(--accent-rgb), 0.58);
    transform: translateY(-1px);
}

.ustat-balance__rows {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ustat-kv {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
}

.ustat-kv span {
    color: var(--text-secondary);
}

.ustat-kv strong {
    color: var(--text-primary);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.ustat-kv strong.is-up { color: var(--profit); }
.ustat-kv strong.is-down { color: var(--loss); }

.ustat-wallet-funding {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding-top: 0;
    border-top: none;
}

.ustat-wallet-funding__icon {
    display: inline-grid;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    place-items: center;
    margin-top: 1px;
    border: 1px solid rgba(var(--accent-rgb), 0.22);
    border-radius: 7px;
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--text-primary);
    font-size: 11px;
    line-height: 1;
}

.ustat-wallet-funding__meta {
    min-width: 0;
    flex: 1;
}

.ustat-wallet-funding__meta strong {
    display: block;
    font-size: 14px;
    font-weight: 750;
    font-variant-numeric: tabular-nums;
}

.ustat-wallet-funding__meta span {
    display: block;
    color: var(--text-secondary);
    font-size: 11px;
}

.ustat-wallet-funding__meta span::before {
    content: none;
}

.ustat-panel__title--inset {
    padding-bottom: 13px;
    border-bottom: 1px solid var(--border-subtle);
}

.ustat-history,
.ustat-activity {
    display: flex;
    min-height: 0;
    flex-direction: column;
}

.ustat-tabs {
    display: flex;
    min-height: 48px;
    align-items: center;
    gap: 0;
    padding: 0 14px;
    border-bottom: 1px solid var(--border-subtle);
}

.ustat-tab {
    min-height: 48px;
    margin-bottom: -1px;
    padding: 0 14px;
    border: none;
    border-bottom: 2px solid transparent;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
}

.ustat-tab.is-active {
    border-bottom-color: var(--profit);
    color: var(--text-primary);
}

.ustat-toolbar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--border-subtle);
}

.ustat-search {
    min-width: 140px;
    height: 34px;
    flex: 1;
    padding: 7px 10px;
    border: 1px solid var(--border-default);
    border-radius: 8px;
    outline: none;
    background: rgba(0, 0, 0, 0.2);
    color: var(--text-primary);
    font-size: 12px;
}

[data-theme="light"] .ustat-search {
    background: #f8fafc;
}

.ustat-search::placeholder {
    color: var(--text-accent-muted);
}

.ustat-table-wrap {
    min-height: 330px;
    flex: 1;
    overflow: auto;
}

.ustat-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.ustat-table thead th {
    position: sticky;
    z-index: 1;
    top: 0;
    padding: 10px 14px;
    border-bottom: 1px solid var(--border-subtle);
    background: rgba(12, 15, 22, 0.95);
    color: var(--text-accent-muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-align: left;
    text-transform: uppercase;
}

[data-theme="light"] .ustat-table thead th {
    background: #f8fafc;
}

.ustat-table tbody td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border-subtle);
    font-variant-numeric: tabular-nums;
    vertical-align: middle;
}

.ustat-table tbody tr:hover {
    background: rgba(var(--accent-rgb), 0.04);
}

.ustat-token {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 10px;
}

.ustat-token i {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border: 1px solid rgba(var(--accent-rgb), 0.25);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.45), rgba(var(--accent-rgb), 0.15));
}

.ustat-token img {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 50%;
    object-fit: cover;
}

.ustat-token div {
    min-width: 0;
}

.ustat-token b {
    display: block;
    overflow: hidden;
    font-size: 13px;
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ustat-token small {
    display: block;
    overflow: hidden;
    color: var(--text-secondary);
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ustat-token-link {
    color: inherit;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
}

.ustat-token-link:hover b,
.ustat-token-link:focus-visible b {
    color: var(--accent-light);
}

.ustat-token-link:focus-visible {
    outline: 2px solid rgba(var(--accent-rgb), 0.45);
    outline-offset: 4px;
}

.ustat-row-actions {
    width: 1%;
    text-align: right;
    white-space: nowrap;
}

.ustat-token-share {
    padding: 7px 10px;
    border: 1px solid rgba(var(--accent-rgb), 0.25);
    border-radius: 9px;
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--text-primary);
    font: 650 11px/1.2 inherit;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.ustat-token-share:hover {
    border-color: rgba(var(--accent-rgb), 0.45);
    background: rgba(var(--accent-rgb), 0.18);
}

.ustat-token-share:disabled {
    cursor: wait;
    opacity: 0.55;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.ustat-amt-up { color: var(--profit); font-weight: 700; }
.ustat-amt-down { color: var(--loss); font-weight: 700; }
.ustat-pnl-up { color: var(--profit); font-weight: 750; }
.ustat-pnl-down { color: var(--loss); font-weight: 750; }

.ustat-empty {
    padding: 64px 20px;
    color: var(--text-secondary);
    font-size: 13px;
    text-align: center;
}

.ustat-empty svg {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    opacity: 0.35;
}

.ustat-activity-list {
    min-height: 330px;
    flex: 1;
    overflow: auto;
    padding: 10px 0;
}

.ustat-act-row {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr) auto;
    align-items: start;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 12px;
}

.ustat-act-type {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ustat-act-type.buy { color: var(--profit); }
.ustat-act-type.sell { color: var(--loss); }

.ustat-act-token {
    min-width: 0;
    overflow: hidden;
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ustat-act-meta {
    color: var(--text-secondary);
    font-variant-numeric: tabular-nums;
    text-align: right;
}

.ustat-act-meta strong {
    display: block;
    color: var(--text-primary);
    font-weight: 700;
}

@media (max-width: 900px) {
    .page-user-stats .dashboard-main {
        max-width: 100vw;
    }

    .ustat-balance__body {
        grid-template-columns: 1fr;
        align-items: stretch;
        gap: 16px;
    }

    .ustat-balance__stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ustat-balance__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 820px) {
    .page-user-stats .dashboard-main {
        max-width: none;
        padding-right: 16px;
        padding-left: 16px;
    }

    .ustat-top-grid,
    .ustat-bottom-grid {
        grid-template-columns: 1fr;
    }

    .ustat-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .ustat-head p {
        max-width: 100%;
    }

    .ustat-balance__stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .page-user-stats .dashboard-main {
        padding-top: 104px;
    }

    .ustat-head {
        gap: 12px;
    }

    .ustat-cta,
    .ustat-share-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .ustat-balance__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .ustat-balance__body {
        padding: 14px;
    }

    .ustat-tabs {
        overflow-x: auto;
        padding: 0 10px;
    }

    .ustat-tab {
        flex: 0 0 auto;
        padding: 0 11px;
        font-size: 12px;
    }

    .ustat-table {
        min-width: 680px;
    }

    .ustat-activity-list {
        min-height: 260px;
    }
}

/* PnL share card modals */
.pnl-card-modal {
    position: fixed;
    z-index: 9999;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.pnl-card-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
}

.pnl-card-dialog {
    position: relative;
    width: 100%;
    max-width: 760px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: #0b0d12;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.pnl-card-close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 22px;
    opacity: 0.7;
}

.pnl-card-close:hover { opacity: 1; }

.pnl-card-preview { margin-top: 6px; }

.pnl-card-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 16px;
}

.pnl-card-btn {
    padding: 9px 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
}

.pnl-card-btn:hover { background: rgba(255, 255, 255, 0.14); }

.pnl-card-btn.is-primary {
    border-color: transparent;
    background: #4ade80;
    color: #051a09;
}

.pnl-card-btn.is-primary:hover { background: #6ee093; }

.pnl-handle-setup-modal { z-index: 16000; }

.pnl-handle-dialog {
    max-width: 400px;
    padding-bottom: 18px;
}

.pnl-handle-title {
    margin: 0 0 8px;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0;
}

.pnl-handle-hint {
    margin: 0 0 14px;
    color: rgba(230, 230, 234, 0.65);
    font-size: 13px;
    line-height: 1.45;
}

.pnl-handle-input {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 16px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #f4f4f8;
    font: inherit;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0;
}

.pnl-handle-input:focus {
    border-color: rgba(74, 222, 128, 0.45);
    outline: none;
    box-shadow: 0 0 0 1px rgba(74, 222, 128, 0.2);
}

.pnl-handle-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.ustat-toast {
    position: fixed;
    z-index: 20000;
    bottom: 24px;
    left: 50%;
    padding: 10px 16px;
    border: 1px solid var(--border-default);
    border-radius: 999px;
    background: rgba(12, 15, 22, 0.95);
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.ustat-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.ustat-toast.is-err {
    border-color: rgba(248, 113, 113, 0.4);
    color: #fca5a5;
}

.ustat-toast.is-pos {
    border-color: rgba(74, 222, 128, 0.4);
    color: #86efac;
}

/* Portfolio light mode: layered daylight glass instead of flat white panels. */
html[data-theme="light"] .page-user-stats .ustat-head p {
    color: #5d6f89;
}

html[data-theme="light"] .page-user-stats .ustat-panel {
    border-color: rgba(59, 130, 246, 0.16);
    background:
        radial-gradient(circle at 8% 0%, rgba(37, 99, 235, 0.14), transparent 34%),
        radial-gradient(circle at 94% 100%, rgba(16, 185, 129, 0.07), transparent 38%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(231, 240, 251, 0.86));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.98),
        0 22px 50px rgba(30, 64, 175, 0.1),
        0 3px 9px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
}

html[data-theme="light"] .page-user-stats .ustat-balance {
    border-color: rgba(37, 99, 235, 0.22);
    background:
        radial-gradient(ellipse 54% 150% at 4% 18%, rgba(59, 130, 246, 0.19), transparent 64%),
        radial-gradient(ellipse 32% 120% at 96% 86%, rgba(124, 58, 237, 0.09), transparent 62%),
        linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(224, 236, 251, 0.9));
}

html[data-theme="light"] .page-user-stats .ustat-balance__total {
    color: #102a56;
    text-shadow: 0 1px 0 #ffffff;
}

html[data-theme="light"] .page-user-stats .ustat-cta,
html[data-theme="light"] .page-user-stats .ustat-share-btn {
    color: #ffffff;
    border-color: rgba(30, 64, 175, 0.28);
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

html[data-theme="light"] .page-user-stats .ustat-cta:hover,
html[data-theme="light"] .page-user-stats .ustat-share-btn:hover {
    border-color: rgba(30, 64, 175, 0.38);
    background: linear-gradient(135deg, #1d4ed8, #4338ca);
    box-shadow: 0 13px 28px rgba(37, 99, 235, 0.3);
}

html[data-theme="light"] .page-user-stats .ustat-pnl-period {
    border-color: rgba(37, 99, 235, 0.14);
    background: rgba(219, 231, 247, 0.72);
}

html[data-theme="light"] .page-user-stats .ustat-pnl-tab.is-active {
    color: #17366b;
    background: linear-gradient(180deg, rgba(191, 219, 254, 0.92), rgba(165, 196, 244, 0.82));
    box-shadow: inset 0 1px 0 #ffffff, 0 2px 5px rgba(37, 99, 235, 0.13);
}

html[data-theme="light"] .page-user-stats .ustat-tabs,
html[data-theme="light"] .page-user-stats .ustat-toolbar,
html[data-theme="light"] .page-user-stats .ustat-panel__title--inset {
    border-color: rgba(59, 130, 246, 0.12);
}

html[data-theme="light"] .page-user-stats .ustat-search {
    color: #17233a;
    border-color: rgba(59, 130, 246, 0.18);
    background: rgba(244, 248, 254, 0.86);
    box-shadow: inset 0 1px 3px rgba(30, 64, 175, 0.045);
}

html[data-theme="light"] .page-user-stats .ustat-search:focus {
    border-color: rgba(37, 99, 235, 0.42);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

html[data-theme="light"] .page-user-stats .ustat-table thead th {
    color: #526783;
    border-color: rgba(59, 130, 246, 0.12);
    background: rgba(226, 237, 250, 0.92);
    backdrop-filter: blur(12px);
}

html[data-theme="light"] .page-user-stats .ustat-table tbody td,
html[data-theme="light"] .page-user-stats .ustat-act-row {
    border-color: rgba(59, 130, 246, 0.09);
}

html[data-theme="light"] .page-user-stats .ustat-table tbody tr:nth-child(even),
html[data-theme="light"] .page-user-stats .ustat-act-row:nth-child(even) {
    background: rgba(219, 234, 254, 0.22);
}

html[data-theme="light"] .page-user-stats .ustat-table tbody tr:hover,
html[data-theme="light"] .page-user-stats .ustat-act-row:hover {
    background: rgba(191, 219, 254, 0.34);
}

html[data-theme="light"] .page-user-stats .ustat-token-share {
    border-color: rgba(37, 99, 235, 0.22);
    background: rgba(219, 234, 254, 0.7);
    color: #17366b;
}

html[data-theme="light"] .page-user-stats .ustat-activity {
    background:
        radial-gradient(circle at 100% 0%, rgba(124, 58, 237, 0.08), transparent 35%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(235, 241, 250, 0.88));
}
