
.dark {
    --bg: url("https://voyager.neocities.org/img/omoribg/Space_parallax.png");
    --border: url("https://pteri.neocities.org/images/assets/stv815.png");
    --dbgcol: url("https://voyager.neocities.org/img/omoribg/battleback_sm_default.png");
    --tcolor: #f8c2ff;
}

@font-face {
    font-family: 'Omori-reg';
    src: url("/fonts/OMORI_GAME2.ttf");
}

body {
    background-image: var(--bg);
    background-size: stretch;
    background-attachment: fixed;
    color: var(--tcolor);
    font-family: 'Omori-reg', sans-serif;
    min-height: 1920px;
    font-size: 20px;
}

.main-body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#floating-header:hover {
    transition: .3s ease all;
    color: white;
}

.title {
    position: relative;
    display: flex;
    margin-top: 20px;
    margin-bottom: 20px;
    align-items: flex-end;
    font-size: 120px;
    justify-content: center;
    width: 100%
}

.title.image {
    position: relative;
    left: 45px;
    top: 20px;
    width: 1em;
    height: .75em;
    transition: transform 0.2s ease-in-out;
}

.title.image:hover {
    transform: scaleX(-1);
}

.grid-container {
    position: relative;
    display: grid;
    grid-template-columns: 400px 800px;
    justify-content: center;
    align-items: center;
}

.grid-container > div {
    height:1200px;
    background-image: var(--dbgcol);
    background-position: scroll;
    background-size: cover;
    color: white;
    background-blend-mode: multiply;
    background-color: rgba(0,0,0,0.5);
    border: 10px solid transparent;
    padding:10px;
    border-image: var(--border) 11 stretch;
    justify-content: center;
    box-sizing:border-box;
    overflow-x: hidden;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: left;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--tcolor);
}

.profile {
    position: relative;
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    image-rendering: crisp-edges;   /* standard */
    image-rendering: pixelated;     /* fallback */
    background-image: url("/imgs/profile-bg-img.png");
    border: 2px solid #f8c2ff;
}

.stroke {
    text-shadow:
            -2px -2px 0 black,  
            2px -2px 0 black,
            -2px 2px 0 black,
            2px 2px 0 black; /* Multiple shadows to create the outline */
}

.profile h1 {
    position: absolute;
    top:0;

}

.profile .base {
    position: relative;
    z-index: 1;
    width: 300px;
}

.profile .overlay {
    position: absolute;
    width: 300px;
    top: 0px;
    z-index: 2;
    pointer-events: none;
}

#profile-picture {
    position: absolute;
    top:102px;
    width: 260px;
    height:260px;
    image-rendering: optimizeQuality;
    background-color: rgba(207, 207, 207, 0.5);
}

.profile .status {
    position: absolute;
    top:25px;
    z-index: 3;
    font-size: 40px;
}

#profile-picture:hover {
    filter: hue-rotate(360deg);
}

#profile-description {
    font-size: 18px;
    word-wrap: break-word;
    background-color: rgba(0, 0, 0, 0.95);

    border-style: solid;
    border-color: white;
    border-width: 3px 3px 3px 3px;
    box-shadow: 0 2px 4px rgba(255,255,255,0.3); /* subtle bevel effect */
    margin: 10px 5px;
    padding: 3px 10px;
}

h1 {
    font-size: 50px;
    padding:0px;
    margin:5px;
    width: 100%;
    text-align: center;
}

.nav-button {
    background: white;
    max-width: 250px;
    color: #4f2563;
    border: none;
    border-radius: 50px;
    padding: 12px 32px;
    font-size: 1.1em;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    text-decoration: none;
    }

    .nav-button:hover {
        background: #6821c5;
        color: var(--tcolor);
        box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.scrolling-banner {
    margin: 0 auto;
    white-space: nowrap;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgba(0,0,0,0.75);
    color: white;
    font-size: 24px;
    border-color: white;
    border-width: 2px;
    border-radius: 3px;
    border-style:double;
}

.scrolling-banner span {
    display: inline-block;
    padding-left: 100%;
    animation: scrolling-banner 10s linear infinite;
}

@keyframes scrolling-banner {
    0% { transform: translate(0, 0); }
    100% {transform: translate(-100%, 0); }
}

.info-blurb {
    font-size: 24px;
    color: white;
    text-align: center;
    background-color: rgba(90, 90, 90, 0.514);
}

.info-blurb .inner {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 3px;
    width: 100%;
    margin-top: 0px;
}

.info-blurb h2 {
    margin: 10px;
}

.links {
    display: flex;
    width: 60%;
    flex-wrap:wrap;
    width: 640px;
    height: 465px;
    padding: 10px;
    padding-bottom: 20px;
    margin: 10px 0px 10px 0px;
    background-image: url("https://voyager.neocities.org/img/omoribg/battleback_ow_download.png");
    background-repeat: no-repeat;
    background-size: contain;
    border: 10px solid transparent;
    border-image: var(--border) 11 stretch;
    align-content:baseline;
    justify-content: center;
}

.links .logo {
    width: 50px;
    height: 50px;
}

.links .button {
    margin-top: 20px;
    margin-bottom: 20px;
}

.links .link-gifs {
    display:flex;
    justify-content: space-between;
    align-items: end;
    position: relative;
    top: -28px;
    height: 300px;
}

.link-gifs > img {
    max-width: 300px;
    height: fit-content;
}

.button {
    width: auto;
    display: flex;
    color: white;
    background-color: black;
    border: 2px solid white;
    border-radius: 4px;
    text-decoration: none;
    padding: 12px;
    height: fit-content;
    margin: 0px 10px 0px 10px;
    font-size: 30px;
}

.extra-body {
    border: 5px solid black;
    background-image: url("https://voyager.neocities.org/img/omoribg/battleback_dw_abyss.png");
    background-size: cover;
    margin-top: 20px;
    padding: 0px 100px 80px 100px;

}   