/* /Components/Customs/BattlePlayerComponent.razor.rz.scp.css */
#battle-player[b-cnsgqk72tk] {
    display: flex;
    flex-direction: column;

    > header {
        margin: 10px 0;
    }
    
    #battle-units[b-cnsgqk72tk] {
        display: flex;
        flex-direction: column;
        gap: 5px;

        > div {
            padding: 10px;
            background: rgb(0 0 0 / 0.3);

            > h3 {
                margin: 0 0 5px 0;
                display: inline-block;
            }

            > span[b-cnsgqk72tk] {
                font-size: 0.7em;

                &.error {
                    color: red;
                }
            }

            > div[b-cnsgqk72tk] {
                display: flex;
                wrap-flow: maximum;
                flex-wrap: wrap;
                gap: 5px;

                > p {
                    margin: 0;
                    background: var(--background-color-secondary);
                    padding: 5px;
                    border-radius: 5px;
                }
            }
        }
    }
}
/* /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: 1050px) {    
    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;
            }
        }
    }
}

#blogs[b-r2btdbrfwn] {
    display: flex;
    flex-direction: column;
    margin: 30px auto 0 auto;
    
    > h2 {
        text-align: right;
    }
    
    a[b-r2btdbrfwn] {
        position: relative;
        display: flex;
        flex-direction: row;
        align-self: end;
        align-items: start;
        gap: 1rem;
        background: var(--background-color-secondary);
        text-decoration: none;
        color: inherit;
        border-radius: 10px;
        transition: scale 0.2s ease-in-out;
        margin-bottom: 10px;
        max-width: 900px;


        @media (max-width:600px) {
            flex-direction: column;[b-r2btdbrfwn]
        }

        > img {
            border-radius: 10px;
            filter: blur(4px);
            transition: filter 0.2s ease-in-out;


            @media (max-width:600px) {
                width: 92px;
                text-align: center;
                margin: 5px auto;[b-r2btdbrfwn]
            }
        }


        &:hover > img[b-r2btdbrfwn] {
            filter: blur(0);
        }

        > div[b-r2btdbrfwn] {
            width: 100%;

            > h2 {
                margin: 5px 0;

                @media (max-width:600px) {
                    margin: 5px;[b-r2btdbrfwn]
                }
            }

            > p[b-r2btdbrfwn] {
                margin: 5px;
                wrap-flow: maximum;
                overflow-wrap: break-word;
                white-space: pre-wrap;
                word-break: break-word;

                @media (max-width:1000px) {
                    font-size: 0.8rem;[b-r2btdbrfwn]
                }
            }

            > hr[b-r2btdbrfwn] {
                margin: 0 0 0 -1rem;
                width: calc(100% + 1rem);

                @media (max-width:600px) {
                    width: 100%;
                    margin: 0;[b-r2btdbrfwn]
                }
            }

            > span[b-r2btdbrfwn] {
                font-size: 0.8rem;
                opacity: 0.6;
                right: 5px;
                bottom: 5px;
                position: absolute;

                @media (max-width:600px) {
                    position: relative;
                    margin: 10px;[b-r2btdbrfwn]
                }
            }

        }

        &:hover[b-r2btdbrfwn] {
            scale: 1.02;
        }
    }
}

#spotify[b-r2btdbrfwn] {
    > h2 {
        margin: 30px 10px 10px 10px;
    }
}

@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/BattleCreate.razor.rz.scp.css */
main[b-h2ii6nvbgg] {
    h1 {
        margin-bottom: 20px;
    }
    
    #main-info[b-h2ii6nvbgg]{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        
        div {
            width: fit-content;
            padding: 0 0 0 5px;
        }
    }
    
    > hr[b-h2ii6nvbgg] {
        height: 2px;
    }
    
    > section[b-h2ii6nvbgg] {
        > header {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .battle-player[b-h2ii6nvbgg] {
            > header {
                display: flex;
                margin: 15px 0 0 0;
                gap: 5px;
            }
            > section[b-h2ii6nvbgg] {
                padding: 15px;
                border-left: 2px solid var(--accent-color);
            }
        }
    }
}
/* /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/ClanView.razor.rz.scp.css */
main[b-6ljnw0abej] {
    > table {
        background: var(--background-color-secondary);
        width: 100%;
        border-spacing: 0;

        > thead {
            > tr {
                background: var(--background-color-green);

                > th {
                    text-align: left;
                    padding: 2px 5px;
                }
            }
        }

        > tbody[b-6ljnw0abej] {
            > tr:not(.details) {
                > th {
                    color: var(--accent-color);
                    opacity: 0.3;
                    text-align: left;
                }

                > td[b-6ljnw0abej] {
                    padding: 5px;
                 
                    &:first-of-type {
                        color: var(--accent-color);
                    }
                    
                    &:last-of-type[b-6ljnw0abej] {
                        text-transform: uppercase;
                    }
                }
            }

            > tr:nth-child(odd):not(.details)[b-6ljnw0abej] {
                background: rgb(255 255 255 / 0.03);

            }

            > tr:hover:not(.details)[b-6ljnw0abej] {
                cursor: pointer;
                background: rgb(255 255 255 / 0.1);
            }
        }

        tr:not(.details)[b-6ljnw0abej] {
            th:last-of-type:not(:first-of-type), td:last-of-type {
                text-align: right;
            }
        }
    }
    
    .details[b-6ljnw0abej] {
        position: relative;
        height: 210px;
        
        > td {
            display: flex;
            position: absolute;
            top: 6px;
            left: 5px;

            > .details-img {
                width: 128px;
                height: 192px;
                overflow: hidden;
                border: 2px solid var(--background-color-green);
                border-radius: 3px;
            }

            > .details-stats[b-6ljnw0abej] {
                flex: 1;
                
                > p {
                    margin: 0 5px;
                    padding: 5px;
                    background: rgb(0 0 0 / 0.2);
                    font-size: 0.8rem;
                    border-radius: 3px;
                }
            }
        }
    }
}
/* /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.0;
        --grid-size-y: 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;
        margin: -5px;

        > img {
            max-width: min(calc(var(--grid-size-x) * var(--grid-size)), 100%);
            max-height: min(calc(var(--grid-size-y) * var(--grid-size)), 100%);
            position: absolute;
            width: auto;
            height: auto;
            object-fit: contain;
            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] {
    
    > h1 {
        margin: 0 0 30px 0;
    }

    #clans[b-3p7o7serfg] {
        > a {
            position: relative;
            display: flex;
            align-items: center;
            text-decoration: none;
            flex-direction: column;
            transition: scale 0.2s linear;
            border-right: 2px solid var(--accent-color);
            border-left: 2px solid var(--accent-color);
            margin-bottom: 10px;
            overflow: hidden;
            background: var(--background-color-secondary);

            >img {
                position: absolute;
                z-index: -1;
                filter: blur(3px);
                opacity: 0.2;
            }

            > h2[b-3p7o7serfg] {
                width: 100%;
                font-size: 3rem;
                text-align: center;
            }

            > p[b-3p7o7serfg] {
                text-align: center;
                color: white;
                opacity: 0.8;
                margin: 0 0 5px 0;
            }

            &:hover[b-3p7o7serfg] {
                scale: 0.98;
            }
        }
    }

    #categories[b-3p7o7serfg] {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        
        > a {
            flex: 1;
            background: rgb(0 0 0 / 0.25);
            transition: all 0.1s linear;
            text-decoration: none;
            font-size: 1.5rem;
            text-align: center;
            color: white;
            border-radius: 5px;
            padding: 10px;
            text-transform: uppercase;
            align-self: center;
            
            &:hover {
                scale: 0.98;
                color: var(--accent-color);
            }
        }
    }
    
    #news[b-3p7o7serfg] {
        display: flex;
        flex-direction: column;
        align-items: center;
        
        > h2 {
            margin: 30px 0 15px 0;
        }
        
        > img[b-3p7o7serfg] {
            max-width: 100%;
            max-height: 384px;
        }
    }
}
