/* /Components/Customs/Loading.razor.rz.scp.css */
@keyframes sp7-b-yzpg106bgp {
    0%,
    10% {
        transform: scale(var(--s, 1)) translate(0, 0) rotate(0deg)
    }
    33% {
        transform: scale(var(--s, 1)) translate(0, -20px) rotate(0deg)
    }
    66% {
        transform: scale(var(--s, 1)) translate(10px, -20px) rotate(-90deg)
    }
    90%,
    100% {
        transform: scale(var(--s, 1)) translate(10px, -10px) rotate(-90deg)
    }
}

.loader[b-yzpg106bgp] {
    width: 40px;
    height: 60px;
    position: relative;
    margin-inline: auto;
}

.loader[b-yzpg106bgp]::before,
.loader[b-yzpg106bgp]::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--accent-color);
    clip-path: polygon(0 0, 100% 0, 100% 67%, 50% 67%, 50% 34%, 0 34%);
    animation: sp7-b-yzpg106bgp 2s infinite;
}

.loader[b-yzpg106bgp]::after {
    --s: -1, -1;
}
/* /Components/Customs/SemiCirclePieChart.razor.rz.scp.css */
.graphic[b-nzo2vsfhlb] {
    > .graphic__chart {
        --wins-angle: 90deg;

        position: relative;
        width: 100%;
        max-width: 260px;
        aspect-ratio: 2 / 1;
        margin: auto;
        overflow: hidden;

        > div {
            position: absolute;
            left: 50%;
            bottom: 4px;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            transform: translateX(-50%);
            text-align: center;

            > strong {
                font-size: 2rem;
                line-height: 1;
            }

            > span[b-nzo2vsfhlb] {
                color: color-mix(in srgb, var(--text-color) 70%, transparent);
                font-size: 0.75rem;
                text-transform: uppercase;
            }
        }
    }


    > .graphic__chart[b-nzo2vsfhlb]::before {
        content: "";
        position: absolute;
        width: 100%;
        aspect-ratio: 1;
        border-radius: 50%;
        background: conic-gradient(
                from 270deg,
                #2b9f2d 0deg var(--wins-angle),
                #303038 var(--wins-angle) 180deg,
                transparent 180deg 360deg
        );
    }

    > .graphic__chart[b-nzo2vsfhlb]::after {
        content: "";
        position: absolute;
        left: 15%;
        right: 15%;
        bottom: -72%;
        aspect-ratio: 1;
        border-radius: 50%;
        background: var(--background-color-secondary);
    }

    > .graphic__legend[b-nzo2vsfhlb] {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px 12px;
        margin-top: 10px;
        font-size: 0.85rem;

        > span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        i[b-nzo2vsfhlb] {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        .left[b-nzo2vsfhlb] {
            background: #2b9f2d;
        }

        .right[b-nzo2vsfhlb] {
            background: #303038;
        }
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
@keyframes nav-fixed-b-k6cbxl48dx {
    from {
        width: calc(var(--max-page-width) - 30px);
    }
    to {
        width: var(--max-page-width);
    }
}

header[b-k6cbxl48dx] {
    height: 78px;
}

nav[b-k6cbxl48dx] {
    display: flex;
    align-items: center;
    background: var(--background-color-secondary);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
    margin: 15px;
    height: 48px;
    font-size: 1.5rem;
    font-weight: 100;
    color: var(--accent-color);
    transition: margin-left 0.5s, margin-right 0.5s;
}

nav.fixed[b-k6cbxl48dx] {
    z-index: 15;
    position: fixed;
    margin: 0;
    max-width: var(--max-page-width);
    border-radius:  0 0 0.5rem 0.5rem ;
    animation: nav-fixed-b-k6cbxl48dx 0.5s;
    animation-fill-mode: forwards;
}

nav > p[b-k6cbxl48dx] {
    font-size: 2rem;
}

nav.fixed > p[b-k6cbxl48dx] {
    border-radius: 0 0 0 0.5rem;
}

nav > div[b-k6cbxl48dx] {
    margin-left: auto;
    display: flex;
}

#kofi > img[b-k6cbxl48dx] {
    height: 42px;
    margin-top: 8px;
    transition: transform 0.1s;
}

#kofi:hover > img[b-k6cbxl48dx] {
    transform: translateY(-3px);
}

#admin > img[b-k6cbxl48dx] {
    height: 35px;
    margin-top: 10px;
    transition: transform 0.1s;
}

#admin:hover > img[b-k6cbxl48dx] {
    transform: translateY(-3px);
}

footer[b-k6cbxl48dx] {
    color: var(--accent-color);
    text-align: center;
    font-size: 0.9rem;
    margin: 0 10px;
}

#warning-entry[b-k6cbxl48dx] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    backdrop-filter: blur(20px);
    
    > div {
        position: relative;
        max-width: 650px;

        > img {
            position: absolute;
            right: 0;
            top: 0;
            width: 64px;
            height: 64px;
            transform: rotate(15deg);
            opacity: 0.25;
        }
    }
}

/* BLAZOR INTEGRATION ----------------------------------------------------------------------------------------------- */
#blazor-error-ui[b-k6cbxl48dx] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss[b-k6cbxl48dx] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

@media (max-width: 1600px) {
    nav.fixed[b-k6cbxl48dx] {
        width: 100%;
        animation: none;
    }
}

@media (max-width: 920px) {    
    nav[b-k6cbxl48dx] {
        position: relative;
        z-index: 1000;
        margin: 15px auto;
        width: fit-content;
        border-radius: 0.5rem;
        flex-direction: column;
        height: auto;
    }
    
    nav.fixed[b-k6cbxl48dx] {
        animation: none;
        margin-left: 50%;
        transform: translateX(-50%);
        width: fit-content;
        border-radius: 0 0 0.5rem 0.5rem;
    }

    nav.fixed > p[b-k6cbxl48dx] {
        border-radius: 0 0 0.5rem 0.5rem;
    }

    nav > p[b-k6cbxl48dx] {
        border-radius: 0.5rem;
        margin: 0;
    }
    
    nav > ul[b-k6cbxl48dx], nav > div[b-k6cbxl48dx] {
        flex-direction: column;
        display: none;
        text-align: center;
        margin: 0;
    }
    
    [b-k6cbxl48dx] nav a:any-link {
        margin: 4px;
    }
    
    nav li[b-k6cbxl48dx], nav a:any-link[b-k6cbxl48dx] {
        text-align: center;
        margin: auto;
    }
    
    nav:hover > ul[b-k6cbxl48dx] {
        display: block;
    }
    
    ul:hover[b-k6cbxl48dx] {
        display: block;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-hyuz2e6q8k],
.components-reconnect-repeated-attempt-visible[b-hyuz2e6q8k],
.components-reconnect-failed-visible[b-hyuz2e6q8k],
.components-pause-visible[b-hyuz2e6q8k],
.components-resume-failed-visible[b-hyuz2e6q8k],
.components-rejoining-animation[b-hyuz2e6q8k] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-hyuz2e6q8k],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-hyuz2e6q8k],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-hyuz2e6q8k],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-hyuz2e6q8k],
#components-reconnect-modal.components-reconnect-retrying[b-hyuz2e6q8k],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-hyuz2e6q8k],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-hyuz2e6q8k],
#components-reconnect-modal.components-reconnect-failed[b-hyuz2e6q8k],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-hyuz2e6q8k] {
    display: block;
}


#components-reconnect-modal[b-hyuz2e6q8k] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-hyuz2e6q8k 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-hyuz2e6q8k 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-hyuz2e6q8k 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-hyuz2e6q8k]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-hyuz2e6q8k 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-hyuz2e6q8k {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-hyuz2e6q8k {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-hyuz2e6q8k {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-hyuz2e6q8k] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-hyuz2e6q8k] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-hyuz2e6q8k] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-hyuz2e6q8k] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-hyuz2e6q8k] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-hyuz2e6q8k] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-hyuz2e6q8k] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-hyuz2e6q8k 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-hyuz2e6q8k] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-hyuz2e6q8k {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Main/About.razor.rz.scp.css */
main[b-7dwepw3y7e] {
    padding: 10px;
}

main[b-7dwepw3y7e]::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url("./images/me_standing.png") no-repeat bottom;
    opacity: 0.2;
    z-index: -1;
}

#no-ai[b-7dwepw3y7e] {
    margin: -20px 0 50px 0;
}

h1[b-7dwepw3y7e] {
    text-align: center;
    margin-bottom: 20px;
}

#me[b-7dwepw3y7e] {
    position: relative;
    display: flex;
    max-width: 1000px;
    margin: auto;
}

#me > img[b-7dwepw3y7e] {
    height: 300px;
    position: relative;
    bottom: 0;
    mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
}

#me > div[b-7dwepw3y7e] {
    margin: auto 5px;
}

#me a > img[b-7dwepw3y7e] {
    width: 64px;
    image-rendering: pixelated;
    border-radius: 10px;
    transition: transform 0.1s;
}

#me a > img:hover[b-7dwepw3y7e] {
    transform: translateY(-5px);
}

hr[b-7dwepw3y7e] {
    margin: 50px auto;
}

#description[b-7dwepw3y7e] {
    text-align: center;
    align-items: center;
}

#description > img:first-of-type[b-7dwepw3y7e] {
    max-width: 750px;
    width: 100%;
    margin-left: auto;
    justify-content: center;
    text-align: center;
}

#description > p[b-7dwepw3y7e] {
    text-align: center;
}

#credits[b-7dwepw3y7e], #credits :any-link[b-7dwepw3y7e] {
    text-align: center;
    font-size: 0.8rem;
    color: #426f6f;
}

#credits li[b-7dwepw3y7e] {
    list-style-type: none;
}

#credits > ul[b-7dwepw3y7e] {
    text-align: left;
    width: fit-content;
    margin: auto;
}

@media (max-width: 550px) {

    #me > img[b-7dwepw3y7e] {
        position: absolute;
        z-index: -1;
        opacity: 0.1;
        width: 100%;
        height: auto;
    }

    #me > div[b-7dwepw3y7e] {
        margin-left: 0;
    }

}
/* /Components/Pages/Main/Home.razor.rz.scp.css */
@keyframes floaty-b-r2btdbrfwn {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

#presentation[b-r2btdbrfwn] {
    position: relative;
    flex-direction: column;
    padding: 20px 0 0 0;

    h1 {
        font-size: 5rem;
        line-height: 1;
        margin: 0 0 0 0;

        @media (min-width: 1000px) {  
            margin-right: 120px;[b-r2btdbrfwn]
        }
    }

    p[b-r2btdbrfwn] {
        margin: 0 0 0 4rem;
    }

    > img[b-r2btdbrfwn] {
        position: absolute;
        width: 300px;
        left: 80px;
        top: 120px;
        rotate: 10deg;
        z-index: -1;
        animation: floaty-b-r2btdbrfwn 3s ease-in-out infinite;
        
        @media (max-width: 650px) {
            width: 200px;
            opacity: 0.5;[b-r2btdbrfwn]
        }
        
        @media (max-width: 400px) {
            width: 150px;[b-r2btdbrfwn]
        }
    }

    > div[b-r2btdbrfwn] {
        position: absolute;
        display: flex;
        flex-direction: column;
        bottom: -30px;
        right: 5px;
        gap: 0.5rem;

        > .button {
            width: 80px;
            align-self: end;
            text-align: center;
        }


        @media (max-width: 650px) {
            flex-direction: row;[b-r2btdbrfwn]
        }


        @media (max-width: 400px) {
            flex-direction: column;
            bottom: -100px;[b-r2btdbrfwn]
        }
    }
}

#github[b-r2btdbrfwn] {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 1rem;
    margin: 110px 0 60px 0;

    > h2 {
        margin: 0;
    }

    #github__commit[b-r2btdbrfwn] {
        position: relative;
        background-color: var(--background-color-secondary);
        padding: 1rem;
        border-radius: 10px;
        margin-right: 15px;
        max-width: 650px;
        width: 100%;
        transition: scale 0.2s ease-in-out;

        > p {
            margin: 0;
            max-width: calc(100% - 100px);

            @media (max-width: 400px) {
                max-width: inherit;[b-r2btdbrfwn]
            }
        }

        > img[b-r2btdbrfwn] {
            position: absolute;
            right: 0;
            top: -20px;
            width: 100px;

            @media (max-width: 400px) {
                display: none;[b-r2btdbrfwn]
            }
        }

        > div[b-r2btdbrfwn] {
            display: flex;
            margin-bottom: 0.5rem;

            > * {
                margin: 0;
            }

            > h3[b-r2btdbrfwn] {
                margin: 0 10px;
            }

            > p[b-r2btdbrfwn] {
                padding: 2px 5px;
                background: rgba(0, 0, 0, 0.2);
            }

            #github__commit__branch[b-r2btdbrfwn] {
                padding: 2px 10px;
                border-radius: 5px 0 0 5px;
                background: black;
            }
        }

        @media (max-width: 500px) {
            margin: 0;[b-r2btdbrfwn]
        }
    }

    #github__commit:hover[b-r2btdbrfwn] {
        scale: 1.05;
        cursor: pointer;
    }
}

#steam[b-r2btdbrfwn] {
    width: fit-content;

    > h2 {
        margin: 0 10px 10px 10px;
    }

    p[b-r2btdbrfwn] {
        margin: 0;
    }

    > a[b-r2btdbrfwn] {
        text-decoration: none;
        color: inherit;

        > div {
            transition: all 0.2s ease-in-out;
            background: var(--background-color-secondary);
            max-width: 650px;
            width: 100%;
            padding: 10px;
            border-radius: 10px;
            display: flex;
            gap: 10px;
            margin: 0 10px;

            #online {
                color: #55a0c9
            }

            #offline[b-r2btdbrfwn] {
                color: #626262
            }

            #busy[b-r2btdbrfwn] {
                color: #ab4a4a
            }

            #away[b-r2btdbrfwn] {
                color: #ecdb00
            }

            #snooze[b-r2btdbrfwn] {
                color: #ac52d7
            }

            #unknown[b-r2btdbrfwn] {
                color: #000000
            }

            #ingame[b-r2btdbrfwn] {
                color: #4aab91
            }

            > img[b-r2btdbrfwn] {
                width: 64px;
                height: 64px;
                border-radius: 5px;
            }

            > div[b-r2btdbrfwn] {

                > div {
                    display: flex;
                    gap: 10px;
                    margin-top: 5px;
                    align-items: center;

                    > img {
                        width: 32px;
                        height: 32px;
                    }

                    > div[b-r2btdbrfwn] {
                        p:last-child {
                            font-size: 0.7rem;
                            color: var(--accent-color);
                        }
                    }
                }
            }
        }
    }

    > a > div:hover[b-r2btdbrfwn] {
        cursor: pointer;
        transform: scale(1.05);
    }
}

#projects[b-r2btdbrfwn] {
    > h2 {
        text-align: center;
        margin-bottom: 10px;
        margin-top: 30px;
    }

    #projects__list[b-r2btdbrfwn] {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;

        .project {
            width: 300px;
            height: 400px;
            margin: 0;
            transform: skew(-10deg);
            display: flex;
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
            overflow: hidden;
            background: var(--background-color-secondary);
            border-radius: 10px;
            transition: transform 0.2s;

            > img {
                transition: all 0.2s;
                z-index: -1;
            }

            > h3[b-r2btdbrfwn] {
                color: white;
                position: absolute;
                background: var(--background-color);
                height: fit-content;
                padding: 3px 15px;
                margin: 0;
                left: -5px;
                border-radius: 0 0 5px 0;
            }

            > *[b-r2btdbrfwn] {
                transform: skew(10deg);
            }

            @media (max-width: 1150px) {
                width: 250px;
                height: 300px;[b-r2btdbrfwn]
            }

            @media (max-width: 800px) {
                width: 150px;
                height: 200px;[b-r2btdbrfwn]
            }
        }

        .project:hover[b-r2btdbrfwn] {
            transform: translateY(-10px) skew(-10deg);
            cursor: pointer;

            > img {
                opacity: 1;
                scale: 1.1;
            }
        }
    }
}

#spotify[b-r2btdbrfwn] {
    > h2 {
        margin: 30px 10px 10px 10px;
    }
}


/*@media (max-width: 850px) {*/
/*    #github {*/
/*        width: 100%;*/
/*        margin-right: 0;*/

/*        & > #github__commit {*/
/*            margin: 0;*/
/*            width: auto;*/
/*        }*/
/*    }*/
/*}*/



@media (max-width: 400px) {

    #presentation[b-r2btdbrfwn] {
        h1 {
            font-size: 3rem;
        }

        > img[b-r2btdbrfwn] {
            width: 150px;
        }

        > div[b-r2btdbrfwn] {
            flex-direction: column;
            bottom: -100px;
        }
    }

    #github__commit[b-r2btdbrfwn] {
        padding: 0.5rem;

        > img {
            width: 64px;
        }

        > p[b-r2btdbrfwn] {
            max-width: calc(100% - 42px);
        }
    }
}
/* /Components/Pages/Main/Login.razor.rz.scp.css */
main[b-y5r1fnbd2h] {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: -100%;
}

form[b-y5r1fnbd2h] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
/* /Components/Pages/Main/NotFound.razor.rz.scp.css */
main > *[b-kammx1o4fi] {
    text-align: center;
}

main > img[b-kammx1o4fi] {
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    height: 600px;
    margin: auto;
    align-self: center;
}
/* /Components/Pages/Projects/Home.razor.rz.scp.css */
main > div[b-313h6mr47g] {
    position: relative;
}

main > div > img[b-313h6mr47g] {
    position: absolute;
    right: 0;
    top: -128px;
    height: 128px;
    image-rendering: pixelated;
    margin: auto;
    align-self: center;
    z-index: -1;
    opacity: 0.4;
}

#projects[b-313h6mr47g] {
    margin-top: 50px;
}

.project[b-313h6mr47g] {
    margin: 50px 0 0 0;
    background: var(--background-color-secondary);
    display: flex;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.2s;
    max-width: 800px;
    min-height: 128px;
}

.project:nth-child(even)[b-313h6mr47g] {
    margin-left: auto;
    flex-direction: row-reverse;
}

.project:hover[b-313h6mr47g] {
    transform: translateY(-10px);
    border-bottom: 5px var(--accent-color) solid;
}

.project > img[b-313h6mr47g] {
    position: relative;
    transform: translateX(-32px) translateY(-32px) scale(1.3);
    height: 128px;
    width: 128px;
    transition: all 0.2s;
}

.project:nth-child(even) > img[b-313h6mr47g] {
    transform: translateX(32px) translateY(-32px) scale(1.3);
}

.project:hover > img[b-313h6mr47g] {
    transform: none;
}

.project__description[b-313h6mr47g] {
    margin: 0 10px;
    flex: 1;
}

.project:nth-child(even) .project__description[b-313h6mr47g] {
    text-align: right;
}

.project__description > h2[b-313h6mr47g] {
    word-wrap: anywhere;
}

.project__links[b-313h6mr47g] {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: center;
    margin-top: auto;
}

@media (max-width: 650px) {
    .project > img[b-313h6mr47g] {
        width: 64px;
        height: 64px;
    }
}

@media (max-width: 500px) {
    #projects[b-313h6mr47g] {
        margin-top: 20px;
    }
    
    .project[b-313h6mr47g] {
        margin-top: 20px;
    }
    
    #projects > .project[b-313h6mr47g] {
        flex-direction: column;
    }

    #projects > .project > img[b-313h6mr47g] {
        transform: none;
        margin: 0 auto;
    }
}
/* /Components/Pages/Projects/Pages/Ratelite.razor.rz.scp.css */
/* /Components/Pages/Warhammer/Armies.razor.rz.scp.css */
/* /Components/Pages/Warhammer/CharacterCard.razor.rz.scp.css */
@keyframes floaty-b-3xqccntfli {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    50% {
        transform: translateY(-8px) translateX(-4px);
    }
}

main[b-3xqccntfli] {
    display: grid;
    grid-template-columns: 300px 1fr;
    max-width: 1200px;
    width: 100%;
    max-height: 300px;
    align-self: center;
    margin: auto;
    gap: 10px;

    > section {
        #header {
            margin: 0;
            display: flex;
            
            > div {
                display: flex;
                align-items: end;

                > h1 {
                    display: inline;
                }
                
                > span[b-3xqccntfli] {
                    margin-bottom: 10px;
                    margin-left: 5px;
                }
            }

            > span:last-of-type[b-3xqccntfli] {
                text-align: right;
                margin-left: auto;
                font-size: 0.8rem;
                opacity: 0.5;
            }
        }

        > hr[b-3xqccntfli] {
            margin: 0;
        }

        #stats[b-3xqccntfli] {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            margin: 5px 0;

            > article:first-of-type {
                display: flex;
                grid-row: span 2;
                text-align: left;

                > div {
                    > span {
                        display: block;
                        color: var(--color-green-light);
                    }

                    > span:first-of-type[b-3xqccntfli] {
                        font-size: 1.50rem;
                        color: var(--accent-color);
                    }
                }
            }

            > article:not(:first-of-type)[b-3xqccntfli] {
                display: flex;
                align-items: center;
                text-align: right;
                justify-content: flex-end;
            }
        }

        #infos[b-3xqccntfli] {
            height: 135px;
            overflow-y: scroll;
            padding: 10px;

            > p {
                font-size: 0.9rem;
            }

            > p:last-of-type[b-3xqccntfli] {
                opacity: 0.5;
            }
        }

        #paints[b-3xqccntfli] {
            display: flex;
            gap: 3px;

            > div {
                width: 16px;
                height: 16px;
            }
        }
    }

    > a[b-3xqccntfli] {
        position: relative;
        display: block;
        height: 300px;
        width: 300px;
        overflow: hidden;
        border: 2px solid var(--color-green-light);
        border-radius: 10px;

        > div {
            position: relative;
            height: 300px;
            width: 300px;
            animation: infinite floaty-b-3xqccntfli 2s linear;

            > img {
                position: relative;
                transform-origin: center;
                top: 50%;
                left: 50%;
            }
        }

        > span[b-3xqccntfli] {
            position: absolute;
            z-index: 3;
            top: -13px;
            right: 5px;
            padding: 10px;
            font-size: 80px;
            opacity: 35%;
            border-radius: 0 0 0 10px;
        }

        &[b-3xqccntfli]::after {
            content: "";
            position: absolute;
            inset: 15px;
            border: 1px solid var(--accent-color);
            box-shadow: 0 0 0 15px rgba(0, 0, 0, 0.25);
            pointer-events: none;
            z-index: 2;
        }
    }
}
/* /Components/Pages/Warhammer/CharacterCardEdit.razor.rz.scp.css */
form[b-odznyt19dd] {
    display: flex;
    gap: 30px;
    align-items: flex-start;

    > section {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    
    > section:first-of-type[b-odznyt19dd] {
        > label {
            color: white;
            opacity: 0.5;
            margin: 10px 0 0 5px;
        }
        
        > textarea[b-odznyt19dd] {
            min-height: 130px;
            resize: none;
        }
    }

    > section:last-of-type[b-odznyt19dd] {
        padding: 10px;
        border-radius: 18px;
        background: var(--background-color-tiersary);

        > #result {
            display: flex;
            min-height: 400px;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-radius:  0 0 18px 18px;
            margin-bottom: 10px;
            background: var(--panel-color);
            
            > img {
                max-width: 100%;
                max-height: 380px;
                object-fit: contain;
            }
        }
        
        > #preview[b-odznyt19dd] {
            display: flex;
            gap: 10px;
            
            > div:first-of-type {
                position: relative;
                width: 300px;
                height: 300px;
                overflow: hidden;
                border-radius: 18px;
                background: var(--background-color);
                
                > img {
                    position: relative;
                    transform-origin: center;
                    top: 50%;
                    left: 50%;
                }
            }
            
            > div:last-of-type[b-odznyt19dd] {
                display: flex;
                flex-direction: column;
            }
        }
    }
}
/* /Components/Pages/Warhammer/Citations.razor.rz.scp.css */
section[b-65rnc0raav] {
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all 0.1s linear;

    > figure {
        position: relative;
        width: 100%;
        margin: 0;
        padding: 10px 10px;
        border-radius: 5px;
        background: var(--background-color-secondary);
        transition: all 0.1s linear;
        animation: div-in 0.1s;
        overflow: hidden;
    }

    > figure[b-65rnc0raav]::before {
        content: "“";
        position: absolute;
        top: -5px;
        left: 0;
        font-size: 7rem;
        line-height: 1;
        opacity: 0.12;
        color: var(--text-color);
        pointer-events: none;
    }

    blockquote[b-65rnc0raav] {
        position: relative;
        margin: 0;
        color: var(--text-color);
        font-size: 0.9rem;
        line-height: 1.6;
        font-style: italic;
        z-index: 1;
    }

    figcaption[b-65rnc0raav] {
        margin-top: 16px;
        padding-top: 10px;
        border-top: 1px solid color-mix(in srgb, var(--text-color) 25%, transparent);
        color: color-mix(in srgb, var(--text-color) 75%, transparent);
        font-size: 0.9rem;
        text-align: right;
    }

    cite[b-65rnc0raav] {
        color: var(--text-color);
        font-style: normal;
        font-weight: bold;
    }
}
/* /Components/Pages/Warhammer/Gallery.razor.rz.scp.css */
section[b-fiafw975ei] {
    --grid-size: 192px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(var(--grid-size), 1fr));
    grid-auto-rows: var(--grid-size);
    grid-auto-flow: dense;
    gap: 15px;
    transition: all 0.1s linear;

    > .item {
        --grid-size-x: 1;
        --grid-size-y: 1;
        --grid-size-x--f: 1.0;
        --grid-size-y--f: 1.0;
        display: grid;
        place-items: center;

        position: relative;
        grid-column: span var(--grid-size-x);
        grid-row: span var(--grid-size-y);
        border-radius: 5px;
        background: var(--panel-color);
        transition: all 0.1s linear;
        animation: div-in 0.1s;
        overflow: hidden;
        margin: -5px;

        > img {
            height: calc(var(--grid-size-y--f) * var(--grid-size));
            width: calc(var(--grid-size-x--f) * var(--grid-size));
            transition: all 0.1s linear;
        }
    }

    > .item:hover[b-fiafw975ei] {
        cursor: pointer;

        > img {
            filter: brightness(1.1);
            scale: 1.05;
        }
    }
}


@media (max-width: 990px) {
    section[b-fiafw975ei] {
        --grid-size: 128px;
    }
}

@media (max-width: 528px) {
    section[b-fiafw975ei] {
        --grid-size: 64px;
    }
}
/* /Components/Pages/Warhammer/Home.razor.rz.scp.css */
main[b-3p7o7serfg] {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow-x: hidden;

    > p {
        margin-bottom: 0;
    }
}

#links[b-3p7o7serfg] {
    margin: auto;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 30px;

    h2 {
        font-size: 4rem;
        cursor: pointer;
        margin: 10px;
        transition: all 0.25s;

        > a:any-link {
            font-family: 'Orc Horde', sans-serif;
            color: inherit;
            text-align: center;
            text-decoration: none;
        }
    }

    h2:hover[b-3p7o7serfg] {
        scale: 1.2;
    }

    @media (max-width: 1150px) {
        flex-direction: column;
        gap: 0;[b-3p7o7serfg]
    }
}

#stats[b-3p7o7serfg] {
    margin: 20px;

    > div {
        display: flex;
        position: relative;
        margin: 20px;
        padding: 14px;
        border-radius: 5px;
        background: var(--background-color-secondary);
        gap: 20px;
        height: 200px;
        justify-content: center;

        > div:last-of-type {
            width: 100%;
            max-width: 900px;

            > .match__list {
                overflow-y: scroll;
                height: 136px;

                .match {
                    font-size: 0.8rem;
                    background: rgb(0 0 0 / 0.3);
                    margin: 5px 0;
                    padding: 5px;
                    border-radius: 5px;

                    > div {
                        display: flex;
                        width: 100%;

                        > div:last-child {
                            margin-left: auto;
                        }
                    }

                    &.win[b-3p7o7serfg] {
                        border-left: 5px solid var(--color-green-light);
                    }

                    &.lose[b-3p7o7serfg] {
                        border-left: 5px solid var(--color-red-light);
                    }

                    .match__result[b-3p7o7serfg] {
                        &.win {
                            color: var(--color-green-light);
                        }

                        &.lose[b-3p7o7serfg] {
                            color: var(--color-red-light);
                        }
                    }

                    .match__compo[b-3p7o7serfg] {
                        font-size: 0.7rem;
                        font-weight: bold;
                    }

                    .match__map[b-3p7o7serfg] {
                        font-size: 0.7rem;
                        opacity: 0.5;
                        font-style: italic;
                    }

                    .match__time[b-3p7o7serfg] {
                        font-size: 0.7rem;
                        color: #ba78f8;
                    }

                    .match__date[b-3p7o7serfg] {
                        font-size: 0.7rem;
                        margin-inline-start: auto;
                    }

                    .match__player[b-3p7o7serfg] {
                        margin: 0 5px;
                    }
                }
            }
            
            @media (max-width: 1000px) {
                display: none;[b-3p7o7serfg]
            }
        }

        > span[b-3p7o7serfg] {
            position: absolute;
            left: 50px;
            bottom: 20px;
            opacity: 0.5;
            
            @media (max-width: 1000px) {
                display: none;[b-3p7o7serfg]
            }
        }

        h4[b-3p7o7serfg] {
            opacity: 50%;
            margin: 0;
        }

        @media (max-width: 1000px) {
            height: initial;[b-3p7o7serfg]
        }
    }
}
/* /Components/Pages/Warhammer/Paints.razor.rz.scp.css */
section[b-qba3dqln8t] {
    display: grid;
    margin-top: 10px;
    grid-template-columns: 1fr 1fr 1fr;
    
    article {
        display: flex;

        div:first-child {
            width: 42px;
            height: 42px;
            margin: 5px 10px;
        }

        div:last-child[b-qba3dqln8t] {
            > span {
                padding: 0;
                margin: 0 5px 0 0;
                font-size: 0.8rem;
            }
        }
    }
    
    @media (max-width: 1150px) {
        grid-template-columns: 1fr 1fr;[b-qba3dqln8t]
    }

    @media (max-width: 550px) {
        grid-template-columns: 1fr;[b-qba3dqln8t]
    }
}

