/* /Components/Landing/LiveForecastPanel.razor.rz.scp.css */
.live-forecast[b-pgtoe1gt7w] {
    height: 100%;
}

.live-forecast__meta[b-pgtoe1gt7w] {
    margin: 0 0 0.85rem;
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
}

.live-forecast__meta--muted[b-pgtoe1gt7w] {
    color: var(--text-muted);
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.02em;
}

.live-forecast__viewport[b-pgtoe1gt7w] {
    position: relative;
    height: min(22rem, 52vh);
    overflow: hidden;
    mask-image: linear-gradient(
        180deg,
        transparent 0%,
        #000 10%,
        #000 90%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        180deg,
        transparent 0%,
        #000 10%,
        #000 90%,
        transparent 100%
    );
}

.live-forecast__track[b-pgtoe1gt7w] {
    animation: forecast-scroll-b-pgtoe1gt7w var(--scroll-duration, 80s) linear infinite;
}

.live-forecast__viewport:hover .live-forecast__track[b-pgtoe1gt7w] {
    animation-play-state: paused;
}

.live-forecast__track p[b-pgtoe1gt7w] {
    margin: 0 0 0.95rem;
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.94rem;
    line-height: 1.7;
    color: rgba(216, 216, 216, 0.62);
}

.live-forecast__track p:last-child[b-pgtoe1gt7w] {
    margin-bottom: 0;
}

@keyframes forecast-scroll-b-pgtoe1gt7w {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-50%);
    }
}

@media (max-width: 900px) {
    .live-forecast__viewport[b-pgtoe1gt7w] {
        height: 14rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .live-forecast__viewport[b-pgtoe1gt7w] {
        height: auto;
        max-height: 18rem;
        overflow-y: auto;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .live-forecast__track[b-pgtoe1gt7w] {
        animation: none;
    }

    .live-forecast__track p[aria-hidden="true"][b-pgtoe1gt7w] {
        display: none;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-hgh309jxo2] {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    min-height: 100vh; /* fallback для старых браузеров */
}

main[b-hgh309jxo2] {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.site-footer[b-hgh309jxo2] {
    text-align: center;
    padding: 0.75rem;
    height: 3rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-footer a[b-hgh309jxo2] {
    color: rgba(255, 255, 255, 0.35);
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.75rem;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: color 0.2s;
}

.site-footer a:hover[b-hgh309jxo2] {
    color: rgba(255, 255, 255, 0.65);
}

/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-gs4zsqew77],
.components-reconnect-repeated-attempt-visible[b-gs4zsqew77],
.components-reconnect-failed-visible[b-gs4zsqew77],
.components-pause-visible[b-gs4zsqew77],
.components-resume-failed-visible[b-gs4zsqew77],
.components-rejoining-animation[b-gs4zsqew77] {
    display: none;
}

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


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

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

@keyframes components-rejoining-animation-b-gs4zsqew77 {
    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/Error.razor.rz.scp.css */
.notfound-wrapper[b-gumzv9e7cy] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.notfound-card[b-gumzv9e7cy] {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    max-width: 720px;
    width: 100%;
    padding: 2rem 1.5rem;
    text-align: center;
}

.notfound-code[b-gumzv9e7cy] {
    color: rgba(255, 255, 255, 0.2);
    font-family: 'Segoe UI', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    line-height: 1;
}

.notfound-message[b-gumzv9e7cy] {
    color: #d8d8d8;
    font-family: 'Segoe UI', sans-serif;
    font-size: 1rem;
    margin: 0;
}
/* /Components/Pages/Home.razor.rz.scp.css */
.landing[b-squmhlksis] {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-inner[b-squmhlksis] {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.25rem;
    box-sizing: border-box;
}

.section-inner--stage[b-squmhlksis] {
    max-width: 1080px;
}

.stage[b-squmhlksis] {
    padding: 2.5rem 0 3.5rem;
}

.stage__grid[b-squmhlksis] {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 1.5rem 2rem;
    align-items: center;
}

.stage__atom[b-squmhlksis],
.stage__discussions[b-squmhlksis] {
    display: flex;
    align-items: center;
    min-width: 0;
}

.stage__atom[b-squmhlksis] {
    justify-content: center;
}

.products__error[b-squmhlksis] {
    margin: 0.75rem 0 0;
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    color: var(--error);
}

.products__atom-host[b-squmhlksis] {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .stage__grid[b-squmhlksis] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .products__atom-host[b-squmhlksis] {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .stage[b-squmhlksis] {
        padding: 1.5rem 0 2.5rem;
    }
}
/* /Components/Pages/NotFound.razor.rz.scp.css */
.notfound-wrapper[b-r6y14njbpw] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.notfound-card[b-r6y14njbpw] {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    max-width: 720px;
    width: 100%;
    padding: 2rem 1.5rem;
    text-align: center;
}

.notfound-code[b-r6y14njbpw] {
    color: rgba(255, 255, 255, 0.2);
    font-family: 'Segoe UI', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    line-height: 1;
}

.notfound-message[b-r6y14njbpw] {
    color: #d8d8d8;
    font-family: 'Segoe UI', sans-serif;
    font-size: 1rem;
    margin: 0 0 1.25rem 0;
}

.notfound-url[b-r6y14njbpw] {
    color: rgba(255, 255, 255, 0.35);
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    margin: 0;
    word-break: break-all;
}

