/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-4wbghh4ztx] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #f8fafc;
}

.landing-header[b-4wbghh4ztx] {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(248, 250, 252, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e2e8f0;
}

.header-inner[b-4wbghh4ztx] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-link[b-4wbghh4ztx] {
    text-decoration: none;
    color: inherit;
}

.brand-inline[b-4wbghh4ztx] {
    text-align: center;
    line-height: 1;
}

.main-content[b-4wbghh4ztx] {
    flex: 1;
    width: 100%;
}

.footer[b-4wbghh4ztx] {
    background: #0f172a;
    color: #cbd5e1;
    padding: 2rem 1rem 1.25rem;
    margin-top: 2rem;
}

.footer-bottom-center[b-4wbghh4ztx] {
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom-center a[b-4wbghh4ztx] {
    color: #93c5fd;
    text-decoration: none;
}

.footer-bottom-center a:hover[b-4wbghh4ztx] {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .header-inner[b-4wbghh4ztx] {
        flex-direction: column;
        align-items: stretch;
    }

    .footer[b-4wbghh4ztx] {
        text-align: center;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-7h5t5536so],
.components-reconnect-repeated-attempt-visible[b-7h5t5536so],
.components-reconnect-failed-visible[b-7h5t5536so],
.components-pause-visible[b-7h5t5536so],
.components-resume-failed-visible[b-7h5t5536so],
.components-rejoining-animation[b-7h5t5536so] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-7h5t5536so],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-7h5t5536so],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-7h5t5536so],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-7h5t5536so],
#components-reconnect-modal.components-reconnect-retrying[b-7h5t5536so],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-7h5t5536so],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-7h5t5536so],
#components-reconnect-modal.components-reconnect-failed[b-7h5t5536so],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-7h5t5536so] {
    display: block;
}


#components-reconnect-modal[b-7h5t5536so] {
    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-7h5t5536so 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-7h5t5536so 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-7h5t5536so 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-7h5t5536so]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-7h5t5536so 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-7h5t5536so {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-7h5t5536so {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-7h5t5536so {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-7h5t5536so] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-7h5t5536so] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-7h5t5536so] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-7h5t5536so] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-7h5t5536so] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-7h5t5536so] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-7h5t5536so] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-7h5t5536so 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-7h5t5536so] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-7h5t5536so {
    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 */
.coming-soon-page[b-m7kx2mc2vs] {
    color: #0f172a;
}

.arca-badge[b-m7kx2mc2vs] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 0.4rem 1rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: #1e3a5f;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.arca-logo[b-m7kx2mc2vs] {
    height: 1.4rem;
    width: auto;
}

.hero-section[b-m7kx2mc2vs] {
    background: radial-gradient(circle at top, #dbeafe 0%, #f8fafc 55%);
    border-bottom: 1px solid #e2e8f0;
    padding: 2rem 0;
}

.hero-section h1[b-m7kx2mc2vs] {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-top: 1rem;
    margin-bottom: 0.75rem;
}

.hero-subtitle[b-m7kx2mc2vs] {
    max-width: 640px;
    margin: 0 auto;
    color: #334155;
    font-size: 1.15rem;
    line-height: 1.6;
}

.countdown-badge[b-m7kx2mc2vs] {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.6rem 1.4rem;
    background: #1d4ed8;
    color: #fff;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
}

.countdown-badge i[b-m7kx2mc2vs] {
    margin-right: 0.4rem;
}

.section-block[b-m7kx2mc2vs] {
    padding-top: 3rem;
}

.section-block h2[b-m7kx2mc2vs] {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    text-align: center;
}

.feature-grid[b-m7kx2mc2vs] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.feature-card[b-m7kx2mc2vs] {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.5rem 1.1rem;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
    text-align: center;
}

.feature-icon[b-m7kx2mc2vs] {
    font-size: 2rem;
    color: #1d4ed8;
    margin-bottom: 0.75rem;
}

.faq-list details[b-m7kx2mc2vs] {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.8rem 1rem;
    margin-bottom: 0.65rem;
}

.faq-list summary[b-m7kx2mc2vs] {
    cursor: pointer;
    font-weight: 700;
}

.faq-list p[b-m7kx2mc2vs] {
    margin-top: 0.65rem;
    color: #334155;
}

.final-cta[b-m7kx2mc2vs] {
    text-align: center;
    padding-bottom: 2rem;
}

.notify-form[b-m7kx2mc2vs] {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.notify-input[b-m7kx2mc2vs] {
    padding: 0.65rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    font-size: 1rem;
    width: 280px;
    outline: none;
}

.notify-input:focus[b-m7kx2mc2vs] {
    border-color: #1d4ed8;
    box-shadow: 0 0 0 2px rgba(29, 78, 216, 0.15);
}

.notify-btn[b-m7kx2mc2vs] {
    padding: 0.65rem 1.4rem;
    background: #1d4ed8;
    color: #fff;
    border: none;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
}

.notify-btn:hover[b-m7kx2mc2vs] {
    background: #1e40af;
}

.notify-message[b-m7kx2mc2vs] {
    margin-top: 0.75rem;
    color: #1d4ed8;
    font-weight: 600;
}

@media (max-width: 900px) {
    .feature-grid[b-m7kx2mc2vs] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Shared/BrandLogo.razor.rz.scp.css */
.brand-logo[b-ah6rkafnfn] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    letter-spacing: -1px;
    text-align: center;
}

.text-factur[b-ah6rkafnfn] {
    color: #004a99;
}

.text-at[b-ah6rkafnfn] {
    color: #ff6600;
    display: inline-block;
    animation: spin-y-b-ah6rkafnfn 2s linear infinite;
    transform-style: preserve-3d;
}

@keyframes spin-y-b-ah6rkafnfn {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

.text-control[b-ah6rkafnfn] {
    color: #004a99;
}
