/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-05jhmhbwo7] {
    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-05jhmhbwo7] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Pages/Index.razor.rz.scp.css */
.container[b-9vjillu7dg] {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    width: 50%;
    margin: auto;
    padding: 2rem 0;
}

.title[b-9vjillu7dg] {
    font-size: 4rem;
    font-family: "Bitcount Prop Single", system-ui;
    color: var(--gold-color);
    font-weight: 300;
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, var(--gold-color), #fffacd, var(--gold-color));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine-b-9vjillu7dg 3s linear infinite;
    cursor: default;
}

@keyframes shine-b-9vjillu7dg {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}


.coin[b-9vjillu7dg] {
    position: absolute;
    top: -50px;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle at center, var(--gold-color) 60%, #B8860B 100%);
    border-radius: 50%;
    animation-name: fall-b-9vjillu7dg;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes fall-b-9vjillu7dg {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

.primary-button[b-9vjillu7dg] {
    width: 18rem;
}
/* /Components/Pages/Room.razor.rz.scp.css */
.room-container[b-pkh2gjbw2b] {
    height: 100%;
    padding: 1.25rem;
}

.user-name-box[b-pkh2gjbw2b] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
    justify-content: space-around;
    height: 100%;
    width: 30%;
    margin: auto;
}


.user-name-box-top[b-pkh2gjbw2b] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.user-name-box-bottom[b-pkh2gjbw2b] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.user-name-label[b-pkh2gjbw2b] {
    font-family: "Bitcount Prop Single", system-ui;
    font-size: 1.25rem;
    color: var(--gold-color);
    width: 100%;
}


.title[b-pkh2gjbw2b] {
    font-family: "Bitcount Prop Single", system-ui;
    font-size: 3.25rem;
    color: var(--gold-color);
    width: 100%;
}

.user-name-input[b-pkh2gjbw2b] {
    color: var(--black-bg);
    font-size: 1.25rem;
    padding: 0.75rem;
    border: none;
    border-radius: 0.25rem;
    display: flex;
    align-self: normal;
}

h3[b-pkh2gjbw2b], div[b-pkh2gjbw2b] {
    color: white
}

.room-users-container[b-pkh2gjbw2b] {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: 1.25rem;
}

.room-name-title[b-pkh2gjbw2b] {
    font-family: "Bitcount Prop Single", system-ui;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}

.room-players[b-pkh2gjbw2b] {
    height: 75%;
    display: flex;
    flex-direction: row;
    width: 80%;
    margin: auto;
    padding: 1rem 0;
    align-items: center;
    justify-content: center;
}

.revealed-card[b-pkh2gjbw2b] {
    width: 3rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #000000;
    border-radius: 0.25rem;
    margin: auto;
    font-size: 2rem;
}

.none-card[b-pkh2gjbw2b] {
    width: 3rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #000000;
    border-radius: 0.25rem;
    margin: auto;
    font-size: 2rem;
}

.chosen-card[b-pkh2gjbw2b] {
    width: 3rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #000000;
    border-radius: 0.25rem;
    margin: auto;
    font-size: 2rem;
}

.room-cards[b-pkh2gjbw2b] {
    flex-direction: row;
    align-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: calc(6 * 9rem);
    width: 100%;
    justify-content: center;
    margin: 0 auto;
}

.room-content[b-pkh2gjbw2b] {
    display: flex;
    flex-direction: row;
    gap: 2.25rem;
    align-items: center;
    justify-content: space-around;
    height: 100%;
    width: 100%;
}

.table-base[b-pkh2gjbw2b] {
    width: 80%;
    margin: auto;
    border-radius: 1.25rem;
}

.table[b-pkh2gjbw2b] {
    padding: 1.25rem;
    margin: 2rem;
    gap: 1.25rem;
    display: flex;
    flex-direction: column;
    border-radius: 1.25rem;
}

.card[b-pkh2gjbw2b] {
    font-size: 2.25rem;
    position: relative;
    width: 6rem;
    color: var(--black-bg);
    height: 8rem;
    border-radius: 0.75rem;
    border: none;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    font-family: 'Bitcount Prop Single', system-ui;
}

.card[b-pkh2gjbw2b]::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 215, 0, 0.2);
    pointer-events: none;
    border-radius: 0.75rem;
}

.card:hover[b-pkh2gjbw2b] {
    border: 1px solid var(--gold-color);
}

.card.selected[b-pkh2gjbw2b] {
    border: 1px solid var(--gold-color);
    color: var(--black-bg);
}

.black[b-pkh2gjbw2b] {
    box-shadow: inset 8px 8px 6px rgb(0, 0, 0),
    inset -8px 8px 6px rgb(0, 0, 0),
    inset 8px -8px 6px rgb(0, 0, 0),
    inset -8px -8px 6px rgb(0, 0, 0);
}

.red[b-pkh2gjbw2b] {
    box-shadow: inset 8px 8px 6px rgb(255, 0, 0),
    inset -8px 8px 6px rgb(255, 0, 0),
    inset 8px -8px 6px rgb(255, 0, 0),
    inset -8px -8px 6px rgb(255, 0, 0);
}

.pink[b-pkh2gjbw2b] {
    box-shadow: inset 8px 8px 6px rgb(255, 139, 230),
    inset -8px 8px 6px rgb(255, 139, 230),
    inset 8px -8px 6px rgb(255, 139, 230),
    inset -8px -8px 6px rgb(255, 139, 230);
}

.green[b-pkh2gjbw2b] {
    box-shadow: inset 8px 8px 6px rgb(47, 184, 51),
    inset -8px 8px 6px rgb(47, 184, 51),
    inset 8px -8px 6px rgb(47, 184, 51),
    inset -8px -8px 6px rgb(47, 184, 51);
}

.blue[b-pkh2gjbw2b] {
    box-shadow: inset 8px 8px 6px rgb(20, 56, 221),
    inset -8px 8px 6px rgb(20, 56, 221),
    inset 8px -8px 6px rgb(20, 56, 221),
    inset -8px -8px 6px rgb(20, 56, 221);
}


.actions[b-pkh2gjbw2b] {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    border-top: 1px solid #fff;
    padding: 0.75rem 0;
}

.action-button[b-pkh2gjbw2b] {
    display: flex;
    align-items: center;
    border-radius: 0.75rem;
    justify-content: center;
    height: 2.25rem;
    background-color: var(--gold-color);
    color: var(--black-bg);
    font-size: 1.25rem;
    border: 1px solid var(--gold-color);
}

.delete[b-pkh2gjbw2b] {
    width: 3.25rem;
    height: 3.25rem;
    color: var(--danger);
    cursor: pointer;
}

.share[b-pkh2gjbw2b] {
    width: 2.25rem;
    height: 2.25rem;
    color: var(--blue);
    cursor: pointer;
}

.reveal[b-pkh2gjbw2b] {
    height: 3.25rem;
    cursor: pointer;
    background-repeat: no-repeat;
    background-size: cover;
}

.action-button:hover[b-pkh2gjbw2b] {
    background-color: var(--black-bg);
}

.reveal:hover[b-pkh2gjbw2b] {
    color: var(--gold-color);
}

.tooltip[b-pkh2gjbw2b] {
    position: absolute;
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    font-size: 0.9rem;
    left: 66%;
    white-space: nowrap;
    z-index: 1000;
    border-radius: 0.75rem
}

.rotating-coin[b-pkh2gjbw2b] {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
    animation: spin-b-pkh2gjbw2b 2s linear infinite;
}

@keyframes spin-b-pkh2gjbw2b {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(360deg);
    }
}

.modal-backdrop[b-pkh2gjbw2b] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content[b-pkh2gjbw2b] {
    background: var(--black-bg);
    padding: 20px;
    width: 50%;
    height: 50%;
    border: 1px solid var(--gold-color);
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

table[b-pkh2gjbw2b] {
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 5px 5px 6px #0003,
    0 8px 10px 1px #00000024,
    0 3px 14px 2px #0000001f;
}

table[b-pkh2gjbw2b], th[b-pkh2gjbw2b], td[b-pkh2gjbw2b] {
    border: 1px solid black;
}

th[b-pkh2gjbw2b], td[b-pkh2gjbw2b] {
    border-color: black;
    text-align: center;
}

th[b-pkh2gjbw2b] {
    color: black;
}

th[b-pkh2gjbw2b], td[b-pkh2gjbw2b] {
    background-color: #d0ef942e;
}


td[b-pkh2gjbw2b] {
    padding: 8px 12px;
    border-bottom: 1px solid black;
}

.player-card-name[b-pkh2gjbw2b] {
    color: black;
    font-weight: bold;
}


.disabled[b-pkh2gjbw2b] {
    opacity: 0.5;
    pointer-events: none;
}

.error-message[b-pkh2gjbw2b] {
    color: #ff0404;
    font-size: 1.25rem;
}
/* /Components/Shared/Loader.razor.rz.scp.css */
.loader[b-ls31clj6a0] {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.box[b-ls31clj6a0] {
    margin: auto;
    width: 50%;
    height: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    color: var(--gold-color);
    font-size: 2rem;
    font-family: "Bitcount Prop Single", system-ui;
}

.card-box[b-ls31clj6a0] {
    width: 50%;
    height: 200px;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
}

.card[b-ls31clj6a0] {
    width: 35px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.card.a[b-ls31clj6a0] {
    animation: animA-b-ls31clj6a0 4s ease-in-out infinite;
}

@keyframes animA-b-ls31clj6a0 {
    0%   { transform: translate(calc(-50% - 150px), -50%); }
    15%  { transform: translate(-50%, -50%); }
    25%  { transform: translate(-50%, -50%); }
    100% { transform: translate(-50%, -50%); }
}

.card.b[b-ls31clj6a0] {
    animation: animB-b-ls31clj6a0 4s ease-in-out infinite;
}

@keyframes animB-b-ls31clj6a0 {
    0%   { transform: translate(calc(-50% + 150px), -50%); }
    15%  { transform: translate(-50%, -50%); }
    25%  { transform: translate(calc(-50% - 5px), -50%) rotate(-25deg); }
    100% { transform: translate(-50%, -50%); }
}

.card.c[b-ls31clj6a0] {
    animation: animC-b-ls31clj6a0 4s ease-in-out infinite;
}

@keyframes animC-b-ls31clj6a0 {
    0%   { transform: translate(-50%, calc(-50% - 150px)); }
    15%  { transform: translate(-50%, -50%); }
    25%  { transform: translate(-50%, -50%) rotate(25deg); }
    100% { transform: translate(-50%, -50%); }
}

.a[b-ls31clj6a0] {
    box-shadow: inset 4px 4px 6px rgba(0, 150, 255, 1),
    inset -4px 4px 6px rgba(0, 150, 255, 1),
    inset 4px -4px 6px rgba(0, 150, 255, 1),
    inset -4px -4px 6px rgba(0, 150, 255, 1);
}

.b[b-ls31clj6a0] {
    box-shadow: inset 4px 4px 6px rgb(255, 0, 47),
    inset -4px 4px 6px rgb(255, 0, 47),
    inset 4px -4px 6px rgb(255, 0, 47),
    inset -4px -4px 6px rgb(255, 0, 47);
}

.c[b-ls31clj6a0] {
    box-shadow: inset 4px 4px 6px rgb(123, 255, 0),
    inset -4px 4px 6px rgb(123, 255, 0),
    inset 4px -4px 6px rgb(123, 255, 0),
    inset -4px -4px 6px rgb(123, 255, 0);
}
/* /Components/Shared/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-g7fbsd8we6],
.components-reconnect-repeated-attempt-visible[b-g7fbsd8we6],
.components-reconnect-failed-visible[b-g7fbsd8we6],
.components-pause-visible[b-g7fbsd8we6],
.components-resume-failed-visible[b-g7fbsd8we6],
.components-rejoining-animation[b-g7fbsd8we6] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-g7fbsd8we6],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-g7fbsd8we6],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-g7fbsd8we6],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-g7fbsd8we6],
#components-reconnect-modal.components-reconnect-retrying[b-g7fbsd8we6],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-g7fbsd8we6],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-g7fbsd8we6],
#components-reconnect-modal.components-reconnect-failed[b-g7fbsd8we6],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-g7fbsd8we6] {
    display: block;
}


#components-reconnect-modal[b-g7fbsd8we6] {
    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-g7fbsd8we6 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-g7fbsd8we6 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-g7fbsd8we6 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-g7fbsd8we6]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-g7fbsd8we6 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-g7fbsd8we6 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-g7fbsd8we6 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-g7fbsd8we6 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-g7fbsd8we6] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-g7fbsd8we6] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-g7fbsd8we6] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-g7fbsd8we6] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-g7fbsd8we6] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-g7fbsd8we6] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-g7fbsd8we6] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-g7fbsd8we6 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-g7fbsd8we6] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-g7fbsd8we6 {
    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/Shared/ToastContainer.razor.rz.scp.css */
.toast-container[b-la6cskq49j] {
    position: fixed;
    right: 16px;
    top: 16px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 360px;
    font-family: monospace;
}

.toast[b-la6cskq49j] {
    cursor: pointer;
    padding: 12px 14px;
    border-radius: 10px;
    background: #222;
    color: #fff;
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
    border-left: 6px solid #6aa9ff;
}

.toast-title[b-la6cskq49j] {
    font-weight: 700;
    margin-bottom: 4px;
}

.toast-message[b-la6cskq49j] {
    opacity: 0.9;
    line-height: 1.3;
}

.toast-info[b-la6cskq49j] { border-left-color: #6aa9ff; }
.toast-success[b-la6cskq49j] { border-left-color: #3ddc97; }
.toast-warning[b-la6cskq49j] { border-left-color: #ffcc66; }
.toast-error[b-la6cskq49j] { border-left-color: #ff6b6b; }
