:root {
    --text-color: #ffffff50;
}
.none,
textarea::-webkit-scrollbar,
.scroll-container::-webkit-scrollbar { display: none; }
.visible { display: flex; }
::selection {
    background: #ffcc00;
    color: #000000;
}
body, html {
    position: relative;
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #656a5d;
    z-index: 1;
    font-family: "Kosugi Maru", sans-serif;
}
body { 
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px; 
}
.scroll-container {
    height: 100vh;
    overflow-y: scroll;
}
.page {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: start;
    height: 100vh;
    scroll-snap-align: start;
    box-sizing: border-box;
    font-size: 16px;
    color: #ffffff50;
}
footer {
    position: fixed;
    bottom: 0;
    right: 0;
    margin: 10px;
    color: #ffffff50;
    font-family: "Kosugi Maru", sans-serif;
    font-size: 12px;
}
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(https://spakonainotch.vercel.app/assets/01-01-2025.gif);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1; /* fica atrás do conteúdo */
    opacity: 0.2;
    filter: hue-rotate(45deg) blur(10px);
}
#insert_page {
    display: flex;
    justify-content: center;
    position: fixed;
    bottom: 40px;
    left: 0;
    right: 0;
    width: 100%;
}
#insert_page textarea {
    background-color: transparent;
    border-left: 1px solid #000;
    border-right: none;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    outline: none;
    padding: 20px 10px 20px 10px;
    color: #000;
    margin: 0px 0px 0px 10px;
}
#insert_page input {
    background-color: transparent;
    border-left: none;
    border-right: 1px solid #000;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    margin: 0 10px 0 0px;
}
#login {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    position: fixed;
}
#login input {
    border: 1px solid #000;
    background-color: transparent;
    outline: none;
}
.ellipsis {
    position: fixed;
    bottom: 0;
    cursor: pointer;
}
@media screen and (max-width: 768px) {
    .scroll-container {
        scroll-snap-type: y mandatory;
        -webkit-overflow-scrolling: touch;
    }
    form textarea { width: 100%; }
}