:root {
    --transition: 0.2s cubic-bezier(0.45, -0.65, 0.59, 1.75);
    --stransition: 0.3s cubic-bezier(0.45, -0.65, 0.59, 1.75);
    --sease: 0.3s ease-in-out;
    --mease: 0.3s ease;
    --ease: 0.2s ease-in-out;
    --fease: 0.15s ease-in-out;
    --vfease: 0.1s ease-in-out;
    --white: rgb(228, 218, 218);
    --base0D: #ff5f5d !important;
}

andypf-json-viewer span.refresh.icon {
    --base0D: #ff5f5d;
    color: red;
}

andypf-json-viewer .container {
    --base0D: #ff5f5d;
    color: red;
}

* {
    box-sizing: border-box;
    font-family: "Inter Tight", sans-serif;
    user-select: none;
    position: relative;
    font-display: swap;
}

@property --curanim {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 0%;
}

@font-face {
    font-family: "alticons";
    src: url("/public/fonts/alticons.eot");
    src: url("/public/fonts/alticons.eot?#iefix") format("embedded-opentype"),
        url("/public/fonts/alticons.woff") format("woff"),
        url("/public/fonts/alticons.ttf") format("truetype"),
        url("/public/fonts/alticons.svg#alticons") format("svg");
    font-weight: normal;
    font-style: normal;
}

[class*="alticon-"] {
    line-height: 1;
    display: inline-flex;
}

[class*="alticon-"]:before {
    display: inline-flex;
    font-family: "alticons";
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.alticon-cashapp:before {
    content: "\0041";
}

.alticon-robux:before {
    content: "\0042";
}

.drawer {
    background: black;
    max-width: 300px;
    height: 100%;
    pointer-events: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.drawer.opened {
    transform: translateX(0px);
}

.drawer-backdrop {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none !important;
    z-index: 100 !important;
    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.1s ease;
}

.drawer-backdrop:has(.drawer.opened) {
    opacity: 1;
    pointer-events: auto !important;
}

body {
    margin: 0;
    position: relative;
    background: #0e0e0e !important;
    background: linear-gradient(129deg, #161616 0%, #0a0a0a 100%) !important;
}

p {
    margin: 0px;
}

#root {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
}

#root .rewidth {
    max-width: 1200px;
}

.colored {
    color: #ff5f5d;
}

svg.loading circle {
    --r: 47px;
    --1deg: calc(2 * pi * var(--r) / 360);

    stroke-width: calc((50% - var(--r)) * 2);
    stroke: currentColor;
    animation: dash-anim 1400ms ease-in-out infinite,
        full-rotation-anim 2000ms linear infinite;
    transform-origin: 50% 50%;
}

@keyframes dash-anim {
    0% {
        stroke-dasharray: 0 0 calc(2 * var(--1deg)) calc(358 * var(--1deg));
    }
    50% {
        stroke-dasharray: 0 calc(35 * var(--1deg)) calc(290 * var(--1deg))
            calc(35 * var(--1deg));
    }
    100% {
        stroke-dasharray: 0 calc(358 * var(--1deg)) calc(2 * var(--1deg));
    }
}

@keyframes full-rotation-anim {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#root #contents {
    max-width: 1200px;
    width: 100%;
    height: max-content;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    position: relative;
    pointer-events: none;
}

#root #contents * {
    pointer-events: auto;
    z-index: 10;
}

body,
html {
    min-height: 100dvh;
    min-width: 100%;
}

body {
    overflow-y: scroll;
}

.evolve-header {
    overflow-x: hidden;
    min-height: 100px;
    position: sticky;
    width: auto;
    top: 0px;
    padding: 0px 16px;
    display: flex;
    justify-content: center;
    align-items: end;
    z-index: 15 !important;
}

.evolve-header-container {
    display: flex;
    align-items: center;
    gap: 4px;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 14px 18px;
    border-radius: 48px;
    z-index: 15 !important;
}

.evolve-header-container .navigation {
    display: flex;
    align-items: center;
    gap: 4px;
}

.evolve-header-container:has(.navigation) .nav-btn {
    display: none;
}

.text {
    font-size: 16px;
    color: white;
    font-family: Inter Tight;
}

.large-checkbox {
    min-height: 60px;
    min-width: 100%;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    transition: background 0.1s ease;
    cursor: pointer;
}

.large-checkbox:hover {
    background: rgba(255, 255, 255, 0.1);
}

.large-checkbox .checkbox-circle {
    border-radius: 50%;
    min-width: 16px;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2px;
    transition: border 0.1s ease;
}

.large-checkbox .checkbox-circle .checkbox-dot {
    background: #ff5f5d;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.2s ease, filter 0.2s ease;
}

.large-checkbox.selected .checkbox-circle .checkbox-dot {
    transform: scale(1);
}

.large-checkbox.selected .checkbox-circle {
    border: 1px solid #ff5f5d;
}

.colGroup {
    overflow: hidden;
}

.colGroup > * {
    min-height: 60px;
}

.colGroup > *:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.container {
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 60px;
    border-radius: 16px;
    display: grid;
}

.container[data-animated] {
    transition: height 0.3s ease;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container[data-animated] .container-calc {
    max-height: fit-content;
}

.container .container-calc {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.evolve-show-condition {
    animation: fade-in-contents 0.2s ease;
    display: unset;
}

.evolve-show-condition.hide {
    display: none !important;
}

.evolve-show-condition.show {
    display: unset;
}

.avoid-animation {
    animation: unset !important;
}

#loadingIndicator {
    z-index: 500;
}

#loadingIndicator .loadingBar {
    opacity: 0;
    width: 0%;
    background: rgba(255, 95, 93, 1);
    height: 3px;
    filter: drop-shadow(0px 0px 6px rgba(255, 48, 48, 1)) brightness(1.2);
}

#loadingIndicator .loadingBar.close {
    transition: opacity 0.3s ease;
    opacity: 0;
}

#loadingIndicator .loadingBar.open {
    transition: width 0.3s ease, opacity 0.3s ease;
    opacity: 1;
}

#loadingIndicator .loadingBar.no-anim {
    transition: unset !important;
}

.notice {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 48px;
    padding: 24px;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: start;
    align-items: center;
    min-height: 70px;
}

.notice i {
    color: white;
}

.notice.info {
    background: rgba(165, 193, 255, 0.1);
    color: rgba(165, 193, 255, 0.8);
}

.badge {
    background: rgba(143, 143, 143, 0.322);
    border: 0.5px solid rgba(255, 255, 255, 0.1);
    color: white;
    min-width: 28px;
    aspect-ratio: 1;
    font-size: 12px;
    border-radius: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.notice.info i {
    color: rgba(165, 193, 255);
}

.notice.info .badge {
    background: rgba(165, 193, 255, 0.1);
    border: 0.5px solid rgba(165, 193, 255, 0.1);
}

.c-title {
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    font-family: "Montserrat";
}

.c-main {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: start;
    text-align: start;
}

.c-desc {
    opacity: 0.6;
    color: white;
    font-size: 12px;
    font-family: "Montserrat";
}

input,
textarea {
    padding: 16px 14px;
    border-radius: 8px;
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    font-family: Inter Tight;
    background: rgba(60, 60, 60, 0.6);
    transition: background 0.1s ease-in-out, border 0.1s ease-in-out,
        box-shadow 0.1s ease-in-out;
    width: 100%;
    resize: none;
}

input::placeholder,
textarea::placeholder {
    opacity: 0.7;
}

input:hover,
input:focus,
textarea:hover,
textarea:focus {
    background: rgba(80, 80, 80, 0.6);
}

input:not(:placeholder-shown):invalid,
textarea:not(:placeholder-shown):invalid {
    background: rgba(255, 51, 51, 0.2);
    color: rgb(255, 113, 113);
}

input:not(:placeholder-shown):invalid::placeholder,
textarea:not(:placeholder-shown):invalid::placeholder {
    color: rgba(255, 113, 113);
}

.evolve-icon {
    cursor: pointer;
}

.shine-animation {
    --curanim: -25%;
    transition: --curanim 1s ease, transform 0.2s ease;
    z-index: 8;
    background: linear-gradient(
        50deg,
        rgba(255, 0, 0, 0) var(--curanim),
        rgba(255, 116, 116, 0) var(--curanim),
        rgba(255, 255, 255, 0.15) calc(var(--curanim) + 1%),
        rgba(255, 255, 255, 0.15) calc(var(--curanim) + 9%),
        rgba(255, 255, 255, 0) calc(var(--curanim) + 10%),
        rgba(0, 0, 0, 0) calc(var(--curanim) + 10%)
    );
}

.shine-animation:hover {
    --curanim: 100%;
    transform: scale(1.08);
}

.shine-animation ~ img {
    transition: transform 0.2s ease, filter 0.2s ease;
}

.shine-animation:hover ~ img {
    transform: scale(1.08);
    filter: brightness(1.3);
}

.evolve-icon.shiny {
    background-image: url("/cdn-cgi/image//public/icon.webp");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    min-width: 50px;
    aspect-ratio: 1;
    filter: drop-shadow(0px 0px 12px rgba(255, 48, 48, 1)) brightness(1.4);
}

.evolve-icon.small {
    min-width: 15px;
}

.evolve-main-title {
    color: #ff4b4b;
    font-weight: 800;
    font-size: 90px;
    mix-blend-mode: lighten;
    font-family: "Montserrat", sans-serif;
    font-style: italic;
    line-height: 100px;
    max-width: 600px;
    filter: brightness(1.2) drop-shadow(0px 0px 102px rgba(255, 48, 48, 0.8));
    text-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.evolve-alt-title {
    color: #ff4b4b;
    font-weight: 800;
    font-size: 44px;
    mix-blend-mode: lighten;
    font-family: "Montserrat", sans-serif;
    font-style: italic;
    line-height: 44px;
    max-width: 600px;
    text-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.evolve-alt-title > * {
    font-family: "Montserrat", sans-serif;
}

.evolve-icon-title {
    color: #ff4b4b;
    font-size: 120px;
}

.evolve-main-desc {
    font-size: 20px;
    color: white;
    text-align: center;
}

.first-contents {
    min-height: 60dvh;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10dvh 18px;
    justify-content: center;
    position: relative;
    pointer-events: none !important;
    text-align: center;
}

@media (min-width: 800px) {
    .drawer {
        display: none;
    }

    .drawer-backdrop {
        display: none;
    }
}

@media (max-width: 800px) {
    .evolve-main-title {
        font-size: 60px;
        line-height: 70px;
    }

    .evolve-header-container:has(.nav-btn) .navigation {
        display: none;
    }

    .evolve-header-container:has(.navigation) .nav-btn {
        display: unset;
    }

    .first-contents {
        padding: 24px 18px;
    }
}

@media (max-width: 600px) {
    .evolve-main-title {
        font-size: 50px;
        line-height: 60px;
    }
}

.evolve-main-img-asset1 {
    background-image: url("/cdn-cgi/image//public/asset1.webp");
    width: 450px;
    aspect-ratio: 1;
    background-size: contain;
    background-repeat: no-repeat;
    filter: hue-rotate(104deg) grayscale(0.6)
        drop-shadow(0px 0px 147px rgba(255, 0, 0, 0.15));
    position: absolute;
    z-index: -1;
    opacity: 0.25;
    transform: rotate(145deg);
}

.evolve-main-bg {
    background-image: url("/cdn-cgi/image//public/icon.webp");
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    min-width: 100dvw;
    min-height: 100dvh;
    aspect-ratio: 1;
    background-size: 500px;
    background-repeat: repeat;
    background-position: center;
    filter: blur(2px) hue-rotate(0deg) grayscale(0.7);
    mix-blend-mode: color-dodge;
    position: absolute;
    z-index: -1;
    opacity: 0.1;
}

.evolve-main-img-asset2 {
    background-image: url("/cdn-cgi/image//public/icon.webp");
    width: 450px;
    aspect-ratio: 1;
    background-size: contain;
    background-repeat: no-repeat;
    filter: drop-shadow(0px 0px 147px rgba(255, 0, 0, 0.2));
    position: absolute;
    z-index: -1;
    opacity: 0.25;
}

@keyframes fade-in-contents {
    0% {
        opacity: 0;
        filter: blur(4px);
    }
    100% {
        opacity: 1;
        filter: blur(0px);
    }
}

#animated-contents {
    animation: fade-in-contents 0.3s ease-in-out;
}

#animated-contents * {
    pointer-events: auto;
}

.evolve-footer {
    font-size: 14px;
    opacity: 0.6;
    color: rgb(150, 150, 150);
    margin-top: auto;
    text-align: center;
    margin-bottom: 16px;
    white-space: pre;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    padding: 8px 12px;
    backdrop-filter: blur(8px);
    border-radius: 12px;
}

.evolve-footer * {
    color: rgb(150, 150, 150);
}

button {
    cursor: pointer;
}

button.evolve {
    border-radius: 16px;
    border: none;
    padding: 16px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e8e8e8;
    backdrop-filter: blur(16px);
    font-size: 18px;
    cursor: pointer;
    transition: border-radius var(--transition), padding var(--transition),
        transform var(--transition), border var(--ease),
        background-color var(--ease), box-shadow var(--ease),
        font-weight var(--fease), color var(--fease), opacity 0.1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

button.evolve > .card-container {
    padding-right: 24px;
}

button.evolve.big {
    padding: 24px;
}

button.evolve.soft {
    transition: background 0.1s ease, box-shadow 0.1s ease, border 0.1s ease,
        padding 0.1s ease-in-out, border-radius 0.1s ease;
}

button.evolve i {
    opacity: 0;
    transform: scaleX(0);
    width: 0px;
    font-size: 12px;
    transition: width var(--ease), opacity var(--ease), transform var(--ease),
        margin var(--ease), width var(--ease);
    margin-top: 2px;
}

button.evolve:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

button.evolve:hover i {
    margin-left: 8px;
    transform: scaleX(1);
    width: 12px;
    opacity: 1;
}

button.evolve.icon-shown i,
button.evolve.save-btn.saved i {
    opacity: 1;
    width: unset;
    margin-left: 8px;
    transform: unset;
}

button.evolve.icon-btn i {
    margin-left: unset;
    opacity: 1;
    width: unset;
    transform: unset;
    font-size: 20px;
}

button.evolve.icon-btn {
    padding: 16px;
    min-height: 55px;
    aspect-ratio: 1;
}

button.evolve:active:not(.soft) {
    padding: 16px 32px;
    border-radius: 36px;
    font-weight: 700;
}

button.evolve.soft:hover {
    transform: scale(1);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.list-item {
    padding: 14px;
    min-height: 60px;
    display: flex;
    border-radius: 6px;
    transition: background 0.1s ease, box-shadow 0.1s ease, border 0.1s ease,
        padding 0.1s ease-in-out, border-radius 0.1s ease;
    cursor: pointer;
}

.list-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

button.evolve.soft.danger {
    background: rgba(255, 80, 80, 0.05);
    border: 1px solid rgba(255, 134, 134, 0.1);
    color: rgb(255, 109, 109);
}

button.evolve.soft.danger:hover {
    background: rgba(255, 80, 80, 0.1);
    border: 1px solid rgba(255, 134, 134, 0.2);
    color: rgb(255, 136, 136);
}

button.evolve.discord {
    background: hsl(234.935 calc(1 * 85.556%) 64.706% /1);
    border: 1px solid hsl(0 calc(1 * 0%) 100% /0.0784313725490196);
    color: white;
}

button.evolve.discord:hover {
    background: hsl(233.115 calc(1 * 49.194%) 51.373% /1);
}

button.evolve.discord:active {
    background: hsl(232 calc(1 * 47.511%) 43.333% /1);
}

button.evolve.attention {
    border-radius: 18px;
    border: none;
    padding: 26px 46px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e8e8e8;
    backdrop-filter: blur(16px);
    font-size: 18px;
    cursor: pointer;
    transition: border-radius var(--transition), padding var(--transition),
        transform var(--transition), border var(--ease),
        background-color var(--ease), box-shadow var(--ease),
        font-weight var(--fease), color var(--fease);
    display: flex;
    align-items: center;
}

button.evolve.attention i {
    opacity: 0;
    transform: scaleX(0);
    width: 0px;
    font-size: 12px;
    transition: width var(--ease), opacity var(--ease), transform var(--ease),
        margin var(--ease), width var(--ease);
}

button.evolve.attention:hover {
    transform: scale(1.14);
    background: rgba(255, 48, 48, 0.2);
    box-shadow: 0px 10px 15px -3px rgba(255, 48, 48, 0.3);
    border: 1px solid rgba(255, 48, 48, 0.4);
    color: #ffffff;
}

button.evolve.attention:hover i {
    margin-left: 8px;
    transform: scaleX(1);
    width: 12px;
    opacity: 1;
}

button.evolve.attention:active {
    padding: 26px 58px;
    border-radius: 36px;
    font-weight: 800;
}

.evolve-btn.nav-link {
    padding: 12px 16px;
    border-radius: 32px;
    color: white;
    text-decoration: none;
    transition: background var(--vfease);
}

.evolve-btn.nav-link.active {
    pointer-events: none !important;
}

.evolve-btn.icon-link {
    padding: 12px 12px;
    border-radius: 32px;
    min-width: 44px;
    color: white;
    text-decoration: none;
    background: transparent;
    border: unset;
    transition: background var(--vfease);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.evolve-btn.nav-link.active {
    background: rgba(255, 255, 255, 0.1);
}

.evolve-btn.nav-link:hover,
.evolve-btn.icon-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.plan-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease,
        border 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.015);
    border: 0.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    width: 260px;
    min-height: 275px;
    backdrop-filter: blur(6px);
    box-shadow: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.plan-card[data-highlight] {
    background: rgba(255, 0, 0, 0.05);
    border: 0.5px solid rgba(255, 0, 0, 0.2);
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.1);
}

.plan-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border: 0.5px solid rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.plan-cards:has(.plan-card:hover) > .plan-card:not(:hover) {
    filter: blur(4px);
    opacity: 0.6;
    transform: scale(0.96);
}

.plan-card .hover-label {
    opacity: 0;
    filter: blur(4px);
    color: white;
    position: absolute;
    top: 0px;
    right: 0px;
    padding-right: 32px;
    padding-top: 32px;
    padding-left: 12px;
    padding-bottom: 12px;
    min-height: 42px;
    border-bottom-left-radius: 16px;
    transition: opacity 0.3s ease, filter 0.3s ease;
    font-size: 14px;
    display: flex;
    gap: 8px;
    align-items: center;
    background: linear-gradient(
        25deg,
        transparent 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    overflow: hidden;
}

.plan-card .hover-label.rv {
    opacity: 0.5;
    filter: blur(0px);
}

.plan-card:hover .hover-label {
    opacity: 1;
    filter: blur(0px);
}

.plan-card:hover .hover-label.rv {
    opacity: 0;
    filter: blur(4px);
}

.plan-card .hover-label i {
    width: 0px;
    opacity: 0;
    transform: scaleX(0);
    transition: width 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.plan-card:hover .hover-label i {
    width: 12px;
    opacity: 1;
    transform: scaleX(1);
}

.plan-card[data-highlight]:hover {
    background: rgba(255, 0, 0, 0.1);
    border: 0.5px solid rgba(255, 0, 0, 0.3);
}

.disabled,
*:disabled {
    pointer-events: none !important;
    opacity: 0.4 !important;
}

.disabled *,
*:disabled * {
    pointer-events: none !important;
}

.choose-btn {
    transition: background 0.3s ease, color 0.3s ease;
}

.choose-btn:hover {
    background: #e74c3c !important;
    color: #fff !important;
}

.hover-card .icon-container {
    border-radius: 8px;
    background: rgba(255, 75, 75, 0.388);
    width: 32px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hover-card .icon-container i {
    color: #ff4b4b;
    font-size: 16px;
}

.hover-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px;
    border-radius: 18px;
    width: 280px;
    backdrop-filter: blur(6px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease,
        background 0.3s ease;
    cursor: default;
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 8px;
}

.hover-card .description {
    font-size: 16px;
    color: #ccc;
    font-family: "Quicksand", sans-serif;
    text-align: left;
}

.hover-card .title {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
}

.hover-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 26px rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

a {
    color: #ffa7a7;
    text-decoration: unset;
}

a:hover {
    text-decoration: underline;
}

.hover-card .title-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 0px;
}
.faq-collapse {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin: 12px 0;
    background: rgba(255, 255, 255, 0.03);
}

.collapsible .title-container {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
}

.collapsible .title-container .icon-container {
    margin-right: 8px;
}

.title {
    font-weight: 600;
    font-size: 16px;
}

.faq-content {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.faq-content .description {
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1.5;
}
.faq-collapse.open .faq-content {
    max-height: 500px;
}

.flex-visual {
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: stretch;
    width: 100%;
    color: white;
    flex-wrap: wrap;
}

.flex-visual > * {
    width: 100%;
    padding: 24px;
    min-height: 120px !important;
    justify-content: stretch;
    flex-grow: 1;
    flex-basis: content;
}

.card-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
    justify-content: space-between;
    text-align: left;
}

.card-container > .c-title {
    font-size: 28px;
    line-height: 28px;
}

.card-container > .c-desc {
    font-size: 14px;
}

.card-container > * {
    width: fit-content;
}

.tippy-box {
    transition: transform 0.3s cubic-bezier(0.2, 0.7, 0, 1.4),
        visibility 0.3s cubic-bezier(0.2, 0.7, 0, 1.4),
        opacity 0.3s cubic-bezier(0.2, 0.7, 0, 1.4),
        background 0.3s cubic-bezier(0.2, 0.7, 0, 1.4);
    border-radius: 20px;
}

.tippy-box .tippy-content {
    padding: 6px;
}

.shi-badge {
    text-transform: uppercase;
    padding: 4px 5px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 12px;
    line-height: 12px;
    height: fit-content;
}

.shi-badge[data-status="completed"] {
    background: rgba(25, 255, 121, 0.2);
    color: rgb(113, 255, 172);
}

.shi-badge[data-status="active"] {
    background: rgba(25, 255, 121, 0.2);
    color: rgb(113, 255, 172);
}

.shi-badge[data-status="action"] {
    background: rgba(255, 182, 48, 0.2);
    color: rgb(255, 211, 128);
}

.shi-badge[data-status="instruction"] {
    background: rgba(128, 236, 255, 0.2);
    color: rgb(128, 236, 255);
}

.shi-badge[data-status="failed"] {
    background: rgba(255, 48, 48, 0.2);
    color: rgb(255, 128, 128);
}

.shi-badge[data-status="canceled"] {
    background: rgba(255, 48, 48, 0.2);
    color: rgb(255, 128, 128);
}

.shi-badge[data-status="error"] {
    background: rgba(255, 48, 48, 0.2);
    color: rgb(255, 128, 128);
}

.shi-badge[data-status="expired"] {
    background: rgba(255, 48, 48, 0.2);
    color: rgb(255, 128, 128);
}

.shi-badge[data-status="declined"] {
    background: rgba(255, 48, 48, 0.2);
    color: rgb(255, 128, 128);
}

.sp-card .hover-content {
    opacity: 0;
    filter: blur(4px);
    transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
    transform: translateY(100%);
}

.sp-card .non-hover-content {
    opacity: 1;
    filter: blur(0px);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.sp-card:hover .hover-content {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0px);
}

.sp-card:hover .non-hover-content {
    opacity: 0;
    filter: blur(4px);
}

.config-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    aspect-ratio: 1;
    padding: 20px !important;
    overflow: hidden;
    position: relative;
}

.messages {
    color: white;
    display: flex;
    flex-direction: column;
}

.messages .message {
    padding: 16px;
    text-align: left;
}

.messages .message .username {
    font-weight: 800;
    font-family: Montserrat;
}

.messages .message .date {
    font-family: Montserrat;
    color: rgba(100, 100, 100);
    font-size: 12px;
    margin-bottom: 1px;
}

.messages .message .content {
    color: white;
}

.messages .message:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
