@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&family=Space+Mono:wght@400;700&display=swap');

html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    color: white;
    background-color: #00111f;
    background: linear-gradient(to bottom right, #000b14 10%, #132330 75%, #1b3041 100%);
    overflow: clip;
}
* {
    cursor: default;
    font-family: "Barlow Condensed", sans-serif;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
*::-webkit-scrollbar {
    display: none;
}
body{font-family:"Barlow Condensed",sans-serif;background:#0b1113;background-image:radial-gradient(circle at 50% 0%,#26383a 0,#10191b 45%,#080d0f 100%);color:#e6ece8}
.page-container.main h1{font-family:"Space Mono",monospace;background:#111b1d;color:#d8a946;border-bottom-right-radius:10px;font-size:10px;letter-spacing:.05em}
.data-button{font-family:"Space Mono",monospace;font-size:11px;letter-spacing:.05em;background:#182427;color:#d9e3de;border:1px solid #3c4b4b;border-radius:7px;box-shadow:none}
.data-button:hover{outline:1px solid #d8a946;transform:translateY(-1px)}
*::selection {
    color: cyan;
    background-color: #213a50;
}



.notification-container {
    width: 100%;
    height: 100%;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    padding: 0;
    margin: 0;
    z-index: 9999;
}



.page-container {
    width: 100%;
    height: 100%;
    max-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: clip;
    overflow-y: auto;
    display: block;
}
.page-container.hidden {
    display: none;
}

.page-container.landing:not(.hidden) {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.page-container.landing h1 {
    margin: 0;
    font-size: 350%;
    margin-bottom: 10vh;
}
.page-container.landing .open-app-btn {
    transition: all 0s ease;
    width: fit-content;
    height: fit-content;
    padding: 10px;
    margin: 0;
    border: none;
    border-radius: 12px;
    color: white;
    background-color: #050029;
    background: linear-gradient(to right, rgba(255,255,255,0.1) 25%, rgb(180, 240, 255,0.1) 75%);
    box-shadow:
        2px 3px 4px rgba(0,0,0,0.15),
        inset 1px 1px 2px rgba(200,200,200,0.1),
        inset -1px -1px 2px rgba(200,175,175,0.05),
        inset 0 1px 2px rgba(0,0,0,0.2);
    outline: 1px solid transparent;
    cursor: pointer;
    transform: scale(1);
    backdrop-filter: blur(8px) brightness(1);
    font-size: 125%;
}
.page-container.landing .open-app-btn:hover {
    outline: 1px solid rgba(255,255,255,0.5);
    transform: scale(1.01);
}
.page-container.landing .open-app-btn:active {
    outline: 1px solid rgba(255,255,255,0.45);
    transform: scale(0.99);
    backdrop-filter: blur(8px) brightness(0.9);
}

.page-container.main:not(.hidden) {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}
.page-container.main h1 {
    --move-amount: calc(2vw + 2vh);
    margin: 0;
    padding: 15px;
    border: none;
    outline: none;
    background-color: #002129;
    background: rgba(255,255,255,0.1);
    color: white;
    border-bottom-right-radius: 12px;
    backdrop-filter: blur(8px);
    font-size: 100%;
    position: fixed;
    top: 0;
    left: 0;
}



.core-content {
    width: 100%;
    height: fit-content;
    min-height: 100vh;
    display: block;
    padding: 10px 0;
}

.core-content .data-options-container {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    padding: 10px 0;
}
.data-button {
    transition: all 0s ease;
    width: fit-content;
    height: fit-content;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 12px;
    color: white;
    background-color: #050029;
    background: linear-gradient(to right, rgba(255,255,255,0.1) 25%, rgb(180, 240, 255,0.1) 75%);
    box-shadow:
        2px 3px 4px rgba(0,0,0,0.15),
        inset 1px 1px 2px rgba(200,200,200,0.1),
        inset -1px -1px 2px rgba(200,175,175,0.05),
        inset 0 1px 2px rgba(0,0,0,0.2);
    outline: 1px solid transparent;
    cursor: pointer;
    transform: scale(1);
    backdrop-filter: blur(8px) brightness(1);
    font-size: 125%;
}
.data-button:hover {
    outline: 1px solid rgba(255,255,255,0.5);
    transform: scale(1.01);
}
.data-button:active {
    outline: 1px solid rgba(255,255,255,0.45);
    transform: scale(0.99);
    backdrop-filter: blur(8px) brightness(0.9);
}

.core-content:has(.data-options-container.hidden) .data-button.fixed {
    display: block;
}
.data-button.fixed {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    margin: calc(1vw + 1vh);
}

.core-content .data-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
.core-content .data-container.hidden, .core-content .data-options-container.hidden {
    display: none;
}

.core-content .data-view-exit {
    pointer-events: none;
    animation: data-view-exit 0.25s ease forwards;
}

.core-content .data-view-enter {
    animation: data-view-enter 0.25s ease forwards;
}

@keyframes data-view-exit {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateY(-12px) scale(0.985);
    }
}

@keyframes data-view-enter {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .core-content .data-view-exit,
    .core-content .data-view-enter {
        animation-duration: 0.01ms;
    }
}