/* /Components/ChatAssistant.razor.rz.scp.css */
.chat-widget[b-7mu4dgsdlc] {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1050;
    font-family: inherit;
}

[b-7mu4dgsdlc] .chat-toggle-btn.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0);
}

[b-7mu4dgsdlc] .chat-panel {
    position: absolute !important;
    bottom: 0;
    right: 0;
    width: 380px !important;
    height: 600px !important;
    max-height: calc(100dvh - 3rem);
    background: white;
    border-radius: 1rem !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    animation: chat-slide-up-b-7mu4dgsdlc 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes chat-slide-up-b-7mu4dgsdlc {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.chat-header[b-7mu4dgsdlc] {
    background: linear-gradient(135deg, #0a0a0a, #e11d2e);
    color: white;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.chat-status-dot[b-7mu4dgsdlc] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.3);
    display: inline-block;
}

.chat-messages[b-7mu4dgsdlc] {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #fafafa;
}

.chat-message[b-7mu4dgsdlc] {
    display: flex;
    gap: 0.5rem;
    max-width: 85%;
    animation: chat-fade-in-b-7mu4dgsdlc 0.25s ease;
}

@keyframes chat-fade-in-b-7mu4dgsdlc {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-message-user[b-7mu4dgsdlc] {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.chat-message-assistant[b-7mu4dgsdlc] {
    align-self: flex-start;
}

[b-7mu4dgsdlc] .chat-message-avatar {
    background: linear-gradient(135deg, #e11d2e, #a10b1a) !important;
    color: white !important;
    align-self: flex-end;
}

[b-7mu4dgsdlc] .chat-message-bubble {
    padding: 0.65rem 0.9rem !important;
    border-radius: 1rem !important;
    font-size: 0.9rem;
    line-height: 1.45;
    word-wrap: break-word;
}

.chat-message-user[b-7mu4dgsdlc]  .chat-message-bubble {
    background: #e11d2e !important;
    color: white !important;
    border-bottom-right-radius: 0.25rem !important;
}

.chat-message-assistant[b-7mu4dgsdlc]  .chat-message-bubble {
    background: white !important;
    color: #0a0a0a;
    border: 1px solid #e5e5e5;
    border-bottom-left-radius: 0.25rem !important;
}

.chat-message-time[b-7mu4dgsdlc] {
    font-size: 0.65rem;
    opacity: 0.6;
    margin-top: 0.35rem;
    font-weight: 500;
}

.chat-message-user .chat-message-time[b-7mu4dgsdlc] {
    text-align: right;
}

.chat-typing[b-7mu4dgsdlc] {
    display: flex !important;
    gap: 4px;
    padding: 0.9rem 1rem !important;
}

.chat-typing span[b-7mu4dgsdlc] {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #9ca3af;
    animation: chat-typing-bounce-b-7mu4dgsdlc 1.3s infinite;
}

.chat-typing span:nth-child(2)[b-7mu4dgsdlc] { animation-delay: 0.15s; }
.chat-typing span:nth-child(3)[b-7mu4dgsdlc] { animation-delay: 0.3s; }

@keyframes chat-typing-bounce-b-7mu4dgsdlc {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-6px); opacity: 1; }
}

.chat-suggestions[b-7mu4dgsdlc] {
    padding: 0 1.25rem 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    background: #fafafa;
}

[b-7mu4dgsdlc] .chat-suggestions-label {
    width: 100%;
    color: #6b7280 !important;
    font-weight: 600 !important;
    margin: 0 0 0.25rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.chat-input[b-7mu4dgsdlc] {
    padding: 0.75rem;
    border-top: 1px solid #e5e5e5;
    display: flex;
    gap: 0.5rem;
    background: white;
    flex-shrink: 0;
    align-items: center;
}

.chat-input[b-7mu4dgsdlc]  .mud-input-control,
.chat-input[b-7mu4dgsdlc]  .mud-input-slot {
    flex: 1;
    min-width: 0;
}

.chat-input[b-7mu4dgsdlc]  .mud-input-slot input {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 640px) {
    .chat-widget[b-7mu4dgsdlc] {
        bottom: 0.75rem;
        right: 0.75rem;
    }

    .chat-widget.open[b-7mu4dgsdlc] {
        top: calc(64px + 0.5rem);
        left: 0.75rem;
        bottom: 0.75rem;
        right: 0.75rem;
    }

    [b-7mu4dgsdlc] .chat-panel {
        width: 100% !important;
        height: 100% !important;
        max-height: none;
        bottom: auto;
        right: auto;
        top: 0;
        left: 0;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* Scoped to MainLayout: keep footer pinned to the bottom on short pages.
   MudMainContent has padding-top: var(--mud-appbar-height) baked in, so
   the visible area under the appbar is 100vh minus that variable. Make
   the shell fill that area so the footer lands on the viewport bottom
   when page content is short. */
.versatile-shell[b-xp7h86eex8] {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - var(--mud-appbar-height, 64px));
}

.versatile-body[b-xp7h86eex8] {
    flex: 1 1 auto;
}

/* AppBar */
[b-xp7h86eex8] .mud-appbar {
    background: #0a0a0a !important;
    border-bottom: 2px solid #e11d2e !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2) !important;
}

[b-xp7h86eex8] .brand-name {
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

[b-xp7h86eex8] .brand-accent {
    color: #e11d2e;
    font-weight: 900;
}

@media (max-width: 599px) {
    [b-xp7h86eex8] .brand-name {
        font-size: 1rem;
    }
}

/* Drawer */
[b-xp7h86eex8] .mud-drawer {
    background: #0a0a0a !important;
    color: rgba(255, 255, 255, 0.88) !important;
    border-right: 1px solid #1a1a1a !important;
}

[b-xp7h86eex8] .mud-drawer .mud-nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    border-radius: 0 !important;
    border-left: 3px solid transparent;
    transition: all 0.15s ease;
}

[b-xp7h86eex8] .mud-drawer .mud-nav-link:hover {
    background: rgba(225, 29, 46, 0.12) !important;
    color: #ffffff !important;
    border-left-color: #e11d2e;
}

[b-xp7h86eex8] .mud-drawer .mud-nav-link.active {
    background: rgba(225, 29, 46, 0.18) !important;
    color: #ffffff !important;
    border-left-color: #e11d2e;
}

[b-xp7h86eex8] .mud-drawer .mud-icon-root {
    color: rgba(255, 255, 255, 0.75) !important;
}

[b-xp7h86eex8] .mud-drawer .mud-divider {
    border-color: #1a1a1a !important;
}

/* Blazor error UI */
#blazor-error-ui[b-xp7h86eex8] {
    color-scheme: light only;
    background: #0a0a0a;
    bottom: 0;
    box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    color: #ffffff;
    border-top: 3px solid #e11d2e;
}

#blazor-error-ui .dismiss[b-xp7h86eex8] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

#blazor-error-ui .reload[b-xp7h86eex8] {
    color: #ff4d5c;
    font-weight: 600;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
[b-sjerffde51] .mud-nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    border-radius: 0.375rem;
    margin: 0.1rem 0.5rem;
    font-weight: 500;
    transition: all 0.15s ease;
}

[b-sjerffde51] .mud-nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}

[b-sjerffde51] .mud-nav-link.active {
    background-color: rgba(255, 255, 255, 0.18) !important;
    color: white !important;
    font-weight: 600;
}

[b-sjerffde51] .mud-nav-link .mud-nav-link-icon {
    color: rgba(255, 255, 255, 0.85) !important;
}

[b-sjerffde51] .mud-divider {
    border-color: rgba(255, 255, 255, 0.15) !important;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-kny4clkse2],
.components-reconnect-repeated-attempt-visible[b-kny4clkse2],
.components-reconnect-failed-visible[b-kny4clkse2],
.components-pause-visible[b-kny4clkse2],
.components-resume-failed-visible[b-kny4clkse2],
.components-rejoining-animation[b-kny4clkse2] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-kny4clkse2],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-kny4clkse2],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-kny4clkse2],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-kny4clkse2],
#components-reconnect-modal.components-reconnect-retrying[b-kny4clkse2],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-kny4clkse2],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-kny4clkse2],
#components-reconnect-modal.components-reconnect-failed[b-kny4clkse2],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-kny4clkse2] {
    display: block;
}


#components-reconnect-modal[b-kny4clkse2] {
    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-kny4clkse2 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-kny4clkse2 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-kny4clkse2 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-kny4clkse2]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-kny4clkse2 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-kny4clkse2 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-kny4clkse2 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-kny4clkse2 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-kny4clkse2] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-kny4clkse2] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-kny4clkse2] {
    border: 0;
    background-color: #e11d2e;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-kny4clkse2] {
        background-color: #a10b1a;
    }

    #components-reconnect-modal button:active[b-kny4clkse2] {
        background-color: #e11d2e;
    }

.components-rejoining-animation[b-kny4clkse2] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-kny4clkse2] {
        position: absolute;
        border: 3px solid #e11d2e;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-kny4clkse2 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-kny4clkse2] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-kny4clkse2 {
    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 */
.home-hero[b-o8cppxuvxh] {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 45%, #a10b1a 85%, #e11d2e 100%);
    color: white;
    padding: 6rem 2rem 7rem;
    position: relative;
    overflow: hidden;
}

.home-hero[b-o8cppxuvxh]::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 55%;
    height: 180%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.home-hero[b-o8cppxuvxh]::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 45%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(225, 29, 46, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.home-hero-content[b-o8cppxuvxh] {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

[b-o8cppxuvxh] .home-hero-title {
    font-weight: 800 !important;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem !important;
    color: white !important;
}

[b-o8cppxuvxh] .home-hero-subtitle {
    font-size: 1.125rem !important;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9) !important;
    max-width: 620px;
    margin: 0 auto 2rem !important;
}

[b-o8cppxuvxh] .home-search-box {
    background: white !important;
    border-radius: 999px !important;
    padding: 6px 6px 6px 18px !important;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35) !important;
}

.home-about[b-o8cppxuvxh] {
    padding: 5rem 0;
    background: white;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.home-app[b-o8cppxuvxh] {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #e11d2e 100%);
    color: white;
}

[b-o8cppxuvxh] .btn-app-store {
    background: white !important;
    color: #0a0a0a !important;
    font-weight: 700 !important;
}

[b-o8cppxuvxh] .btn-app-store:hover {
    background: #fafafa !important;
    color: #e11d2e !important;
}

@media (max-width: 640px) {
    .home-hero[b-o8cppxuvxh] {
        padding: 4rem 1.25rem 5rem;
    }
}
