/* /Components/JahCharacter.razor.rz.scp.css */
.jah-wrapper[b-7em5ayu196] {
    position: relative;
    width: 200px;
    height: 250px;
    margin: 2rem auto;
}

.jah-svg[b-7em5ayu196] {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.jah-active[b-7em5ayu196] {
    animation: jahBob-b-7em5ayu196 1.5s ease-in-out infinite;
}

@keyframes jahBob-b-7em5ayu196 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-3px) rotate(-1deg); }
    75% { transform: translateY(-3px) rotate(1deg); }
}

.jah-smoke[b-7em5ayu196] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.smoke-puff[b-7em5ayu196] {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(200,200,200,0.6) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.smoke-puff.active[b-7em5ayu196] {
    animation: smokeRise-b-7em5ayu196 2s ease-out forwards infinite;
}

@keyframes smokeRise-b-7em5ayu196 {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-40px) scale(1.8) translateX(10px);
        opacity: 0.3;
    }
    100% {
        transform: translateY(-80px) scale(2.5) translateX(-5px);
        opacity: 0;
    }
}

.pipe[b-7em5ayu196] {
    transform-origin: 165px 115px;
}

.toss-arm[b-7em5ayu196] {
    transform-origin: 65px 140px;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.jpisn-page[b-90gk1v0eve] {
    min-height: 100vh;
    background: linear-gradient(180deg, #1a1a2e 0%, #0d0d1a 100%);
    color: #FFD700;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

.jpisn-page[b-90gk1v0eve]::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #CC0000 33%, #FFD700 33% 66%, #009B3A 66%);
    z-index: 100;
}

#blazor-error-ui[b-90gk1v0eve] {
    background: #CC0000;
    color: white;
    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-90gk1v0eve] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-w9yl7ncg2d],
.components-reconnect-repeated-attempt-visible[b-w9yl7ncg2d],
.components-reconnect-failed-visible[b-w9yl7ncg2d],
.components-pause-visible[b-w9yl7ncg2d],
.components-resume-failed-visible[b-w9yl7ncg2d],
.components-rejoining-animation[b-w9yl7ncg2d] {
    display: none;
}

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


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

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

@keyframes components-rejoining-animation-b-w9yl7ncg2d {
    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/Home.razor.rz.scp.css */
.jpisn-container[b-0qxbi63lts] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem 1rem;
    gap: 1.5rem;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.jpisn-header[b-0qxbi63lts] {
    text-align: center;
    margin-top: 2rem;
}

.title[b-0qxbi63lts] {
    font-size: 2.8rem;
    color: var(--rasta-gold);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    margin: 0;
    letter-spacing: 3px;
}

.subtitle[b-0qxbi63lts] {
    color: var(--rasta-green);
    font-size: 1.1rem;
    margin-top: 0.5rem;
    opacity: 0.8;
    font-style: italic;
}

.jah-container[b-0qxbi63lts] {
    position: relative;
    margin-top: 1rem;
}

.meditation-text[b-0qxbi63lts] {
    color: var(--rasta-green);
    font-size: 0.95rem;
    text-align: center;
    opacity: 0.9;
    font-style: italic;
    margin: 0;
}

.jpisn-footer[b-0qxbi63lts] {
    margin-top: auto;
    padding: 2rem;
    text-align: center;
    color: rgba(255, 215, 0, 0.4);
    font-size: 0.85rem;
}

@media (max-width: 600px) {
    .title[b-0qxbi63lts] {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .subtitle[b-0qxbi63lts] {
        font-size: 0.9rem;
    }

    .jpisn-container[b-0qxbi63lts] {
        padding: 1rem 0.5rem;
        gap: 1rem;
    }
}
