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

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


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

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

@keyframes components-rejoining-animation-b-ey3s8d2f8t {
    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/Landing.razor.rz.scp.css */
/* ═══════════════════════════════════════════════
   Lively Landing Page — Scoped Styles
   Palette: bg #141317 · accent #e3c291 · text #f5f0e8
   Font: Manrope
═══════════════════════════════════════════════ */

/* ─── Root ─── */
.lp-root[b-bqaly5std4] {
    background-color: #141317;
    color: #f5f0e8;
    font-family: 'Manrope', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ─── Header ─── */
.lp-header[b-bqaly5std4] {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(20, 19, 23, 0.80);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(227, 194, 145, 0.12);
}

.lp-header-inner[b-bqaly5std4] {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-logo[b-bqaly5std4] {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #e3c291;
}

.lp-lang-toggle[b-bqaly5std4] {
    display: flex;
    gap: 0.25rem;
    background: rgba(255,255,255,0.06);
    border-radius: 100px;
    padding: 0.2rem;
}

.lp-lang-btn[b-bqaly5std4] {
    background: transparent;
    border: none;
    color: rgba(245,240,232,0.5);
    font-family: 'Manrope', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.lp-lang-btn--active[b-bqaly5std4] {
    background: #e3c291;
    color: #141317;
}

.lp-lang-btn:not(.lp-lang-btn--active):hover[b-bqaly5std4] {
    color: #f5f0e8;
    background: rgba(255,255,255,0.08);
}

/* ─── Orbs ─── */
.lp-orb[b-bqaly5std4] {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.35;
}

.lp-orb-1[b-bqaly5std4] {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #e3c291 0%, transparent 70%);
    top: -160px;
    left: 50%;
    transform: translateX(-50%);
    animation: orb-pulse-b-bqaly5std4 8s ease-in-out infinite alternate;
}

.lp-orb-2[b-bqaly5std4] {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #c47d3a 0%, transparent 70%);
    bottom: 40px;
    right: 10%;
    opacity: 0.18;
    animation: orb-pulse-b-bqaly5std4 10s ease-in-out 2s infinite alternate;
}

.lp-orb-3[b-bqaly5std4] {
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, #e3c291 0%, transparent 70%);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.2;
}

@keyframes orb-pulse-b-bqaly5std4 {
    from { transform: translateX(-50%) scale(1); opacity: 0.35; }
    to   { transform: translateX(-50%) scale(1.15); opacity: 0.25; }
}

/* ─── Hero ─── */
.lp-hero[b-bqaly5std4] {
    position: relative;
    text-align: center;
    padding: 7rem 1.5rem 6rem;
    overflow: hidden;
}

.lp-hero-content[b-bqaly5std4] {
    position: relative;
    z-index: 1;
    max-width: 740px;
    margin: 0 auto;
}

.lp-hero-eyebrow[b-bqaly5std4] {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #e3c291;
    margin-bottom: 1.25rem;
    opacity: 0.9;
}

.lp-hero-title[b-bqaly5std4] {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    margin: 0 0 1.5rem;
    background: linear-gradient(135deg, #f5f0e8 30%, #e3c291 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-hero-subtitle[b-bqaly5std4] {
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(245,240,232,0.7);
    max-width: 560px;
    margin: 0 auto 3rem;
}

/* ─── Store Buttons ─── */
.lp-store-buttons[b-bqaly5std4] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.lp-store-btn[b-bqaly5std4] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 14px;
    border: 1.5px solid rgba(227,194,145,0.35);
    background: rgba(227,194,145,0.08);
    color: #f5f0e8;
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
    cursor: default;
}

.lp-store-btn:hover[b-bqaly5std4] {
    background: rgba(227,194,145,0.15);
    border-color: rgba(227,194,145,0.6);
    transform: translateY(-2px);
}

.lp-store-btn span[b-bqaly5std4] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.lp-store-btn small[b-bqaly5std4] {
    font-size: 0.68rem;
    opacity: 0.65;
    letter-spacing: 0.03em;
}

.lp-store-btn strong[b-bqaly5std4] {
    font-size: 1rem;
    font-weight: 700;
}

.lp-store-icon[b-bqaly5std4] {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #e3c291;
}

/* ─── Feature Sections ─── */
.lp-feature[b-bqaly5std4] {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lp-feature + .lp-feature[b-bqaly5std4] {
    border-top: 1px solid rgba(227,194,145,0.08);
}

.lp-feature--right[b-bqaly5std4] {
    /* phone on left, text on right — already in markup order */
}

.lp-feature-tag[b-bqaly5std4] {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #e3c291;
    background: rgba(227,194,145,0.1);
    border: 1px solid rgba(227,194,145,0.25);
    border-radius: 100px;
    padding: 0.25rem 0.85rem;
    margin-bottom: 1.25rem;
}

.lp-feature-title[b-bqaly5std4] {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin: 0 0 1rem;
    color: #f5f0e8;
}

.lp-feature-body[b-bqaly5std4] {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(245,240,232,0.65);
    margin: 0 0 1.5rem;
}

.lp-feature-bullets[b-bqaly5std4] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.lp-feature-bullets li[b-bqaly5std4] {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(245,240,232,0.85);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

/* ─── Phone Frame ─── */
.lp-phone-wrap[b-bqaly5std4] {
    display: flex;
    justify-content: center;
}

.lp-phone-frame[b-bqaly5std4] {
    position: relative;
    width: 220px;
    border-radius: 40px;
    border: 2.5px solid rgba(227,194,145,0.35);
    background: #0d0c10;
    box-shadow:
        0 0 0 6px rgba(20,19,23,0.9),
        0 0 0 8px rgba(227,194,145,0.12),
        0 40px 80px rgba(0,0,0,0.7),
        0 0 60px rgba(227,194,145,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lp-phone-frame:hover[b-bqaly5std4] {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow:
        0 0 0 6px rgba(20,19,23,0.9),
        0 0 0 8px rgba(227,194,145,0.2),
        0 60px 100px rgba(0,0,0,0.8),
        0 0 80px rgba(227,194,145,0.12);
}

.lp-phone-screen[b-bqaly5std4] {
    display: block;
    width: 100%;
    height: auto;
}

/* ─── CTA Section ─── */
.lp-cta[b-bqaly5std4] {
    position: relative;
    text-align: center;
    padding: 7rem 1.5rem;
    overflow: hidden;
    border-top: 1px solid rgba(227,194,145,0.08);
}

.lp-cta-title[b-bqaly5std4] {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin: 0 0 1rem;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #f5f0e8 30%, #e3c291 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-cta-sub[b-bqaly5std4] {
    font-size: 1.05rem;
    color: rgba(245,240,232,0.6);
    margin: 0 auto 2.5rem;
    max-width: 480px;
    position: relative;
    z-index: 1;
}

/* ─── Footer ─── */
.lp-footer[b-bqaly5std4] {
    text-align: center;
    padding: 2rem 1.5rem;
    border-top: 1px solid rgba(227,194,145,0.08);
    font-size: 0.85rem;
    color: rgba(245,240,232,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.lp-footer-logo[b-bqaly5std4] {
    font-weight: 800;
    color: rgba(227,194,145,0.5);
}

.lp-footer-sep[b-bqaly5std4] {
    opacity: 0.3;
}

/* ─── Stats Tiles ─── */
.lp-stats-section[b-bqaly5std4] {
    padding: 2rem 1.5rem;
    position: relative;
    z-index: 2;
    margin-top: -3rem;
    margin-bottom: 3rem;
}

.lp-stats-container[b-bqaly5std4] {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.lp-stat-tile[b-bqaly5std4] {
    background: rgba(227, 194, 145, 0.08);
    border: 1px solid rgba(227, 194, 145, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.2s, background 0.2s;
}

.lp-stat-tile:hover[b-bqaly5std4] {
    transform: translateY(-4px);
    background: rgba(227, 194, 145, 0.12);
}

.lp-stat-value[b-bqaly5std4] {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    color: #f5f0e8;
    margin-bottom: 0.25rem;
    letter-spacing: -1px;
}

.lp-stat-label[b-bqaly5std4] {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(245, 240, 232, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .lp-stats-container[b-bqaly5std4] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .lp-feature[b-bqaly5std4] {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 4rem 1.5rem;
    }

    .lp-feature--right .lp-phone-wrap[b-bqaly5std4] {
        order: -1;
    }

    .lp-feature-title[b-bqaly5std4] {
        text-align: center;
    }

    .lp-feature-body[b-bqaly5std4] {
        text-align: center;
    }

    .lp-feature-tag[b-bqaly5std4] {
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1rem;
    }

    .lp-feature-bullets[b-bqaly5std4] {
        align-items: center;
    }
}
