/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* Layout principal */
.page-wrapper[b-37r7dm6i8p] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-37r7dm6i8p] {
    flex: 1;
}

/* Footer */
.site-footer[b-37r7dm6i8p] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2.5rem 1rem;
    margin-top: 4rem;
}

.footer-content[b-37r7dm6i8p] {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links[b-37r7dm6i8p] {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a[b-37r7dm6i8p] {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
}

.footer-links a:hover[b-37r7dm6i8p] {
    border-bottom-color: white;
}

.footer-copyright[b-37r7dm6i8p] {
    margin-top: 1rem;
    opacity: 0.9;
    font-size: 0.85rem;
}

.footer-copyright p[b-37r7dm6i8p] {
    margin: 0;
}

/* Responsive */
@media (max-width: 640px) {
    .site-footer[b-37r7dm6i8p] {
        padding: 2rem 1rem;
    }

    .footer-links[b-37r7dm6i8p] {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Blazor error UI */
#blazor-error-ui[b-37r7dm6i8p] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    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-37r7dm6i8p] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-vkuq8jd1x7],
.components-reconnect-repeated-attempt-visible[b-vkuq8jd1x7],
.components-reconnect-failed-visible[b-vkuq8jd1x7],
.components-pause-visible[b-vkuq8jd1x7],
.components-resume-failed-visible[b-vkuq8jd1x7],
.components-rejoining-animation[b-vkuq8jd1x7] {
    display: none;
}

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


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

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

@keyframes components-rejoining-animation-b-vkuq8jd1x7 {
    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/Store.razor.rz.scp.css */
.store-container[b-o9nyqz5nn4] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    font-family: system-ui, sans-serif;
}

.hero[b-o9nyqz5nn4] {
    text-align: center;
    padding: 3rem 0;
}

.logo[b-o9nyqz5nn4] {
    font-size: 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.slogan[b-o9nyqz5nn4] {
    font-size: 1.5rem;
    color: #666;
    font-style: italic;
}

.tagline[b-o9nyqz5nn4] {
    margin-top: 1rem;
    color: #888;
}

.pricing h2[b-o9nyqz5nn4], .testimonials h2[b-o9nyqz5nn4] {
    text-align: center;
    margin-bottom: 2rem;
}

.plans[b-o9nyqz5nn4] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.plan-card[b-o9nyqz5nn4] {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s;
}

    .plan-card:hover[b-o9nyqz5nn4] {
        transform: translateY(-5px);
    }

    .plan-card.popular[b-o9nyqz5nn4] {
        border: 3px solid #764ba2;
    }

.badge[b-o9nyqz5nn4] {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.plan-card h3[b-o9nyqz5nn4] {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.description[b-o9nyqz5nn4] {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.price[b-o9nyqz5nn4] {
    text-align: center;
    margin-bottom: 1.5rem;
}

.amount[b-o9nyqz5nn4] {
    font-size: 3rem;
    font-weight: bold;
    color: #333;
}

.period[b-o9nyqz5nn4] {
    color: #888;
}

.features[b-o9nyqz5nn4] {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

    .features li[b-o9nyqz5nn4] {
        padding: 0.5rem 0;
        border-bottom: 1px solid #eee;
    }

.btn-subscribe[b-o9nyqz5nn4] {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity 0.3s;
}

    .btn-subscribe:hover:not(:disabled)[b-o9nyqz5nn4] {
        opacity: 0.9;
    }

    .btn-subscribe:disabled[b-o9nyqz5nn4] {
        opacity: 0.5;
        cursor: not-allowed;
        background: #ccc;
    }

.testimonials[b-o9nyqz5nn4] {
    margin-top: 4rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 16px;
}

.quotes[b-o9nyqz5nn4] {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

blockquote[b-o9nyqz5nn4] {
    font-style: italic;
    color: #666;
    max-width: 300px;
}

.modal-overlay[b-o9nyqz5nn4] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal[b-o9nyqz5nn4] {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    z-index: 1001;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.disclaimer[b-o9nyqz5nn4] {
    color: #e74c3c;
    font-size: 0.9rem;
}

.btn-cancel[b-o9nyqz5nn4] {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: #eee;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}
