.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background-color: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    will-change: transform, clip-path;
}

.page-loader__inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.page-loader__svg-wrap {
    width: 100%;
    max-width: min(90vw, 420px);
    aspect-ratio: 808 / 379;
    will-change: transform, opacity;
}

.page-loader__svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}
