/* _content/Game/Components/Pages/CharacterSetup.razor.rz.scp.css */
.main-container[b-y4ze9xnb7f] {
    isolation: isolate;
    position: relative;
    background: linear-gradient(0deg, var(--slate-900) 0%, var(--slate-800) 100%);
    transition: all 300ms ease-out;
}

.bg-gold[b-y4ze9xnb7f] {
    background: linear-gradient(180deg, var(--gold-800) 0%, var(--gold-600) 100%);
}

.bg-olive[b-y4ze9xnb7f] {
    background: linear-gradient(180deg, var(--olive-800) 0%, var(--olive-600) 100%);
}

.bg-rose[b-y4ze9xnb7f] {
    background: linear-gradient(180deg, var(--rose-800) 0%, var(--rose-600) 100%);
}

.bg-viridian[b-y4ze9xnb7f] {
    background: linear-gradient(180deg, var(--viridian-800) 0%, var(--viridian-600) 100%);
}

.modal-overlay[b-y4ze9xnb7f] {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 10px;
    width: 100%;
    height: 100%;
    background: rgba(25, 26, 38, 0.9);
    backdrop-filter: blur(7.5px);
}

.modal-content[b-y4ze9xnb7f] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px;
    gap: 35px;
    width: 700px;
    flex: none;
    order: 0;
    flex-grow: 0;
}

    .modal-content p[b-y4ze9xnb7f] {
        flex: none;
        order: 0;
        flex-grow: 1;
    }

.modal-text[b-y4ze9xnb7f] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px 5px;
    gap: 5px;
    width: 100%;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

.validation-message-container[b-y4ze9xnb7f] {
    width: 100%;
    margin: 10px;
    color: var(--rose-400);
}

.modal-buttons[b-y4ze9xnb7f] {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding: 15px 0px 0px;
    gap: 10px;
    width: 100%;
    flex: none;
    order: 2;
    align-self: stretch;
    flex-grow: 0;
}

.setup-content[b-y4ze9xnb7f] {
    position: absolute;
    width: 100vw;
    height: 100%;
    left: 0;
    top: 0;
    padding: 10vh 20vw 20vh 20vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    overflow-y: auto;
    overflow-x: hidden;
}

.setup-content div[b-y4ze9xnb7f] {
    max-width: 500px;
}

.upper-wrapper[b-y4ze9xnb7f] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    width: 100%;
}

.level-selector[b-y4ze9xnb7f] {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 5px;
    gap: 5px;
    margin-top: 15px;

    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 7px 15px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(25px);
    border-radius: 20px;
}

.level-button[b-y4ze9xnb7f] {
    padding: 10px 24px;
    border-radius: 12px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: white;
    transition: 0.2s;
}

.level-button.active[b-y4ze9xnb7f] {
    background: #5050d8;
}

.character-info[b-y4ze9xnb7f] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
    padding: 0;
    gap: 15px;
    width: 100%;

    filter: drop-shadow(0px 1.5px 0px rgba(0, 0, 0, 0.55));
}

.character-name[b-y4ze9xnb7f] {
    margin: 0;
    font-weight: 400;
    font-size: 3rem;
    line-height: 3.75rem;
    letter-spacing: -0.02em;
}

.character-quote[b-y4ze9xnb7f] {
    margin: 0;
    font-weight: 400;
    font-size: 1.3rem;
    line-height: 1.6rem;
}

.character-description[b-y4ze9xnb7f] {
    margin: 0;
    font-size: .9rem;
}

.character-title[b-y4ze9xnb7f] {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 0px;
    gap: 1px;

    width: 500px;
    height: 87px;
    
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;

    font-family: 'Caveat Brush', cursive !important;
    font-weight: 400;
}

.arrow-button[b-y4ze9xnb7f] {
    font-family: 'Inter', sans-serif;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 50px;
    height: 50px;
    color: var(--powder-900);
    background: var(--powder-50);
    border-radius: 50px;
    font-size: 25px;
    font-weight: 800;
    padding: 0;
    margin: 0;
}

    .arrow-button:hover[b-y4ze9xnb7f] {
        transform: translateY(-50%) scale(1.05);
        background: var(--powder-50);
    }

    .arrow-button:active[b-y4ze9xnb7f] {
        transform: translateY(-50%) scale(.97);
        background: var(--powder-50);
    }

.left[b-y4ze9xnb7f] {
    left: 6%;
}

.right[b-y4ze9xnb7f] {
    right: 6%;
}

.character-image[b-y4ze9xnb7f] {
    position: absolute;
    height: 95vh;
    right: 0;
    bottom: 0;

    filter: drop-shadow(0px 0px 17px rgba(255, 255, 255, 0.05))
    drop-shadow(0px 0px 50px rgba(255, 255, 255, 0.05))
    drop-shadow(0px 0px 120px rgba(255, 255, 255, 0.05));

    flex: none;
    order: 4;
    flex-grow: 0;
    z-index: -1;
}

.character-shine[b-y4ze9xnb7f] {
    position: absolute;
    width: 460px;
    height: 100%;
    right: 0;

    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.1) 100%);
    mix-blend-mode: plus-lighter;
    opacity: 0.07;
    transform: skewX(-12deg) translateX(-35%);
    z-index: -5;
}

.continue-wrapper[b-y4ze9xnb7f] {
    position: fixed;
    right: 106px;
    bottom: 40px;
}
/* _content/Game/Components/Pages/GameBoard.razor.rz.scp.css */
.main-container[b-5gdfuwf2h2] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
    isolation: isolate;
    position: relative;
    background: linear-gradient(0deg, var(--slate-900) 0%, var(--slate-800) 100%);
    padding: 0;
    min-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.situation[b-5gdfuwf2h2] {
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: center;
    align-self: center;
    justify-content: center;
    gap: 15px;
    width: calc(100% - 250px);
    max-width: 1000px;
    margin-top: 65px;
    margin-bottom: 65px;
    padding: 0 125px 0 125px;
}

.situation-illustration[b-5gdfuwf2h2] {
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    opacity: 0.12;
}

.situation-text[b-5gdfuwf2h2] {
    display: flex;
    flex-direction: column;
    align-self: center;
    gap: 5px;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
    padding-left: 12px;
}

.title[b-5gdfuwf2h2] {
    width: 100%;
    text-align: left;
    font-weight: 900;
    font-size: 2em;
    letter-spacing: -0.02em;
    flex: none;
    align-self: stretch;
    flex-grow: 0;
}

.text[b-5gdfuwf2h2] {
    width: 100%;
    text-align: left;
    white-space: pre-line;
}

.continue-wrapper[b-5gdfuwf2h2] {
    position: fixed;
    right: 106px;
    bottom: 40px;
}

.choice-list[b-5gdfuwf2h2] {
    gap: 10px;
    width: 100%;
}

.conversation-list[b-5gdfuwf2h2] {
    display: flex;
    flex-direction: column;
}

    .conversation-list .choice-button[b-5gdfuwf2h2] {
        height: auto;
    }

.decision-list[b-5gdfuwf2h2] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-auto-rows: auto;
}

    .decision-list .choice-button[b-5gdfuwf2h2] {
        height: auto;
    }

.choice-button[b-5gdfuwf2h2] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 25px 17px;
    background: linear-gradient(180deg, var(--powder-900) 0%, var(--powder-800) 100%);
    border-width: 2px 2px 4px 2px;
    border-style: solid;
    border-color: var(--powder-900);
    box-shadow: 0px -2px 15px rgba(255, 255, 255, 0.05), 0px -5px 50px rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    width: 100%;
}

    .choice-button .shine[b-5gdfuwf2h2] {
        position: absolute;
        display: block;
        width: 105px;
        height: 100%;
        top: 50%;
        left: 50%;
        transform: translate(-20%, -50%) translate(12px, 0) skew(-12deg);
        z-index: 3;
        background: linear-gradient(0deg, rgba(255, 255, 255, 0), rgb(255, 255, 255));
        mix-blend-mode: plus-lighter;
        opacity: 0.1;
    }

    .choice-button:hover[b-5gdfuwf2h2] {
        background: linear-gradient(180deg, var(--powder-800) 0%, var(--powder-700) 100%);
        box-shadow: 0px -2px 15px rgba(255, 255, 255, 0.10), 0px -5px 50px rgba(255, 255, 255, 0.05);
        transform: scale(1.01);
    }


    .choice-button:disabled[b-5gdfuwf2h2] {
        background: rgba(248, 250, 249, 0.1);
        box-shadow: none;
        transform: scale(1);
        color: var(--powder-900);
        opacity: 1 !important;
        backdrop-filter: blur(12.5px);
        border-style: dashed;
        border-width: 2px;
    }

        .choice-button:disabled .shine[b-5gdfuwf2h2] {
            opacity: 0.01;
        }

        .choice-button:disabled:hover[b-5gdfuwf2h2] {
            background: rgba(248, 250, 249, 0.1);
            box-shadow: none;
            transform: scale(1);
            cursor: url(src/Cursors/cursor.svg), default;
        }

.choice-text[b-5gdfuwf2h2] {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    width: 100%;
}

.choice-button-container[b-5gdfuwf2h2] {
    display: flex;
    position: relative;
}

.link-button[b-5gdfuwf2h2] {
    display: flex;
    align-items: center;
    padding: 5px 8px 3px 10px;
    background: var(--powder-50);
    border: none;
    position: absolute;
    top: -12px;
    right: -12px;
    z-index: 10000;
    color: var(--powder-900);
    font-weight: 600;
    text-transform: uppercase;
    font-size: .9em;
    height: auto;
    font-family: 'Inter', sans-serif;
}

    .link-button:hover[b-5gdfuwf2h2] {
        background: var(--powder-100);
        transform: scale(1.02);
    }
/* _content/Game/Components/Pages/Home.razor.rz.scp.css */
.main-container[b-l4kh8whsif] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6.25vh;
    isolation: isolate;
    position: relative;
    background: linear-gradient(0deg, var(--slate-900) 0%, var(--slate-800) 100%);
    overflow-y: scroll;
}

.text-container-outer[b-l4kh8whsif] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6.25vh 40vw 6.25vh 10vw;

    flex: none;
    order: 2;
    align-self: stretch;
    flex-grow: 0;
    z-index: 2;
}

.text-container-inner[b-l4kh8whsif] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 35px;

    max-width: 650px;
    
    flex: none;
    order: 0;
    align-self: center;
    flex-grow: 0;
}

.home-character[b-l4kh8whsif] {
    position: fixed;
    height: 100vh;
    right: 0;
    bottom: 0;

    filter: drop-shadow(0px 0px 17px rgba(255, 255, 255, 0.05)) 
            drop-shadow(0px 0px 50px rgba(255, 255, 255, 0.05)) 
            drop-shadow(0px 0px 120px rgba(255, 255, 255, 0.05));

    flex: none;
    order: 4;
    flex-grow: 0;
    z-index: 1;
}

.home-background[b-l4kh8whsif] {
    position: fixed;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: -1;
    mix-blend-mode: multiply;
}
/* _content/Game/Components/Pages/Intro.razor.rz.scp.css */
.main-container[b-kozy3ga8fj] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
    isolation: isolate;
    position: relative;
    background: linear-gradient(0deg, var(--powder-600) 0%, var(--powder-700) 100%);
    overflow-y: scroll;
}

.mail-container[b-kozy3ga8fj] {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
    margin: auto;

    padding: 50px;
    background: var(--powder-800);
    width: 100%;
    max-width: 650px;

    border-width: 2px 2px 4px 2px;
    border-style: solid;
    border-color: var(--powder-50);
    box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.15), 0px -3px 15px rgba(255, 255, 255, 0.07), 0px -15px 50px rgba(255, 255, 255, 0.05);
    border-radius: 15px;

    flex: none;
    flex-grow: 0;
}

    .mail-container p[b-kozy3ga8fj] {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding: 0;
        gap: 35px;
        flex: none;
        order: 0;
        align-self: center;
        flex-grow: 0;
    }

.mail-body[b-kozy3ga8fj] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.continue-wrapper[b-kozy3ga8fj] {
    position: fixed;
    right: 106px;
    bottom: 40px;
}
/* _content/Game/Components/Pages/Leaderboard.razor.rz.scp.css */
.main-container[b-5q195rlw0j] {
    background: linear-gradient(0deg, var(--phthalo-900) 0%, var(--phthalo-800) 100%);
    transition: all 300ms ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 120px;
    gap: 100px;
    overflow-y: auto;
    overflow-x: hidden;
}

.summary[b-5q195rlw0j] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 15px;
    max-width: 1000px;
}

    .summary p[b-5q195rlw0j] {
        max-width: 650px;
        font-size: 18px;
        text-align: center;
    }

.ranking[b-5q195rlw0j] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 10px;
    gap: 5px;
    width: 500px;
    height: 385px;
}

.rank-chip[b-5q195rlw0j] {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px 15px 0px 0px;
    gap: 12px;
    height: 45px;
    background: var(--phthalo-800);
    border-width: 1px 1px 3px 1px;
    border-style: solid;
    border-color: var(--phthalo-900);
    border-radius: 15px;
    align-self: stretch;
    overflow: hidden;
    color: var(--phthalo-50);
    position: relative;
}

    .rank-chip .rank[b-5q195rlw0j] {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0px 0px 0px 2px;
        gap: 10px;
        width: 50px;
        height: 100%;
        background: var(--phthalo-900);
        font-size: 0.9em;
    }

    .rank-chip .username[b-5q195rlw0j] {
        font-weight: 500;
        font-size: 1.15em;
        flex-grow: 1;
    }

    .rank-chip .score[b-5q195rlw0j] {
        width: 34px;
        font-size: 0.9em;
        text-align: right;
        flex-grow: 0;
    }

.rank-shine[b-5q195rlw0j] {
    position: absolute;
    display: block;
    width: 55px;
    height: 100%;
    top: 0;
    right: 0;
    transform: translate(-25px, 0) skew(-12deg);
    z-index: 3;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0), rgb(255, 255, 255));
    mix-blend-mode: plus-lighter;
    opacity: 0.05;
}

.current-player[b-5q195rlw0j] {
    background: var(--phthalo-600);
    border-color: var(--phthalo-300);
    box-shadow: 0px 0px 25px #93C2D433, 0px 0px 55px #5A9CB411;
}

    .current-player .rank[b-5q195rlw0j] {
        background: var(--phthalo-700);
    }

    .current-player .rank-shine[b-5q195rlw0j] {
        opacity: 0.1;
    }

.first[b-5q195rlw0j] {
    background: var(--gold-400);
    border-color: var(--gold-200);
    color: var(--gold-50);
    box-shadow: 0px 0px 3px #F5EECFbb, 0px 0px 25px #F5EECF30, 0px 0px 55px #EEDB9522;
}

    .first .rank[b-5q195rlw0j] {
        background: var(--gold-500);
    }

    .first .rank-shine[b-5q195rlw0j] {
        opacity: 0.1;
    }

.stat-evaluation[b-5q195rlw0j] {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    margin-bottom: 350px;
    gap: 45px 15px;
    width: 100%;
    filter: drop-shadow(0px 12px 75px rgba(0, 0, 0, 0.15));
    flex: none;
    align-self: stretch;
    flex-grow: 0;
}

.evaluation-card[b-5q195rlw0j] {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 25px 20px;
    gap: 12px;
    flex: 0 0 auto;
    width: 400px;
    background: var(--phthalo-800);
    border-width: 1px 1px 3px 1px;
    border-style: solid;
    border-color: var(--phthalo-900);
    border-radius: 22px;
    position: relative;
    scroll-snap-align: start;
}

    .evaluation-card *[b-5q195rlw0j] {
        margin: 0;
    }

    .evaluation-card div[b-5q195rlw0j] {
        position: absolute;
        right: 20px;
        top: -17px;
        z-index: 2;
    }

        .evaluation-card div .shine[b-5q195rlw0j] {
            transform: translate(100%, 50%) skew(-12deg);
        }
/* _content/Game/Components/Pages/LeaderboardAdmin.razor.rz.scp.css */
.main-container[b-3yfbrovd00] {
    background: linear-gradient(0deg, var(--phthalo-900) 0%, var(--phthalo-800) 100%);
    transition: all 300ms ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 120px;
    gap: 50px;
    overflow-y: auto;
    overflow-x: hidden;
}

.summary[b-3yfbrovd00] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 15px;
    max-width: 1000px;
}

    .summary p[b-3yfbrovd00] {
        max-width: 650px;
        font-size: 18px;
        text-align: center;
    }

.ranking[b-3yfbrovd00] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 10px;
    gap: 5px;
    width: 500px;
    margin-bottom: 250px;
}

.rank-chip[b-3yfbrovd00] {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px 15px 0px 0px;
    gap: 12px;
    height: 45px;
    background: var(--phthalo-800);
    border-width: 1px 1px 3px 1px;
    border-style: solid;
    border-color: var(--phthalo-900);
    border-radius: 15px;
    align-self: stretch;
    overflow: hidden;
    color: var(--phthalo-50);
    position: relative;
}

    .rank-chip .rank[b-3yfbrovd00] {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0px 0px 0px 2px;
        gap: 10px;
        width: 50px;
        height: 100%;
        background: var(--phthalo-900);
        font-size: 0.9em;
    }

    .rank-chip .username[b-3yfbrovd00] {
        font-weight: 500;
        font-size: 1.15em;
        flex-grow: 1;
    }

    .rank-chip .score[b-3yfbrovd00] {
        width: 34px;
        font-size: 0.9em;
        text-align: right;
        flex-grow: 0;
    }

.rank-shine[b-3yfbrovd00] {
    position: absolute;
    display: block;
    width: 55px;
    height: 100%;
    top: 0;
    right: 0;
    transform: translate(-25px, 0) skew(-12deg);
    z-index: 3;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0), rgb(255, 255, 255));
    mix-blend-mode: plus-lighter;
    opacity: 0.05;
}

.first[b-3yfbrovd00] {
    background: var(--gold-400);
    border-color: var(--gold-200);
    color: var(--gold-50);
    box-shadow: 0px 0px 3px #F5EECFbb, 0px 0px 25px #F5EECF30, 0px 0px 55px #EEDB9522;
}

    .first .rank[b-3yfbrovd00] {
        background: var(--gold-500);
    }

    .first .rank-shine[b-3yfbrovd00] {
        opacity: 0.1;
    }
/* _content/Game/Components/Pages/Results.razor.rz.scp.css */
.main-container[b-691egkal8t] {
    background: linear-gradient(0deg, var(--phthalo-900) 0%, var(--phthalo-800) 100%);
    transition: all 300ms ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 120px;
    gap: 100px;
    overflow-y: auto;
    overflow-x: hidden;
}

.summary[b-691egkal8t] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 15px;
    max-width: 1000px;
}

    .summary p[b-691egkal8t] {
        max-width: 650px;
        font-size: 18px;
        text-align: center;
    }

.stat-evaluation[b-691egkal8t] {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    margin-bottom: 350px;
    gap: 45px 15px;
    width: 100%;
    filter: drop-shadow(0px 12px 75px rgba(0, 0, 0, 0.15));
    flex: none;
    align-self: stretch;
    flex-grow: 0;
}

.evaluation-card[b-691egkal8t] {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 25px 20px;
    gap: 12px;
    flex: 0 0 auto;
    width: 400px;
    background: var(--phthalo-800);
    border-width: 1px 1px 3px 1px;
    border-style: solid;
    border-color: var(--phthalo-900);
    border-radius: 22px;
    position: relative;
    scroll-snap-align: start;
}

    .evaluation-card *[b-691egkal8t] {
        margin: 0;
    }

    .evaluation-card div[b-691egkal8t] {
        position: absolute;
        right: 20px;
        top: -17px;
        z-index: 2;
    }

        .evaluation-card div .shine[b-691egkal8t] {
            transform: translate(100%, 50%) skew(-12deg);
        }

.continue-wrapper[b-691egkal8t] {
    position: fixed;
    right: 106px;
    bottom: 40px;
}
