/* /Components/Layout/LandingLayout.razor.rz.scp.css */
/* LandingLayout - Optional global resets */
/* These styles help ensure the landing page has a clean canvas */

html[b-tvkvatdeoi], body[b-tvkvatdeoi] {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
}

*[b-tvkvatdeoi] {
    box-sizing: border-box;
}

/* Remove any default MudBlazor styles that might interfere */
.mud-layout[b-tvkvatdeoi],
.mud-main-content[b-tvkvatdeoi],
.mud-drawer[b-tvkvatdeoi],
.mud-appbar[b-tvkvatdeoi] {
    display: none !important;
}


/* Start hidden by default */
#components-reconnect-modal[b-tvkvatdeoi] {
    display: none;
}

/* Shown when Blazor detects a lost connection */
#components-reconnect-modal.components-reconnect-show[b-tvkvatdeoi],
#components-reconnect-modal.components-reconnect-failed[b-tvkvatdeoi],
#components-reconnect-modal.components-reconnect-rejected[b-tvkvatdeoi] {
    display: block;
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    padding: .75rem 1.25rem;
    border-radius: .5rem;
    background: #222;
    color: #fff;
    z-index: 10001;
    box-shadow: 0 3px 6px rgba(0,0,0,.3);
    font-size: .9rem;
}


/* The container Blazor manipulates with its special classes */
#components-reconnect-modal[b-tvkvatdeoi] {
    position: fixed;
    inset: 0;
    pointer-events: none; /* so it doesn't block clicks unless popup is open */
    z-index: 9999;
}

/* When connected, hide everything */
#components-reconnect-modal.components-reconnect-hide[b-tvkvatdeoi] {
    display: none;
}

/* In any disconnected state, show bubble (popup is still controlled separately) */
#components-reconnect-modal.components-reconnect-show[b-tvkvatdeoi],
#components-reconnect-modal.components-reconnect-failed[b-tvkvatdeoi],
#components-reconnect-modal.components-reconnect-rejected[b-tvkvatdeoi] {
    display: block;
}

/* Floating bubble on the right side */
.reconnect-bubble[b-tvkvatdeoi] {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: #2563eb; /* Tailwind-ish primary blue, tweak as you like */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    pointer-events: auto; /* re-enable for the bubble */
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, opacity 0.15s;
}

.reconnect-bubble:hover[b-tvkvatdeoi] {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

/* Popup container (hidden by default) */
.reconnect-popup[b-tvkvatdeoi] {
    position: fixed;
    right: 1.5rem;
    bottom: 5.5rem; /* sits above bubble */
    width: min(320px, 90vw);
    background: #1f2933;
    color: #f9fafb;
    border-radius: 0.75rem;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5);
    padding: 1rem 1.1rem 0.9rem;
    display: none;
    pointer-events: auto; /* click in popup works */
}

/* When open, make it visible */
.reconnect-popup.open[b-tvkvatdeoi] {
    display: block;
}

/* Header */
.reconnect-popup-header[b-tvkvatdeoi] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.reconnect-popup-header .close-btn[b-tvkvatdeoi] {
    background: transparent;
    border: none;
    color: inherit;
    font-size: 1.1rem;
    cursor: pointer;
}

/* Body */
.reconnect-popup-body[b-tvkvatdeoi] {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

/* Actions */
.reconnect-popup-actions[b-tvkvatdeoi] {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}

.reconnect-popup-actions button[b-tvkvatdeoi] {
    border-radius: 999px;
    border: none;
    padding: 0.35rem 0.85rem;
    font-size: 0.85rem;
    cursor: pointer;
}

.reconnect-popup-actions button:first-child[b-tvkvatdeoi] {
    background: #2563eb;
    color: white;
}

.reconnect-popup-actions button:last-child[b-tvkvatdeoi] {
    background: #374151;
    color: #e5e7eb;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-1nxqynnb30] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-1nxqynnb30] {
    flex: 1;
}

.sidebar[b-1nxqynnb30] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-1nxqynnb30] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-1nxqynnb30]  a, .top-row[b-1nxqynnb30]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-1nxqynnb30]  a:hover, .top-row[b-1nxqynnb30]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-1nxqynnb30]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-1nxqynnb30] {
        justify-content: space-between;
    }

    .top-row[b-1nxqynnb30]  a, .top-row[b-1nxqynnb30]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-1nxqynnb30] {
        flex-direction: row;
    }

    .sidebar[b-1nxqynnb30] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-1nxqynnb30] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-1nxqynnb30]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-1nxqynnb30], article[b-1nxqynnb30] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-1nxqynnb30] {
    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-1nxqynnb30] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }


/* Start hidden by default */
#components-reconnect-modal[b-1nxqynnb30] {
    display: none;
}

/* Shown when Blazor detects a lost connection */
#components-reconnect-modal.components-reconnect-show[b-1nxqynnb30],
#components-reconnect-modal.components-reconnect-failed[b-1nxqynnb30],
#components-reconnect-modal.components-reconnect-rejected[b-1nxqynnb30] {
    display: block;
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    padding: .75rem 1.25rem;
    border-radius: .5rem;
    background: #222;
    color: #fff;
    z-index: 10001;
    box-shadow: 0 3px 6px rgba(0,0,0,.3);
    font-size: .9rem;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-uh067137ym] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-uh067137ym] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-uh067137ym] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-uh067137ym] {
    font-size: 1.1rem;
}

.bi[b-uh067137ym] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-uh067137ym] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-uh067137ym] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-uh067137ym] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-uh067137ym] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-uh067137ym] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-uh067137ym] {
        padding-bottom: 1rem;
    }

    .nav-item[b-uh067137ym]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-uh067137ym]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-uh067137ym]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-uh067137ym] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-uh067137ym] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-uh067137ym] {
        display: none;
    }

    .nav-scrollable[b-uh067137ym] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Pages/Landing/Landing.razor.rz.scp.css */
*[b-uzaluirn6d] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.landing-page[b-uzaluirn6d] {
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

.hero-section[b-uzaluirn6d] {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

.bg-pattern[b-uzaluirn6d] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

.floating-shapes[b-uzaluirn6d] {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.shape[b-uzaluirn6d] {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: float-b-uzaluirn6d 20s infinite ease-in-out;
}

.shape-1[b-uzaluirn6d] {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2[b-uzaluirn6d] {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.shape-3[b-uzaluirn6d] {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes float-b-uzaluirn6d {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg); 
    }
    25% { 
        transform: translate(20px, -20px) rotate(90deg); 
    }
    50% { 
        transform: translate(-20px, 20px) rotate(180deg); 
    }
    75% { 
        transform: translate(20px, 20px) rotate(270deg); 
    }
}

.hero-content[b-uzaluirn6d] {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
    max-width: 1200px;
    width: 100%;
}

.logo-container[b-uzaluirn6d] {
    margin-bottom: 32px;
    animation: fadeInDown-b-uzaluirn6d 0.8s ease-out;
}

.hero-title[b-uzaluirn6d] {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    animation: fadeInDown-b-uzaluirn6d 0.8s ease-out 0.2s both;
    line-height: 1.1;
}

.hero-subtitle[b-uzaluirn6d] {
    font-size: 1.5rem;
    opacity: 0.95;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInDown-b-uzaluirn6d 0.8s ease-out 0.4s both;
    font-weight: 400;
}

.cta-buttons[b-uzaluirn6d] {
    margin-bottom: 100px;
    animation: fadeInUp-b-uzaluirn6d 0.8s ease-out 0.6s both;
}

.btn[b-uzaluirn6d] {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 48px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary[b-uzaluirn6d] {
    background: white;
    color: #667eea;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover[b-uzaluirn6d] {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.btn-primary:active[b-uzaluirn6d] {
    transform: translateY(-1px);
}

.features-grid[b-uzaluirn6d] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 40px;
    animation: fadeInUp-b-uzaluirn6d 0.8s ease-out 0.8s both;
}

.feature-item[b-uzaluirn6d] {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.feature-item:hover[b-uzaluirn6d] {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
}

.feature-icon[b-uzaluirn6d] {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon[b-uzaluirn6d] {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.1);
}

.feature-icon svg[b-uzaluirn6d] {
    color: white;
}

.feature-item h3[b-uzaluirn6d] {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-item p[b-uzaluirn6d] {
    opacity: 0.9;
    line-height: 1.6;
    font-size: 1rem;
}

@keyframes fadeInDown-b-uzaluirn6d {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp-b-uzaluirn6d {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-b-uzaluirn6d {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    }
    50% {
        box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    }
}

.pulse-animation[b-uzaluirn6d] {
    animation: pulse-b-uzaluirn6d 2s ease-in-out infinite;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content[b-uzaluirn6d] {
        padding: 40px 20px;
    }

    .hero-title[b-uzaluirn6d] {
        font-size: 2.75rem;
    }

    .hero-subtitle[b-uzaluirn6d] {
        font-size: 1.125rem;
        margin-bottom: 40px;
    }

    .features-grid[b-uzaluirn6d] {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .shape[b-uzaluirn6d] {
        display: none;
    }

    .btn[b-uzaluirn6d] {
        padding: 16px 36px;
        font-size: 1rem;
    }

    .cta-buttons[b-uzaluirn6d] {
        margin-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .hero-title[b-uzaluirn6d] {
        font-size: 2.25rem;
    }

    .hero-subtitle[b-uzaluirn6d] {
        font-size: 1rem;
    }

    .feature-item[b-uzaluirn6d] {
        padding: 32px 24px;
    }
}
/* /Components/Pages/MarketIntelligence/AssetDetails.razor.rz.scp.css */
/* 
=========================
Modern React-like layout
========================= 
*/

.asset-page[b-8f1uenfll7] {
    background: var(--page-bg);
    border-radius: var(--radius-lg);
    padding: 14px;
}

/* Sticky top header (React-style app bar) */
.asset-appbar[b-8f1uenfll7] {
    position: sticky;
    top: 10px;
    z-index: 10;
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-border);
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.asset-appbar[b-8f1uenfll7]::before {
    content: "";
    display: block;
    height: 4px;
    background: linear-gradient(90deg, var(--a2) 0%, var(--a1) 55%, #22c55e 110%);
}

.asset-appbar-inner[b-8f1uenfll7] {
    padding: 14px 14px 12px 14px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
}

.asset-title[b-8f1uenfll7] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.asset-title-top[b-8f1uenfll7] {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.asset-symbol[b-8f1uenfll7] {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 950;
    letter-spacing: -0.02em;
    color: var(--text);
    line-height: 1.1;
}

.asset-name[b-8f1uenfll7] {
    color: var(--muted);
    font-weight: 650;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 760px;
}

.asset-meta-row[b-8f1uenfll7] {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.pill[b-8f1uenfll7] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(15, 23, 42, 0.07);
    background: rgba(15, 23, 42, 0.03);
    color: #475569;
    font-weight: 800;
    font-size: 0.78rem;
}

.pill.type[b-8f1uenfll7] {
    background: rgba(14, 165, 233, 0.10);
    border-color: rgba(14, 165, 233, 0.18);
    color: #0369a1;
}

/* Price block */
.asset-price[b-8f1uenfll7] {
    text-align: right;
    display: grid;
    gap: 6px;
    justify-items: end;
    min-width: 220px;
}

.price-value[b-8f1uenfll7] {
    font-size: 1.55rem;
    font-weight: 950;
    letter-spacing: -0.02em;
    color: var(--text);
    line-height: 1.05;
}

.change-pill[b-8f1uenfll7] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: var(--radius-pill);
    font-weight: 900;
    border: 1px solid rgba(15, 23, 42, 0.06);
    background: rgba(255, 255, 255, 0.75);
}

.change-pill.pos[b-8f1uenfll7] {
    color: var(--good);
    background: rgba(34, 197, 94, 0.12);
}

.change-pill.neg[b-8f1uenfll7] {
    color: var(--bad);
    background: rgba(239, 68, 68, 0.10);
}

.asof[b-8f1uenfll7] {
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 650;
}

/* KPI strip */
.kpi-grid[b-8f1uenfll7] {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 10px;
}

.kpi[b-8f1uenfll7] {
    grid-column: span 3;
    border-radius: var(--radius-md);
    border: 1px solid rgba(15, 23, 42, 0.07);
    background: var(--card-bg);
    box-shadow: var(--shadow-sm);
    padding: 12px;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.kpi:hover[b-8f1uenfll7] {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(15, 23, 42, 0.14);
}

.kpi-k[b-8f1uenfll7] {
    font-size: 0.72rem;
    font-weight: 900;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin: 0;
}

.kpi-v[b-8f1uenfll7] {
    margin: 8px 0 0 0;
    font-size: 1.05rem;
    font-weight: 950;
    color: var(--text);
    letter-spacing: -0.01em;
    line-height: 1.15;
}

/* Cards / panels */
.card[b-8f1uenfll7] {
    margin-top: 12px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-border);
    background: var(--card-bg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.card-head[b-8f1uenfll7] {
    padding: 14px 14px 0 14px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.card-title[b-8f1uenfll7] {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 950;
    letter-spacing: -0.01em;
    color: var(--text);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.card-subtitle[b-8f1uenfll7] {
    margin: 6px 0 0 0;
    font-size: 0.9rem;
    font-weight: 650;
    color: var(--muted);
    line-height: 1.35;
}

.card-body[b-8f1uenfll7] {
    padding: 14px;
}

/* Tabs spacing */
.tabs-wrap .mud-tabs-panels[b-8f1uenfll7] {
    padding-top: 6px;
}

/* Tables */
.nice-table[b-8f1uenfll7] {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.nice-table thead[b-8f1uenfll7] {
    background: rgba(2, 6, 23, 0.04);
}

.nice-table th[b-8f1uenfll7] {
    font-weight: 850;
    color: #334155;
}

.nice-table td[b-8f1uenfll7] {
    color: #334155;
    font-weight: 550;
}

/* Summary callout */
.summary[b-8f1uenfll7] {
    border-left: 3px solid rgba(14, 165, 233, 0.25);
    padding-left: 12px;
    color: #334155;
    line-height: 1.7;
    font-weight: 550;
}

/* Frequency buttons */
.freq-group .mud-button-root[b-8f1uenfll7] {
    border-radius: 999px !important;
    text-transform: none !important;
    font-weight: 850 !important;
}

/* Similar asset card hover effect */
.similar-asset-card:hover[b-8f1uenfll7] {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12) !important;
    border-color: rgba(15, 23, 42, 0.14) !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .kpi[b-8f1uenfll7] {
        grid-column: span 6;
    }

    .asset-appbar-inner[b-8f1uenfll7] {
        grid-template-columns: 1fr;
    }

    .asset-price[b-8f1uenfll7] {
        justify-items: start;
        text-align: left;
        min-width: unset;
    }

    .asset-name[b-8f1uenfll7] {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .kpi[b-8f1uenfll7] {
        grid-column: span 12;
    }

    .asset-symbol[b-8f1uenfll7] {
        font-size: 1.2rem;
    }

    .price-value[b-8f1uenfll7] {
        font-size: 1.35rem;
    }

    .asset-page[b-8f1uenfll7] {
        padding: 10px;
    }
}
/* /Components/Pages/MarketIntelligence/Components/AssetLogo.razor.rz.scp.css */
.asset-logo[b-aiio0tgsin] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    background: #ffffff;
    border: 1px solid #e5e7eb;
}

.asset-logo-img[b-aiio0tgsin] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.asset-logo-fallback[b-aiio0tgsin] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 0.75em;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* /Components/Pages/MarketIntelligence/Components/TrendAnalysisCard.razor.rz.scp.css */
/* Trend Analysis Card - Modern & Mobile-First */
.trend-card[b-gxpk20vk0h] {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 16px;
    -webkit-tap-highlight-color: transparent;
}

.trend-card[b-gxpk20vk0h]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #14b8a6 0%, #0ea5e9 50%, #22c55e 100%);
    opacity: 0.9;
}

.trend-card:hover[b-gxpk20vk0h] {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
    border-color: rgba(14, 165, 233, 0.3);
}

/* Watch Button */
.watch-btn[b-gxpk20vk0h] {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.95);
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
    transition: all 0.15s ease;
}

.watch-btn:hover[b-gxpk20vk0h] {
    transform: scale(1.08);
    background: #fff7ed;
}

.watch-btn:active[b-gxpk20vk0h] {
    transform: scale(0.96);
}

.watch-btn .mud-icon-root[b-gxpk20vk0h] {
    color: #f59e0b;
}

/* Header Section */
.trend-header[b-gxpk20vk0h] {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: start;
}

.logo-section[b-gxpk20vk0h] {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    background: radial-gradient(120% 120% at 30% 20%, rgba(14, 165, 233, 0.12) 0%, rgba(20, 184, 166, 0.08) 50%, transparent 75%);
    border: 1px solid rgba(15, 23, 42, 0.06);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.title-section[b-gxpk20vk0h] {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.row-1[b-gxpk20vk0h] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.symbol[b-gxpk20vk0h] {
    font-size: 1.25rem;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.03em;
}

.flag[b-gxpk20vk0h] {
    font-size: 1.1rem;
    line-height: 1;
    filter: grayscale(0.1);
}

.score-badge[b-gxpk20vk0h] {
    margin-left: auto;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    border: 1px solid;
}

.score-badge .score-value[b-gxpk20vk0h] {
    font-size: 1rem;
    font-weight: 900;
}

.score-high[b-gxpk20vk0h] {
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
    border-color: rgba(34, 197, 94, 0.3);
}

.score-medium[b-gxpk20vk0h] {
    background: rgba(245, 158, 11, 0.12);
    color: #b45309;
    border-color: rgba(245, 158, 11, 0.3);
}

.score-low[b-gxpk20vk0h] {
    background: rgba(239, 68, 68, 0.12);
    color: #b91c1c;
    border-color: rgba(239, 68, 68, 0.3);
}

.row-2 .name[b-gxpk20vk0h] {
    font-size: 0.95rem;
    font-weight: 600;
    color: #475569;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.row-3[b-gxpk20vk0h] {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.meta[b-gxpk20vk0h] {
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.separator[b-gxpk20vk0h] {
    color: #cbd5e1;
    font-size: 0.75rem;
}

/* Price Section */
.price-section[b-gxpk20vk0h] {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
}

.price-block[b-gxpk20vk0h] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.price-line[b-gxpk20vk0h] {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.currency-symbol[b-gxpk20vk0h] {
    font-size: 1.1rem;
    font-weight: 700;
    color: #64748b;
}

.price[b-gxpk20vk0h] {
    font-size: 2rem;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.04em;
    line-height: 1;
}

.currency-code[b-gxpk20vk0h] {
    font-size: 0.85rem;
    font-weight: 700;
    color: #94a3b8;
}

.market-cap[b-gxpk20vk0h] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
}

.market-cap .mud-icon-root[b-gxpk20vk0h] {
    font-size: 1rem;
    color: #94a3b8;
}

.sparkline[b-gxpk20vk0h] {
    width: 140px;
    height: 60px;
    border-radius: 14px;
    background: rgba(14, 165, 233, 0.06);
    border: 1px solid rgba(14, 165, 233, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sparkline img[b-gxpk20vk0h] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.9;
}

/* Performance Grid */
.performance-grid[b-gxpk20vk0h] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.perf-item[b-gxpk20vk0h] {
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 12px;
    padding: 10px 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.perf-label[b-gxpk20vk0h] {
    font-size: 0.65rem;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.perf-value[b-gxpk20vk0h] {
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.perf-value.positive[b-gxpk20vk0h] {
    color: #15803d;
}

.perf-value.negative[b-gxpk20vk0h] {
    color: #b91c1c;
}

.perf-value.neutral[b-gxpk20vk0h] {
    color: #64748b;
}

/* Technical Indicators */
.indicators-section[b-gxpk20vk0h] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.indicator[b-gxpk20vk0h] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid;
}

.indicator.positive[b-gxpk20vk0h] {
    background: rgba(34, 197, 94, 0.1);
    color: #15803d;
    border-color: rgba(34, 197, 94, 0.25);
}

.indicator.negative[b-gxpk20vk0h] {
    background: rgba(239, 68, 68, 0.1);
    color: #b91c1c;
    border-color: rgba(239, 68, 68, 0.25);
}

.indicator.warning[b-gxpk20vk0h] {
    background: rgba(245, 158, 11, 0.1);
    color: #b45309;
    border-color: rgba(245, 158, 11, 0.25);
}

.indicator .mud-icon-root[b-gxpk20vk0h] {
    font-size: 1rem;
}

/* Flags Section */
.flags-section[b-gxpk20vk0h] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.flag-chip[b-gxpk20vk0h] {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    background: rgba(14, 165, 233, 0.08);
    color: #0369a1;
    border: 1px solid rgba(14, 165, 233, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.flag-chip.more[b-gxpk20vk0h] {
    background: rgba(100, 116, 139, 0.08);
    color: #475569;
    border-color: rgba(100, 116, 139, 0.15);
}

/* Tooltip */
[b-gxpk20vk0h] .mud-tooltip,
[b-gxpk20vk0h] .trend-card-tooltip .mud-popover-paper {
    background-color: #ffffff !important;
    color: #0f172a !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.08) !important;
    border-radius: 12px !important;
    padding: 16px !important;
    max-width: 320px !important;
}

[b-gxpk20vk0h] .mud-tooltip-arrow,
[b-gxpk20vk0h] .trend-card-tooltip .mud-popover-arrow {
    color: #ffffff !important;
}

.tooltip-content[b-gxpk20vk0h] {
    padding: 0;
    max-width: 300px;
    color: #0f172a !important;
}

.tooltip-title[b-gxpk20vk0h] {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: #0f172a !important;
    line-height: 1.3;
}

.tooltip-summary[b-gxpk20vk0h] {
    font-size: 0.85rem;
    color: #475569 !important;
    margin-bottom: 12px;
    line-height: 1.5;
}

.tooltip-meta[b-gxpk20vk0h] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.8rem;
    color: #475569 !important;
}

.tooltip-meta > div[b-gxpk20vk0h] {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #475569 !important;
}

.tooltip-meta strong[b-gxpk20vk0h] {
    color: #0f172a !important;
    font-weight: 700;
    min-width: 100px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .trend-card[b-gxpk20vk0h] {
        padding: 16px;
        border-radius: 18px;
        gap: 14px;
    }

    .logo-section[b-gxpk20vk0h] {
        width: 64px;
        height: 64px;
        border-radius: 14px;
    }

    .symbol[b-gxpk20vk0h] {
        font-size: 1.1rem;
    }

    .price[b-gxpk20vk0h] {
        font-size: 1.75rem;
    }

    .sparkline[b-gxpk20vk0h] {
        width: 120px;
        height: 56px;
    }

    .performance-grid[b-gxpk20vk0h] {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .perf-item[b-gxpk20vk0h] {
        padding: 8px 6px;
    }

    .perf-value[b-gxpk20vk0h] {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .trend-card[b-gxpk20vk0h] {
        padding: 14px;
    }

    .trend-header[b-gxpk20vk0h] {
        grid-template-columns: auto 1fr;
        gap: 12px;
    }

    .logo-section[b-gxpk20vk0h] {
        width: 56px;
        height: 56px;
    }

    .price-section[b-gxpk20vk0h] {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .sparkline[b-gxpk20vk0h] {
        width: 100%;
        height: 60px;
    }

    .performance-grid[b-gxpk20vk0h] {
        grid-template-columns: repeat(2, 1fr);
    }

    .score-badge[b-gxpk20vk0h] {
        padding: 4px 8px;
        font-size: 0.7rem;
    }

    .score-badge .score-value[b-gxpk20vk0h] {
        font-size: 0.9rem;
    }
}
/* /Components/Pages/MarketIntelligence/TrendAnalysis.razor.rz.scp.css */
/* Trend Analysis Page - Modern & Mobile-First */
.trends-page[b-ulbpf0rmkf] {
    min-height: 100vh;
    background: #f8fafc;
}

.trends-container[b-ulbpf0rmkf] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 16px;
}

/* Header Section */
.trends-header[b-ulbpf0rmkf] {
    background: linear-gradient(135deg, #0f172a 0%, #0e7490 50%, #0891b2 100%);
    border-radius: 24px;
    padding: 48px 40px;
    margin-bottom: 32px;
    color: white;
    box-shadow: 0 8px 32px rgba(8, 145, 178, 0.25);
    position: relative;
    overflow: hidden;
}

.trends-header[b-ulbpf0rmkf]::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.25) 0%, transparent 70%);
    border-radius: 50%;
}

.trends-header[b-ulbpf0rmkf]::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.header-content[b-ulbpf0rmkf] {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
}

.title-section[b-ulbpf0rmkf] {
    flex: 1;
    min-width: 300px;
}

.trends-title[b-ulbpf0rmkf] {
    font-size: 2.75rem;
    font-weight: 800;
    margin: 0 0 16px 0;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.trends-title .mud-icon-root[b-ulbpf0rmkf] {
    font-size: 3rem;
}

.trends-subtitle[b-ulbpf0rmkf] {
    font-size: 1.125rem;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
    max-width: 700px;
}

.week-badge[b-ulbpf0rmkf] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.week-badge .mud-icon-root[b-ulbpf0rmkf] {
    font-size: 1.1rem;
}

/* Filters Section */
.filters-section[b-ulbpf0rmkf] {
    background: white;
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid #e0f2fe;
}

.filters-wrapper[b-ulbpf0rmkf] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.filter-group[b-ulbpf0rmkf] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-label[b-ulbpf0rmkf] {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
}

.filter-chips[b-ulbpf0rmkf] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-chip[b-ulbpf0rmkf] {
    transition: all 0.2s ease !important;
    border-radius: 24px !important;
    cursor: pointer !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    height: 40px !important;
    min-width: fit-content !important;
}

.filter-chip:hover[b-ulbpf0rmkf] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(8, 145, 178, 0.2);
}

.refresh-btn[b-ulbpf0rmkf] {
    position: absolute;
    top: 0;
    right: 0;
    width: 48px !important;
    height: 48px !important;
    border-radius: 12px !important;
}

/* Loading State */
.loading-section[b-ulbpf0rmkf] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 80px 20px;
}

.loading-text[b-ulbpf0rmkf] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #64748b;
}

/* Error State */
.error-section[b-ulbpf0rmkf] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 60px 20px;
}

.error-alert[b-ulbpf0rmkf] {
    width: 100%;
    max-width: 600px;
    border-radius: 16px !important;
}

.error-content[b-ulbpf0rmkf] {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.error-content .mud-icon-root[b-ulbpf0rmkf] {
    font-size: 2.5rem;
}

.error-title[b-ulbpf0rmkf] {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.error-message[b-ulbpf0rmkf] {
    font-size: 0.95rem;
    opacity: 0.9;
}

.retry-btn[b-ulbpf0rmkf] {
    border-radius: 12px !important;
    padding: 12px 32px !important;
    font-weight: 700 !important;
}

/* Empty State */
.empty-section[b-ulbpf0rmkf] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}

.empty-icon[b-ulbpf0rmkf] {
    font-size: 5rem !important;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.empty-title[b-ulbpf0rmkf] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px 0;
}

.empty-subtitle[b-ulbpf0rmkf] {
    font-size: 1rem;
    color: #64748b;
    max-width: 500px;
    margin: 0;
    line-height: 1.6;
}

/* Trend Section */
.trend-section[b-ulbpf0rmkf] {
    margin-bottom: 48px;
}

.section-header[b-ulbpf0rmkf] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 12px;
}

.section-title[b-ulbpf0rmkf] {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
}

.section-title .mud-icon-root[b-ulbpf0rmkf] {
    font-size: 2.25rem;
}

.section-count[b-ulbpf0rmkf] {
    font-size: 0.95rem;
    font-weight: 700;
    color: #64748b;
    background: rgba(100, 116, 139, 0.08);
    padding: 8px 16px;
    border-radius: 999px;
}

.section-subtitle[b-ulbpf0rmkf] {
    font-size: 1rem;
    color: #64748b;
    margin: 0 0 24px 0;
    line-height: 1.6;
}

/* Trends Grid */
.trends-grid[b-ulbpf0rmkf] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 24px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .trends-grid[b-ulbpf0rmkf] {
        grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .trends-container[b-ulbpf0rmkf] {
        padding: 16px 12px;
    }

    .trends-header[b-ulbpf0rmkf] {
        padding: 32px 24px;
        border-radius: 20px;
        margin-bottom: 24px;
    }

    .trends-header[b-ulbpf0rmkf]::before,
    .trends-header[b-ulbpf0rmkf]::after {
        display: none;
    }

    .trends-title[b-ulbpf0rmkf] {
        font-size: 2rem;
        gap: 12px;
        flex-direction: column;
        align-items: flex-start;
    }

    .trends-title .mud-icon-root[b-ulbpf0rmkf] {
        font-size: 2.25rem;
    }

    .trends-subtitle[b-ulbpf0rmkf] {
        font-size: 1rem;
        line-height: 1.6;
    }

    .week-badge[b-ulbpf0rmkf] {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .filters-section[b-ulbpf0rmkf] {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .refresh-btn[b-ulbpf0rmkf] {
        position: static !important;
        width: 100% !important;
        margin-top: 8px;
    }

    .filter-chips[b-ulbpf0rmkf] {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .filter-chips[b-ulbpf0rmkf]::-webkit-scrollbar {
        display: none;
    }

    .filter-chip[b-ulbpf0rmkf] {
        flex-shrink: 0;
        font-size: 0.85rem !important;
        height: 36px !important;
    }

    .section-title[b-ulbpf0rmkf] {
        font-size: 1.5rem;
        gap: 8px;
    }

    .section-title .mud-icon-root[b-ulbpf0rmkf] {
        font-size: 1.75rem;
    }

    .section-subtitle[b-ulbpf0rmkf] {
        font-size: 0.9rem;
    }

    .trends-grid[b-ulbpf0rmkf] {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .trend-section[b-ulbpf0rmkf] {
        margin-bottom: 32px;
    }
}

@media (max-width: 480px) {
    .trends-container[b-ulbpf0rmkf] {
        padding: 12px 8px;
    }

    .trends-header[b-ulbpf0rmkf] {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .trends-title[b-ulbpf0rmkf] {
        font-size: 1.75rem;
    }

    .trends-subtitle[b-ulbpf0rmkf] {
        font-size: 0.9rem;
    }

    .filters-section[b-ulbpf0rmkf] {
        padding: 16px 12px;
    }

    .filter-group[b-ulbpf0rmkf] {
        gap: 10px;
    }

    .section-header[b-ulbpf0rmkf] {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-title[b-ulbpf0rmkf] {
        font-size: 1.35rem;
    }

    .empty-section[b-ulbpf0rmkf] {
        padding: 60px 16px;
    }

    .empty-icon[b-ulbpf0rmkf] {
        font-size: 4rem !important;
    }

    .empty-title[b-ulbpf0rmkf] {
        font-size: 1.5rem;
    }

    .empty-subtitle[b-ulbpf0rmkf] {
        font-size: 0.9rem;
    }
}

/* Landscape Mode Optimization */
@media (max-height: 500px) and (orientation: landscape) {
    .trends-header[b-ulbpf0rmkf] {
        padding: 20px 24px !important;
    }

    .trends-title[b-ulbpf0rmkf] {
        font-size: 1.75rem !important;
        margin-bottom: 8px !important;
    }

    .trends-subtitle[b-ulbpf0rmkf] {
        font-size: 0.9rem !important;
    }

    .empty-section[b-ulbpf0rmkf],
    .loading-section[b-ulbpf0rmkf],
    .error-section[b-ulbpf0rmkf] {
        padding: 40px 20px;
    }
}
