
.rainworld-theme {
    --wall-mix: color-dodge;
    --wall-opacity: 100%;
    --wall-filter: none;
}

.shoreline-theme {
    --wall-mix: hard-light;
    /* --wall-opacity: 20%; */
    --wall-opacity: 30%;
    /* --wall-filter: hue-rotate(90deg); */
    --wall-filter: none;
}

* {
    box-sizing: border-box;
    image-rendering: auto;
}

body {
    margin: 0;
}

.container {
    overflow: hidden;
    background: linear-gradient(var(--background-color) 0px, #00000000 100px);
}

.container::before {
    content: url(/_img/assets/rw-assets/wall.png);
    position: absolute;
    z-index: -1;
    right: -120px;
    top: 0px;

    mix-blend-mode: var(--wall-mix);
    opacity: var(--wall-opacity);
    filter: var(--wall-filter);
}

.main {
    position: relative;
    max-width: 1200px;
    padding: 10px;
    margin-top: 20px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.wall-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

.wall-header h1 {
    font-family: sans-serif;
    font-size: 3.4em;

    line-height: 0.8em;
    letter-spacing: -3px;
    margin: 10px;
}


.wall-grid {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
}

.wall-grid img {
    width: 100%;
    height: auto;
    border-radius: 3px;
    image-rendering: auto;
}

.wall-item {
    width: 100%;
    position: relative;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #00000000;
    /* transition: filter 50ms ease-in-out, border 50ms ease-in-out; */
}

.wall-item:has(img):hover {
    border: 1px solid var(--box-border-color-2);
    /* filter: brightness(80%); */
}

.wall-item::after {
    content: "";
    position: absolute;
    background-color: rgba(0, 0, 0, 0.4);
    height: 100%;
    width: 100%;
    opacity: 0;
}

.wall-item:has(img):hover::after {
    opacity: 1;
}

.wall-column {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
}


.back {
    text-decoration: none;
    text-align: center;
    display: block;
}

.back:hover {
    text-decoration: underline;
}


.decoration {
    position: absolute;
    z-index: 100;
}


#cyan {
    bottom: 0px;
    left: -30px;
    transform: rotate(-90deg);
}

#orange1 {
    right: 0px;
    top: 95px;
}

#orange2 {
    left: -55px;
    transform: rotate(-100deg);
    top: 400px;
}

.column-hidden {
    display: none;
}



.glightbox-clean .gprev, .glightbox-clean .gnext {
    visibility: hidden !important;
}

.gscrollbar-fixer {
    margin-right: 0px !important;
}

.ginner-container {
    height: fit-content !important;
}

@media only screen and (max-width: 700px) {

    .main {
        margin-top: 10px;
        margin-bottom: 30px;
        gap: 15px;
        padding: 0px !important;
    }


    .wall-grid {
        margin: 0px;
    }


    .wall-grid > * {
        max-width: 95%;
    }

    .wall-item {
        height: max-content;
        max-height: none;
        display: flex;
        justify-content: center;
    }

    .container::before {
        content: "";
    }

    .decoration {
        display: none;
    }
}



