video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

section {
    display: block;
}

body {
    line-height: 1;
}

ul {
    list-style: none;
}

q {
    quotes: none;
}

q::after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    -webkit-text-size-adjust: none
}

mark {
    background-color: transparent;
    color: inherit
}

input::-moz-focus-inner {
    border: 0;
    padding: 0
}

input[type="text"],
input[type="email"],
select,
textarea {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

@keyframes clipboard-dialog-content-copied {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

dialog.clipboard {
    --color-background: #FFFFFF;
    --color-content-background: #F5F5F5;
    --color-content-border: #D3D3D3;
    --color-content-text: #000000;
    --color-text: #808080;
    --border-radius: 9px;
    align-items: center;
    background: transparent;
    border: 0;
    display: flex;
    height: 100%;
    justify-content: center;
    max-height: 100%;
    max-width: 100%;
    min-height: 0;
    min-width: 0;
    padding: 0;
    width: 100%;
}

@media (prefers-color-scheme: dark) {
    dialog.clipboard {
        --color-background: #000000;
        --color-content-background: #222222;
        --color-content-border: #444444;
        --color-content-text: #FFFFFF;
        --color-text: #666666;
    }
}

dialog.clipboard:not([open]) {
    display: none;
}

dialog.clipboard:focus {
    outline: none;
}

dialog.clipboard .wrapper {
    background: var(--color-background);
    border-radius: var(--border-radius);
    box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.35);
    cursor: pointer;
    font-family: '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
    font-size: 21pt;
    max-width: calc(100% - 4em);
    min-width: 20em;
    opacity: 0;
    padding: 1.5em;
    text-align: center;
    transform: translateY(0.75em);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

dialog.clipboard .wrapper::after {
    color: var(--color-text);
    content: 'Click to copy';
    display: block;
    font-size: 0.8em;
    margin-top: 1.5em;
}

body.touch dialog.clipboard .wrapper::after {
    content: 'Tap to copy';
}

dialog.clipboard .wrapper .content {
    background-color: var(--color-content-background);
    border-radius: calc(var(--border-radius) / 3);
    border: dashed 2px var(--color-content-border);
    color: var(--color-content-text);
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1.5em;
    position: relative;
    user-select: none;
    white-space: nowrap;
    width: 100%;
}

dialog.clipboard .wrapper .content::before {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNjRweCIgaGVpZ2h0PSI2NHB4IiB2aWV3Qm94PSIwIDAgNjQgNjQiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5saW5lIHtzdHJva2U6ICM4MDgwODA7c3Ryb2tlLXdpZHRoOiAycHg7c3Ryb2tlLWxpbmVjYXA6IHNxdWFyZTt9cmVjdCB7ZmlsbDogbm9uZTtzdHJva2U6ICM4MDgwODA7c3Ryb2tlLXdpZHRoOiAycHg7c3Ryb2tlLWxpbmVjYXA6IHNxdWFyZTt9PC9zdHlsZT48bGluZSB4MT0iMiIgeTE9IjIiIHgyPSI0OCIgeTI9IjIiIHZlY3Rvci1lZmZlY3Q9Im5vbi1zY2FsaW5nLXN0cm9rZSIgLz48bGluZSB4MT0iNDYiIHkxPSIyIiB4Mj0iNDgiIHkyPSIxNiIgdmVjdG9yLWVmZmVjdD0ibm9uLXNjYWxpbmctc3Ryb2tlIiAvPjxsaW5lIHgxPSIyIiB5MT0iMiIgeDI9IjIiIHkyPSI0OCIgdmVjdG9yLWVmZmVjdD0ibm9uLXNjYWxpbmctc3Ryb2tlIiAvPjxsaW5lIHgxPSIyIiB5MT0iNDgiIHgyPSIxNiIgeTI9IjQ4IiB2ZWN0b3ItZWZmZWN0PSJub24tc2NhbGluZy1zdHJva2UiIC8+PHJlY3QgeD0iMTYiIHk9IjE2IiB3aWR0aD0iNDYiIGhlaWdodD0iNDYiIHZlY3Rvci1lZmZlY3Q9Im5vbi1zY2FsaW5nLXN0cm9rZSIgLz48L3N2Zz4=');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    color: var(--color-content-border);
    content: '\00a0';
    display: inline-block;
    margin-left: -0.5em;
    margin-right: 0.5em;
    opacity: 0.35;
    width: 1.25em;
}

dialog.clipboard .wrapper .content::after {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNjRweCIgaGVpZ2h0PSI2NHB4IiB2aWV3Qm94PSIwIDAgNjQgNjQiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5saW5lIHtzdHJva2U6ICM4MDgwODA7c3Ryb2tlLXdpZHRoOiA1cHg7c3Ryb2tlLWxpbmVjYXA6IHNxdWFyZTt9PC9zdHlsZT48bGluZSB4MT0iNyIgeTE9IjM2IiB4Mj0iMjYiIHkyPSI1NSIgdmVjdG9yLWVmZmVjdD0ibm9uLXNjYWxpbmctc3Ryb2tlIiAvPjxsaW5lIHgxPSI1OSIgeTE9IjEzIiB4Mj0iMjYiIHkyPSI1NSIgdmVjdG9yLWVmZmVjdD0ibm9uLXNjYWxpbmctc3Ryb2tlIiAvPjwvc3ZnPg==');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1.25em;
    color: var(--color-content-border);
    content: '';
    font-size: 2em;
    height: 2em;
    left: calc(50% - 1em);
    line-height: 2em;
    opacity: 0;
    position: absolute;
    top: calc(50% - 1em);
    width: 2em;
}

dialog.clipboard .wrapper.copied::after {
    content: 'Copied!' !important;
}

dialog.clipboard .wrapper.copied .content {
    animation: clipboard-dialog-content-copied 0.125s ease;
    color: transparent;
}

dialog.clipboard .wrapper.copied .content::before {
    display: none;
}

dialog.clipboard .wrapper.copied .content::after {
    animation: clipboard-dialog-content-copied 0.125s ease;
    opacity: 0.35;
}

dialog.clipboard::backdrop {
    background-color: rgba(10, 10, 10, 0.85);
    opacity: 0;
    transition: opacity 0.25s ease;
}

dialog.clipboard .close {
    -webkit-tap-highlight-color: transparent;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNjRweCIgaGVpZ2h0PSI2NHB4IiB2aWV3Qm94PSIwIDAgNjQgNjQiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5saW5lIHtzdHJva2U6ICNmZmZmZmY7c3Ryb2tlLXdpZHRoOiAxLjVweDt9PC9zdHlsZT48bGluZSB4MT0iMjAiIHkxPSIyMCIgeDI9IjQ0IiB5Mj0iNDQiIHZlY3Rvci1lZmZlY3Q9Im5vbi1zY2FsaW5nLXN0cm9rZSIgLz48bGluZSB4MT0iMjAiIHkxPSI0NCIgeDI9IjQ0IiB5Mj0iMjAiIHZlY3Rvci1lZmZlY3Q9Im5vbi1zY2FsaW5nLXN0cm9rZSIgLz48L3N2Zz4=');
    background-position: top 1rem right 1rem;
    background-repeat: no-repeat;
    background-size: 3rem;
    cursor: pointer;
    display: block;
    height: 6rem;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity 0.25s ease, transform 0.5s ease;
    width: 6rem;
}

dialog.clipboard.active .wrapper {
    opacity: 1;
    transform: none;
}

dialog.clipboard.active .close {
    opacity: 0.25;
}

dialog.clipboard.active .close:hover {
    opacity: 1;
}

dialog.clipboard.active::backdrop {
    opacity: 1;
    transition-delay: 0s;
}

@media (max-width: 736px) {
    dialog.clipboard .wrapper {
        border-radius: 0;
        font-size: 18pt;
        max-width: 100%;
        min-width: 0;
        width: 100%;
    }

    dialog.clipboard .wrapper .content {
        padding: 1.5em 1.25em;
    }

    dialog.clipboard .close {
        background-position: top 0.5rem right 0.5rem;
    }
}

body {
    line-height: 1.0;
    min-height: var(--viewport-height);
    min-width: 320px;
    overflow-x: hidden;
    word-wrap: break-word;
    background-color: #000000;
}

body::after {
    background-color: #454545;
    content: '';
    display: block;
    pointer-events: none;
    position: fixed;
    transform: scale(1);
    z-index: 1;
    height: 100%;
    left: 0;
    opacity: 0;
    top: 0;
    transition: opacity 1s ease-in-out 0s, visibility 1s 0s;
    visibility: hidden;
    width: 100%;
}

body.is-loading::after {
    opacity: 1;
    visibility: visible;
}

:root {
    --background-height: 100vh;
    --site-language-alignment: left;
    --site-language-direction: ltr;
    --site-language-flex-alignment: flex-start;
    --site-language-indent-left: 1;
    --site-language-indent-right: 0;
    --site-language-margin-left: 0;
    --site-language-margin-right: auto;
    --viewport-height: 100vh;
}

html {
    font-size: 18pt;
}

u {
    text-decoration: underline;
}

strong {
    color: inherit;
    font-weight: bolder;
}

em {
    font-style: italic;
}

code {
    background-color: rgba(144, 144, 144, 0.25);
    border-radius: 0.25em;
    font-family: 'Lucida Console', 'Courier New', monospace;
    font-size: 0.9em;
    font-weight: normal;
    letter-spacing: 0;
    margin: 0 0.25em;
    padding: 0.25em 0.5em;
    text-indent: 0;
}

mark {
    background-color: rgba(144, 144, 144, 0.25);
}

spoiler-text {
    -webkit-text-stroke: 0;
    background-color: rgba(32, 32, 32, 0.75);
    text-shadow: none;
    text-stroke: 0;
    color: transparent;
    cursor: pointer;
    transition: color 0.1s ease-in-out;
}

spoiler-text.active {
    color: #FFFFFF;
    cursor: text;
}

s {
    text-decoration: line-through;
}

sub {
    font-size: smaller;
    vertical-align: sub;
}

sup {
    font-size: smaller;
    vertical-align: super;
}

a {
    color: inherit;
    text-decoration: underline;
    transition: color 0.25s ease;
}

a[onclick]:not([href]) {
    cursor: pointer;
}

unloaded-script {
    display: none;
}

.site-wrapper {
    -webkit-overflow-scrolling: touch;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: var(--viewport-height);
    overflow: hidden;
    position: relative;
    z-index: 2;
    padding: 1.4375rem 1.4375rem 1.4375rem 1.4375rem;
}

.site-main {
    --alignment: var(--site-language-alignment);
    --flex-alignment: var(--site-language-flex-alignment);
    --indent-left: var(--site-language-indent-left);
    --indent-right: var(--site-language-indent-right);
    --margin-left: var(--site-language-margin-left);
    --margin-right: var(--site-language-margin-right);
    --border-radius-tl: 2.125rem;
    --border-radius-tr: 2.125rem;
    --border-radius-br: 2.125rem;
    --border-radius-bl: 2.125rem;
    align-items: center;
    display: flex;
    flex-grow: 0;
    flex-shrink: 0;
    justify-content: center;
    max-width: 100%;
    position: relative;
    text-align: var(--alignment);
    z-index: 1;
    background-image: linear-gradient(45deg, #000000 0%, #89C6E0 100%);
    background-size: cover, cover;
    background-position: center, 0% 0%;
    background-repeat: no-repeat, repeat;
    box-shadow: 0rem 1.75rem 2rem 0rem #98ACB5;
    border-radius: var(--border-radius-tl) var(--border-radius-tr) var(--border-radius-br) var(--border-radius-bl);
    border-top: solid 1px #99B5DE;
    border-right: solid 1px #99B5DE;
    border-bottom: solid 1px #99B5DE;
    border-left: solid 1px #99B5DE;
    transition: opacity 0.5s ease-in-out 0s;
    transition: transform 0.1s ease-out;
    will-change: transform;
    transform-style: preserve-3d;
    perspective: 1000px;
    background: rgba(107, 107, 107, 0.2) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: solid 1px rgba(255, 255, 255, 0.3) !important;
}

.site-main>.inner {
    --border-radius-tl: calc(2.125rem - 1px);
    --border-radius-tr: calc(2.125rem - 1px);
    --border-radius-br: calc(2.125rem - 1px);
    --border-radius-bl: calc(2.125rem - 1px);
    --padding-horizontal: 2.875rem;
    --padding-vertical: 2.25rem;
    --spacing: 1.625rem;
    --width: 45rem;
    border-radius: var(--border-radius-tl) var(--border-radius-tr) var(--border-radius-br) var(--border-radius-bl);
    max-width: 100%;
    position: relative;
    width: var(--width);
    z-index: 1;
    padding: var(--padding-vertical) var(--padding-horizontal);
    background: transparent !important;
}

.site-main>.inner>* {
    margin-top: var(--spacing);
    margin-bottom: var(--spacing);
}

.site-main>.inner> :first-child {
    margin-top: 0 !important;
}

.site-main>.inner> :last-child {
    margin-bottom: 0 !important;
}

.site-main>.inner>.full {
    margin-left: calc(var(--padding-horizontal) * -1);
    max-width: calc(100% + calc(var(--padding-horizontal) * 2) + 0.4725px);
    width: calc(100% + calc(var(--padding-horizontal) * 2) + 0.4725px);
}

.site-main>.inner>.full:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
    margin-top: calc(var(--padding-vertical) * -1) !important;
}

.site-main>.inner>.full:last-child {
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
    margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.site-main>.inner>.full.screen {
    border-radius: 0 !important;
    max-width: 100vw;
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    right: auto;
}

body.is-loading .site-main {
    opacity: 0;
}

body #loader {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    display: block;
    height: 4.5rem;
    left: calc(50% - 2.25rem);
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: calc(50% - 2.25rem);
    transition: opacity 1s ease, visibility 1s;
    visibility: hidden;
    width: 4.5rem;
    z-index: 100000;
}

body.with-loader #loader {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUgeyBmaWxsOiB0cmFuc3BhcmVudDsgc3Ryb2tlOiAjRkY3MjRGNDI7IHN0cm9rZS13aWR0aDogMnB4OyB9PC9zdHlsZT48ZGVmcz48Y2xpcFBhdGggaWQ9ImNvcm5lciI+PHBvbHlnb24gcG9pbnRzPSIwLDAgNDgsMCA0OCw0OCA5Niw0OCA5Niw5NiAwLDk2IiAvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjb3JuZXIpIj48Y2lyY2xlIGN4PSI0OCIgY3k9IjQ4IiByPSIzMiIgdmVjdG9yLWVmZmVjdD0ibm9uLXNjYWxpbmctc3Ryb2tlIiAvPjxhbmltYXRlVHJhbnNmb3JtIGF0dHJpYnV0ZU5hbWU9InRyYW5zZm9ybSIgYXR0cmlidXRlVHlwZT0iWE1MIiB0eXBlPSJyb3RhdGUiIGZyb209IjAgNDggNDgiIHRvPSIzNjAgNDggNDgiIGR1cj0iMXMiIHJlcGVhdER1cj0iaW5kZWZpbml0ZSIgLz48L2c+PC9zdmc+');
    opacity: 1;
    transform: scale(1.0);
    visibility: visible;
}

body.is-loading {
    pointer-events: none;
}

body.is-playing.with-loader #loader {
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.25s ease, transform 0.75s ease, visibility 0.25s;
    visibility: hidden;
}

body.is-instant .site-main,
body.is-instant .site-main>.inner>*,
body.is-instant .site-main>.inner>section>* {
    transition: none !important;
}

body.is-instant::after {
    display: none !important;
    transition: none !important;
}

.image-component {
    display: block;
    line-height: 0;
    max-width: 100%;
    position: relative;
}

.image-component>.frame {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    vertical-align: top;
    width: 100%;
}

.image-component>.frame>img {
    border-radius: 0 !important;
    max-width: 100%;
    vertical-align: top;
    width: inherit;
}

.image-component.full>.frame {
    display: block;
}

.image-component.full:first-child>.frame {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.image-component.full:last-child>.frame {
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
}

.image-component.instance-2>.frame {
    width: 97rem;
    border-radius: 100%;
    border-color: #84A7D9;
    border-style: solid;
    border-width: 1px;
    box-shadow: 0rem 1.25rem 1.75rem 0rem #708FCC;
    transition: none;
}

.image-component.instance-2>.frame>img {
    transition: none;
}

.text-component {
    direction: var(--site-language-direction);
    position: relative;
}

.text-component span.p {
    display: block;
    position: relative;
}

.text-component span[style],
.text-component strong,
.text-component a,
.text-component code,
.text-component mark,
.text-component spoiler-text {
    -webkit-text-fill-color: currentcolor;
}

.text-component.instance-1:not(:first-child) {
    margin-top: 3rem !important;
}

.text-component.instance-1:not(:last-child) {
    margin-bottom: 3rem !important;
}

.text-component.instance-1 {
    color: #ffffff;
    font-family: 'Press Start 2P', monospace;
    letter-spacing: 0.075rem;
    width: calc(100% + 0.075rem);
    font-size: 2em;
    line-height: 1.5;
    font-weight: 400;
    background-image: linear-gradient(45deg, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-component.instance-1 mark {
    background-color: transparent;
}

.text-component.instance-1 a {
    color: #FF724F;
    text-decoration: underline;
}

.text-component.instance-1 a:hover {
    text-decoration: none;
}

.text-component.instance-1 span.p:nth-child(n + 2) {
    margin-top: 1rem;
    -webkit-text-fill-color: currentcolor;
}

.text-component.instance-1 span.p {
    background-image: linear-gradient(45deg, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent !important;
}

.text-component.instance-2 {
    text-align: left;
    color: #ffffff;
    font-family: 'Sora', sans-serif;
    letter-spacing: 0.075rem;
    width: calc(100% + 0.075rem);
    font-size: 0.75em;
    line-height: 1.375;
    font-weight: 300;
    paint-order: stroke fill;
}

.text-component.instance-2 mark {
    background-color: transparent;
}

.text-component.instance-2 a {
    color: #FF724F;
    text-decoration: underline;
}

.text-component.instance-2 a:hover {
    text-decoration: none;
}

.text-component.instance-2 span.p:nth-child(n + 2) {
    margin-top: 1rem;
    -webkit-text-fill-color: currentcolor;
}

.text-component.instance-2 span.p {
    background-image: linear-gradient(45deg, #ffffff);
    -webkit-background-clip: text;
}

.container-component {
    position: relative;
}

.container-component>.wrapper {
    vertical-align: top;
    position: relative;
    max-width: 100%;
    border-radius: inherit;
}

.container-component>.wrapper>.inner {
    vertical-align: top;
    position: relative;
    max-width: 100%;
    border-radius: inherit;
    text-align: var(--alignment);
}

.container-component.full:first-child>.wrapper {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.container-component.full:last-child>.wrapper {
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
}

.container-component.full:first-child>.wrapper>.inner {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.container-component.full:last-child>.wrapper>.inner {
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
}

.container-component.instance-1 {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    background-color: transparent;
}

.container-component.instance-1:not(:first-child) {
    margin-top: 3rem !important;
}

.container-component.instance-1:not(:last-child) {
    margin-bottom: 3rem !important;
}

.container-component.instance-1>.wrapper>.inner {
    --gutters: 1.5rem;
    --padding-horizontal: 0rem;
    --padding-vertical: 0rem;
    padding: var(--padding-vertical) var(--padding-horizontal);
}

.container-component.instance-1>.wrapper {
    max-width: var(--width);
    width: 100%;
}

.container-component.instance-1.default>.wrapper>.inner>* {
    margin-bottom: var(--spacing);
    margin-top: var(--spacing);
}

.container-component.instance-1.default>.wrapper>.inner>*:first-child {
    margin-top: 0 !important;
}

.container-component.instance-1.default>.wrapper>.inner>*:last-child {
    margin-bottom: 0 !important;
}

.container-component.instance-1.columns>.wrapper>.inner {
    flex-wrap: wrap;
    display: flex;
    align-items: flex-end;
}

.container-component.instance-1.columns>.wrapper>.inner>* {
    flex-grow: 0;
    flex-shrink: 0;
    max-width: 100%;
    text-align: var(--alignment);
    padding: 0 0 0 var(--gutters);
}

.container-component.instance-1.columns>.wrapper>.inner>*>* {
    margin-bottom: var(--spacing);
    margin-top: var(--spacing);
}

.container-component.instance-1.columns>.wrapper>.inner>*>*:first-child {
    margin-top: 0 !important;
}

.container-component.instance-1.columns>.wrapper>.inner>*>*:last-child {
    margin-bottom: 0 !important;
}

.container-component.instance-1.columns>.wrapper>.inner>*:first-child {
    margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-1.default>.wrapper>.inner>.full {
    margin-left: calc(var(--padding-horizontal) * -1);
    max-width: none !important;
    width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-1.default>.wrapper>.inner>.full:first-child {
    margin-top: calc(var(--padding-vertical) * -1) !important;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.container-component.instance-1.default>.wrapper>.inner>.full:last-child {
    margin-bottom: calc(var(--padding-vertical) * -1) !important;
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
}

.container-component.instance-1.columns>.wrapper>.inner>div>.full {
    margin-left: calc(var(--gutters) * -0.5);
    max-width: none !important;
    width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-1.columns>.wrapper>.inner>div:first-child>.full {
    margin-left: calc(var(--padding-horizontal) * -1);
    width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-1.columns>.wrapper>.inner>div:last-child>.full {
    width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-1.columns>.wrapper>.inner>div>.full:first-child {
    margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-1.columns>.wrapper>.inner>div>.full:last-child {
    margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-1.columns>.wrapper>.inner>div:first-child,
.container-component.instance-1.columns>.wrapper>.inner>div:first-child>.full:last-child {
    border-bottom-left-radius: inherit;
}

.container-component.instance-1.columns>.wrapper>.inner>div:last-child,
.container-component.instance-1.columns>.wrapper>.inner>div:last-child>.full:last-child {
    border-bottom-right-radius: inherit;
}

.container-component.instance-1.columns>.wrapper>.inner>.full {
    align-self: stretch;
}

.container-component.instance-1.columns>.wrapper>.inner>.full:first-child {
    border-bottom-left-radius: inherit;
    border-top-left-radius: inherit;
}

.container-component.instance-1.columns>.wrapper>.inner>.full:last-child {
    border-bottom-right-radius: inherit;
    border-top-right-radius: inherit;
}

.container-component.instance-1.columns>.wrapper>.inner>.full>.full:first-child:last-child {
    border-radius: inherit;
    height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-1.columns>.wrapper>.inner>.full>.full:first-child:last-child>* {
    border-radius: inherit;
    height: 100%;
    position: absolute;
    width: 100%;
}

.container-component.instance-1>.wrapper>.inner> :nth-child(1) {
    width: calc(65% + (var(--gutters) / 2));
}

.container-component.instance-1>.wrapper>.inner> :nth-child(2) {
    width: calc(35% + (var(--gutters) / 2));
}

.buttons-component {
    cursor: default;
    display: flex;
    justify-content: var(--flex-alignment);
    letter-spacing: 0;
    padding: 0;
}

.buttons-component>li {
    max-width: 100%;
    text-align: var(--alignment);
}

.buttons-component>li>a {
    align-items: center;
    justify-content: center;
    max-width: 100%;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    white-space: nowrap;
}

.buttons-component.instance-1 {
    gap: 1.25rem;
    flex-direction: row;
    flex-wrap: wrap;
}

.buttons-component.instance-1:not(:first-child) {
    margin-top: 3rem !important;
}

.buttons-component.instance-1:not(:last-child) {
    margin-bottom: 3rem !important;
}

.buttons-component.instance-1>li>a {
    display: inline-flex;
    width: auto;
    height: 3rem;
    line-height: 3rem;
    padding: 0 1.5rem;
    vertical-align: middle;
    font-family: 'Inter', sans-serif;
    font-size: 1em;
    font-weight: 400;
    border-radius: 3rem;
    flex-direction: row-reverse;
    justify-content: flex-end;
    background-color: #FFFFFF;
    color: #1A4757;
    transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.instance-1>li>a>svg {
    display: block;
    fill: #FF724F;
    flex-grow: 0;
    flex-shrink: 0;
    height: 100%;
    min-width: 16px;
    pointer-events: none;
    width: 1.375em;
    margin-left: 1.125rem;
    margin-right: calc(-0.125em + 0rem);
    transition: fill 0.25s ease;
}

.buttons-component.instance-1>li>a>.label {
    direction: var(--site-language-direction);
    overflow: hidden;
    flex-grow: 1;
    flex-shrink: 1;
    text-align: left;
    width: 100%;
}

.buttons-component.instance-1>li>a:hover {
    transform: scale(1.0425);
}

/* Base styles for all buttons - transparent with blur */
.buttons-component.instance-1>li>a {
    background-color: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease !important;
}

.buttons-component.instance-1>li>a .label {
    color: #FFFFFF;
}

/* Glow effect on hover */
.buttons-component.instance-1>li>a:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5), 0 0 5px rgba(255, 255, 255, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

/* SVG icon color - white with glow */
.buttons-component.instance-1>li>a>svg {
    fill: #FFFFFF !important;
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.5));
    transition: filter 0.3s ease;
}

/* Individual button styles with transparency */
.buttons-component.instance-1>li>a.n01 {
    background-color: rgba(255, 255, 255, 0.5) !important;
}

.buttons-component.instance-1>li>a.n02 {
    background-color: rgba(255, 255, 255, 0.5) !important;
}

.buttons-component.instance-1>li>a.n03 {
    background-color: rgba(255, 255, 255, 0.5) !important;
}

.buttons-component.instance-1>li>a.n04 {
    background-color: rgba(255, 255, 255, 0.5) !important;
}

/* Hover effects for individual buttons with stronger glow */
.buttons-component.instance-1>li>a.n02:hover,
.buttons-component.instance-1>li>a.n03:hover,
.buttons-component.instance-1>li>a.n04:hover,
.buttons-component.instance-1>li>a.n01:hover {
    background-color: rgba(255, 255, 255, 0.7) !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6), 0 0 8px rgba(255, 255, 255, 0.4) !important;
}

/* Add a subtle pulse animation to the glow on hover */
@keyframes glowPulse {
    0% {
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    }

    100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    }
}

.buttons-component.instance-1>li>a:hover {
    animation: glowPulse 0.5s ease infinite alternate;
}

@media (max-width: 1920px) {}

@media (max-width: 1680px) {
    html {
        font-size: 13pt;
    }
}

@media (max-width: 1280px) {
    html {
        font-size: 13pt;
    }
}

@media (max-width: 1024px) {}

@media (max-width: 980px) {
    html {
        font-size: 11pt;
    }
}

@media (max-width: 736px) {
    html {
        font-size: 12pt;
    }

    .site-main {
        --alignment: center;
        --flex-alignment: center;
        --indent-left: 1;
        --indent-right: 1;
        --margin-left: auto;
        --margin-right: auto;
    }

    .site-main>.inner {
        --padding-horizontal: 2.625rem;
        --padding-vertical: 3.75rem;
        --spacing: 1.625rem;
    }

    .image-component.instance-2>.frame {
        width: 9rem;
    }

    .text-component.instance-1:not(:first-child) {
        margin-top: 2.25rem !important;
    }

    .text-component.instance-1:not(:last-child) {
        margin-bottom: 2.25rem !important;
    }

    .text-component.instance-1 {
        letter-spacing: 0.065625rem;
        width: calc(100% + 0.065625rem);
        font-size: 2em;
        line-height: 1.5;
    }

    .text-component.instance-2 {
        letter-spacing: 0.065625rem;
        width: calc(100% + 0.065625rem);
        font-size: 0.75em;
        line-height: 1.375;
    }

    .container-component.instance-1:not(:first-child) {
        margin-top: 3rem !important;
    }

    .container-component.instance-1:not(:last-child) {
        margin-bottom: 3rem !important;
    }

    .container-component.instance-1>.wrapper>.inner {
        --gutters: 1.5rem;
        --padding-horizontal: 0rem;
        --padding-vertical: 0rem;
    }

    .container-component.instance-1.columns>.wrapper>.inner {
        flex-direction: column !important;
        flex-wrap: nowrap !important;
    }

    .container-component.instance-1.columns>.wrapper>.inner>span {
        height: 0;
        margin-top: calc(var(--gutters) * -1);
        pointer-events: none;
        visibility: hidden;
    }

    .container-component.instance-1.columns>.wrapper>.inner>*:first-child {
        margin-left: 0 !important;
        padding-top: 0 !important;
    }

    .container-component.instance-1.columns>.wrapper>.inner>* {
        padding: calc(var(--gutters) * 0.5) 0 !important;
    }

    .container-component.instance-1.columns>.wrapper>.inner>*:last-child {
        padding-bottom: 0 !important;
    }

    .container-component.instance-1.columns>.wrapper>.inner>div>.full {
        margin-left: calc(var(--padding-horizontal) * -1);
        width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
    }

    .container-component.instance-1.columns>.wrapper>.inner>div:first-of-type>.full {
        margin-left: calc(var(--padding-horizontal) * -1);
        width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
    }

    .container-component.instance-1.columns>.wrapper>.inner>div:last-of-type>.full {
        margin-left: calc(var(--padding-horizontal) * -1);
        width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
    }

    .container-component.instance-1.columns>.wrapper>.inner>div>.full:first-child {
        margin-top: calc(var(--gutters) * -0.5) !important;
    }

    .container-component.instance-1.columns>.wrapper>.inner>div>.full:last-child {
        margin-bottom: calc(var(--gutters) * -0.5) !important;
    }

    .container-component.instance-1.columns>.wrapper>.inner>div:first-of-type>.full:first-child {
        margin-top: calc(var(--padding-vertical) * -1) !important;
    }

    .container-component.instance-1.columns>.wrapper>.inner>div:last-of-type>.full:last-child {
        margin-bottom: calc(var(--padding-vertical) * -1) !important;
    }

    .container-component.instance-1.columns>.wrapper>.inner>div:first-of-type,
    .container-component.instance-1.columns>.wrapper>.inner>div:first-of-type>.full:first-child {
        border-top-left-radius: inherit;
        border-top-right-radius: inherit;
    }

    .container-component.instance-1.columns>.wrapper>.inner>div:last-of-type,
    .container-component.instance-1.columns>.wrapper>.inner>div:last-of-type>.full:last-child {
        border-bottom-left-radius: inherit;
        border-bottom-right-radius: inherit;
    }

    .container-component.instance-1.columns>.wrapper>.inner>div:first-of-type,
    .container-component.instance-1.columns>.wrapper>.inner>div:first-of-type>.full:last-child {
        border-bottom-left-radius: 0 !important;
    }

    .container-component.instance-1.columns>.wrapper>.inner>div:last-of-type,
    .container-component.instance-1.columns>.wrapper>.inner>div:last-of-type>.full:first-child {
        border-top-right-radius: 0 !important;
    }

    .container-component.instance-1.columns>.wrapper>.inner>.full>.full:first-child:last-child {
        height: auto;
    }

    .container-component.instance-1.columns>.wrapper>.inner>.full>.full:first-child:last-child>* {
        height: auto;
        position: relative;
        width: auto;
    }

    .container-component.instance-1>.wrapper>.inner> :nth-child(1) {
        min-height: 100% !important;
        width: 100% !important;
    }

    .container-component.instance-1>.wrapper>.inner> :nth-child(2) {
        min-height: 100% !important;
        width: 100% !important;
    }

    .buttons-component.instance-1 {
        gap: 1.25rem;
    }

    .buttons-component.instance-1:not(:first-child) {
        margin-top: 3rem !important;
    }

    .buttons-component.instance-1:not(:last-child) {
        margin-bottom: 3rem !important;
    }

    .buttons-component.instance-1>li>a {
        letter-spacing: 0rem;
        font-size: 1em;
    }

    .buttons-component.instance-1>li>a>svg {
        width: 1.375em;
    }
}

@media (max-width: 480px) {
    .site-main>.inner {
        --spacing: 1.421875rem;
    }

    .buttons-component.instance-1 {
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .buttons-component.instance-1>li>a {
        max-width: 32rem;
        width: 100%;
    }
}

@media (max-width: 360px) {
    .site-main>.inner {
        --padding-horizontal: 1.96875rem;
        --padding-vertical: 2.8125rem;
        --spacing: 1.21875rem;
    }

    .text-component.instance-1 {
        font-size: 1.5em;
    }

    .text-component.instance-2 {
        font-size: 0.75em;
    }

    .container-component.instance-1>.wrapper>.inner {
        --gutters: 1.125rem;
        --padding-horizontal: 0rem;
        --padding-vertical: 0rem;
    }

    .buttons-component.instance-1 {
        gap: 0.9375rem;
    }
}

body {
    overflow: auto !important;
}

body::after {
    display: none !important;
}

.site-main>.inner {
    opacity: 1.0 !important;
}

.site-main {
    opacity: 1.0 !important;
    filter: none !important;
    transform-style: preserve-3d;
    will-change: transform;
}


@media (min-width: 737px) {
    #profile-decoration {
        width: 122% !important;
        height: 122% !important;
    }
}


@media (max-width: 736px) {

    .image-component.instance-2>.frame,
    #image02,
    #image02 .frame {
        width: 9rem !important;
        height: 9rem !important;
    }

    #profile-decoration {
        width: 128% !important;
        height: 128% !important;
    }

    #image02 {
        margin: 0 auto !important;
    }
}

@media (max-width: 480px) {

    .image-component.instance-2>.frame,
    #image02,
    #image02 .frame {
        width: 8rem !important;
        height: 8rem !important;
    }

    #profile-decoration {
        width: 126% !important;
        height: 126% !important;
    }
}

@media (max-width: 360px) {

    .image-component.instance-2>.frame,
    #image02,
    #image02 .frame {
        width: 7rem !important;
        height: 7rem !important;
    }

    #profile-decoration {
        width: 124% !important;
        height: 124% !important;
    }
}

#image02 .frame {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
}

/* Ensure proper centering */
#image02 {
    display: inline-block !important;
    text-align: center !important;
}

/* Floating button styles - matches the card buttons */
.floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.floating-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 3rem;
    line-height: 3rem;
    padding: 0 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 1em;
    font-weight: 400;
    border-radius: 3rem;
    background-color: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease !important;
    cursor: pointer;
}

.floating-btn .label {
    color: #FFFFFF;
}

.floating-btn svg {
    display: block;
    fill: #FFFFFF !important;
    height: 1.375em;
    width: 1.375em;
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.5));
}

.floating-btn:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6), 0 0 8px rgba(255, 255, 255, 0.4) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    animation: glowPulse 0.5s ease infinite alternate;
}

@media (max-width: 736px) {
    .floating-button {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-btn {
        height: 2.75rem;
        padding: 0 1.25rem;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .floating-button {
        bottom: 10px;
        right: 10px;
    }
    
    .floating-btn {
        height: 2.5rem;
        padding: 0 1rem;
        font-size: 0.85em;
    }
}