    :root {
        --bg-color: #050505;
        --text-primary: #ffffff;
        --text-secondary: #a0a0a0;
        --accent-finance: #FFD700;
        --accent-tech: #00DC82;
        --accent-gradient: linear-gradient(135deg, #FFD700, #00DC82);
        --glass-bg: rgba(255, 255, 255, 0.05);
        --glass-border: rgba(255, 255, 255, 0.1);
        --card-hover: rgba(255, 255, 255, 0.08);
        --font-heading: 'Outfit', sans-serif;
        --font-body: 'Inter', sans-serif;
        --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
    body { font-family: var(--font-body); background-color: var(--bg-color); color: var(--text-primary); line-height: 1.6; overflow-x: hidden; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* Canvas Background */
    .background-animation { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; z-index: -1; pointer-events: none; }

    /* Header */
    header { position: fixed; top: 20px; left: 50%; transform: translateX(-50%); width: 90%; max-width: 1400px; padding: 15px 30px; z-index: 100; border-radius: 50px; display: flex; justify-content: space-between; align-items: center; background: rgba(5, 5, 5, 0.8); backdrop-filter: blur(20px); border: 1px solid var(--glass-border); }
    header.glass:hover {
        transform: translateX(-50%) translateY(-5px); 
        background: var(--card-hover);
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    nav { display: flex; justify-content: space-between; align-items: center; position: relative; width: 100%; }
    .logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: flex; align-items: center; gap: 10px; }
    
    .nav-links { display: flex; gap: 40px; list-style: none; align-items: center; }
    .nav-links a { font-weight: 500; font-size: 0.95rem; color: var(--text-secondary); transition: var(--transition); position: relative; }
    .nav-links a:hover, .nav-links a.active { color: var(--text-primary); }
    .nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--accent-gradient); transition: var(--transition); }
    .nav-links a:hover::after { width: 100%; }

    /* Premium CSS Dropdown Navigation System */
    .dropdown {
        position: relative;
        display: inline-block;
    }
    .dropdown-trigger {
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    .dropdown-trigger i {
        font-size: 0.72rem;
        transition: transform 0.2s ease;
    }
    .dropdown:hover .dropdown-trigger i {
        transform: rotate(180deg);
    }
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        background: rgba(10, 10, 10, 0.96);
        border: 1px solid var(--glass-border);
        border-radius: 12px;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
        padding: 8px 0;
        min-width: 190px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        list-style: none;
        margin: 0;
    }
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%) translateY(5px);
    }
    .dropdown-menu li {
        width: 100%;
        padding: 0;
    }
    .dropdown-menu a {
        display: block;
        padding: 10px 20px;
        font-size: 0.88rem;
        color: var(--text-secondary);
        transition: all 0.2s ease;
        white-space: nowrap;
        text-align: left;
    }
    .dropdown-menu a::after {
        display: none !important; /* Hide standard nav link underline in dropdowns */
    }
    .dropdown-menu a:hover, .dropdown-menu a.active {
        color: var(--text-primary);
        background: rgba(255, 255, 255, 0.05);
        padding-left: 24px; /* subtle slide on hover */
    }

    /* Glass Panels */
    .glass { background: var(--glass-bg); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--glass-border); border-radius: 16px; transition: var(--transition); }

    /* Dashboard Layout */
    .dashboard-wrapper { padding-top: 120px; width: 90%; max-width: 1400px; margin: 0 auto; padding-bottom: 60px; }
    .dashboard-header { text-align: center; margin-bottom: 40px; }
    .dashboard-header h1 { font-family: var(--font-heading); font-size: 3rem; font-weight: 700; margin-bottom: 10px; }
    .gradient-text { background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
    
    .ticker-tape { margin-bottom: 30px; border-radius: 12px; overflow: hidden; border: 1px solid var(--glass-border); }

    .dashboard-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
    
    .widget-container { padding: 20px; height: auto; display: flex; flex-direction: column; }
    .widget-title { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; margin-bottom: 15px; color: var(--text-primary); display: flex; align-items: center; gap: 10px; }
    .widget-title i { color: var(--accent-finance); }
    .widget-body { flex-grow: 1; border-radius: 8px; overflow: hidden; }

    /* Grid Spans */
    .col-6 { grid-column: span 6; }
    .col-4 { grid-column: span 4; }
    .col-8 { grid-column: span 8; }
    .col-12 { grid-column: span 12; }

    @media (max-width: 1024px) {
        .col-4, .col-6, .col-8 { grid-column: span 12; }
    }

    /* Native Macro Tables */
    .macro-table { width: 100%; border-collapse: collapse; text-align: left; font-size: 0.95rem; }
    .macro-table th { padding: 12px 15px; border-bottom: 1px solid var(--glass-border); color: var(--text-secondary); font-weight: 500; white-space: nowrap; }
    .macro-table td { padding: 15px; border-bottom: 1px solid rgba(255,255,255,0.03); color: var(--text-primary); transition: background 0.2s; white-space: nowrap; }
    .macro-table tbody tr { cursor: pointer; }
    .macro-table tbody tr:hover td { background: rgba(255,255,255,0.05); }
    .macro-table .symbol-col { font-weight: 600; color: var(--accent-tech); }
    .macro-table .price-col { font-family: var(--font-heading); font-weight: 600; text-align: right; }
    .macro-table .change-col { font-family: var(--font-heading); font-weight: 600; text-align: right; }
    .positive { color: #00DC82 !important; }
    .negative { color: #FF3B30 !important; }
    .neutral { color: var(--text-secondary) !important; }
    @keyframes pulse { 0% { opacity: 0.4; } 100% { opacity: 1; } }
    .loading-pulse { animation: pulse 1s infinite alternate; color: var(--text-secondary); }

    .widget-title { display: flex; justify-content: space-between; align-items: center; }
    .widget-title span { display: flex; align-items: center; gap: 8px; }
    .refresh-timer { font-size: 0.85rem; color: var(--text-secondary); font-weight: normal; }
    .refresh-btn { cursor: pointer; transition: color 0.2s; font-size: 1rem; }
    .refresh-btn:hover { color: var(--accent-tech); }
    .spinning { animation: spin 1s linear infinite; color: var(--accent-tech); }
    @keyframes spin { 100% { transform: rotate(360deg); } }
    .view-more-btn { font-size: 0.8rem; background: rgba(255,255,255,0.05); color: #fff; padding: 4px 10px; border-radius: 5px; border: 1px solid rgba(255,255,255,0.1); margin-right: 15px; transition: 0.2s; text-decoration: none; display: inline-block; }
    .view-more-btn:hover { background: rgba(255,255,255,0.1); color: var(--accent-tech); }

    /* Infinite Ticker Marquee styles */
    @keyframes ticker-scroll {
        0% { transform: translate3d(0, 0, 0); }
        100% { transform: translate3d(-50%, 0, 0); }
    }
    .ticker-container:hover {
        animation-play-state: paused !important;
    }
    .header-ticker-container {
        flex: 1;
        margin: 0 40px;
        overflow: hidden;
        display: flex;
        align-items: center;
        mask-image: linear-gradient(to right, transparent, #fff 15%, #fff 85%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, #fff 15%, #fff 85%, transparent);
    }
    .mobile-bottom-ticker {
        display: none;
    }
    @media (max-width: 900px) {
        .header-ticker-container {
            display: none !important;
        }
        .mobile-bottom-ticker {
            display: flex !important;
        }
    }
    
    /* Interactive Quick Jump Navigation Bar */
    .jump-nav-bar {
        display: flex;
        gap: 12px;
        padding: 10px 16px;
        border-radius: 12px;
        border: 1px solid var(--glass-border);
        background: rgba(5, 5, 5, 0.7);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        margin-bottom: 30px;
        overflow-x: auto;
        white-space: nowrap;
        align-items: center;
        position: sticky;
        top: 100px;
        z-index: 99;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .jump-nav-bar::-webkit-scrollbar {
        display: none;
    }
    
    .jump-btn {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--glass-border);
        color: var(--text-primary);
        padding: 8px 16px;
        border-radius: 8px;
        font-family: var(--font-heading);
        font-size: 0.85rem;
        font-weight: 500;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        user-select: none;
    }
    .jump-btn:hover {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.25);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    .jump-btn:active {
        transform: translateY(0) scale(0.96);
    }

    /* Widget Highlighting Keyframe Animation */
    @keyframes widgetHighlight {
        0% {
            border-color: #00DC82;
            box-shadow: 0 0 30px rgba(0, 220, 130, 0.4);
            transform: scale(1.015);
        }
        50% {
            border-color: #00DC82;
            box-shadow: 0 0 50px rgba(0, 220, 130, 0.6);
            transform: scale(1.02);
        }
        100% {
            border-color: var(--glass-border);
            box-shadow: none;
            transform: scale(1);
        }
    }
    
    .widget-highlight-active {
        animation: widgetHighlight 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
        z-index: 10;
    }

    /* Footer */
    footer { text-align: center; padding: 40px; font-size: 0.9rem; color: var(--text-secondary); border-top: 1px solid var(--glass-border); margin-top: 60px; }

    /* Mobile Responsiveness Override Rules */
    @media (max-width: 768px) {
        header {
            top: 10px !important;
            width: 94% !important;
            padding: 10px 15px !important;
            border-radius: 20px !important;
        }
        .logo {
            font-size: 1.25rem !important;
            gap: 6px !important;
        }
        .nav-links {
            gap: 15px !important;
        }
        .nav-links a {
            font-size: 0.85rem !important;
        }
        .dashboard-wrapper {
            padding-top: 90px !important;
            width: 94% !important;
            margin: 0 auto !important;
            padding-left: 0 !important;
            padding-right: 0 !important;
            padding-bottom: 40px !important;
        }
        .dashboard-header {
            margin-bottom: 24px !important;
            gap: 16px !important;
            text-align: left !important;
        }
        .dashboard-header h1 {
            font-size: 2.1rem !important;
        }
        .dashboard-grid {
            gap: 16px !important;
        }
        .widget-container {
            padding: 16px !important;
        }
        .widget-title {
            font-size: 1.1rem !important;
            margin-bottom: 12px !important;
        }
        .macro-table th, .macro-table td {
            padding: 10px 8px !important;
            font-size: 0.85rem !important;
        }
        .jump-nav-bar {
            top: 68px !important;
            padding: 8px 12px !important;
            margin-bottom: 20px !important;
            gap: 8px !important;
        }
        .jump-btn {
            padding: 6px 12px !important;
            font-size: 0.78rem !important;
            gap: 6px !important;
        }
        footer {
            padding-top: 30px !important;
            padding-bottom: 80px !important;
        }
    }

    @media (max-width: 600px) {
        .timezone-clock-bar {
            display: grid !important;
            grid-template-columns: repeat(2, 1fr) !important;
            gap: 10px !important;
            padding: 10px 15px !important;
            width: 100% !important;
            border-radius: 10px !important;
        }
        .timezone-clock-bar > div:not(.clock-item) {
            display: none !important;
        }
        .timezone-clock-bar .clock-item {
            min-width: 0 !important;
            width: 100% !important;
            padding: 4px 0 !important;
        }
        .timezone-clock-bar .clock-item span[id*="-rate-val"],
        .timezone-clock-bar .clock-item span[id*="-vix-val"],
        .timezone-clock-bar .clock-item span[id*="-perf-"],
        .timezone-clock-bar .clock-item span[id^="clock-"] {
            font-size: 0.95rem !important;
        }
        .timezone-clock-bar .clock-item .status-text {
            font-size: 0.75rem !important;
        }
        .timezone-clock-bar .clock-item span:first-child {
            font-size: 0.65rem !important;
        }
    }

    /* Premium Ticker Dropdown CSS */
    .ticker-row {
        cursor: pointer;
        transition: background 0.2s ease, border-left 0.2s ease;
    }
    .ticker-row:hover {
        background: rgba(255, 255, 255, 0.03) !important;
    }
    .ticker-row.expanded {
        background: rgba(0, 220, 130, 0.03) !important;
    }
    .ticker-row.expanded .toggle-icon {
        transform: rotate(180deg);
        color: var(--accent-cyan) !important;
    }
    .details-row {
        background: rgba(5, 5, 5, 0.4) !important;
        border-bottom: 1px solid var(--glass-border);
    }
    .details-row:hover {
        background: rgba(5, 5, 5, 0.4) !important;
    }
    .details-wrapper {
        padding: 16px 20px;
        animation: slideDown 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        overflow: hidden;
    }
    .details-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 12px;
        margin-bottom: 14px;
    }
    @media (max-width: 900px) {
        .details-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    @media (max-width: 600px) {
        .details-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    .stat-card {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid var(--glass-border);
        padding: 10px 14px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        gap: 4px;
        transition: transform 0.2s ease;
    }
    .stat-card:hover {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.04);
    }
    .stat-label {
        font-size: 0.72rem;
        color: var(--text-secondary);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .stat-val {
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 0.95rem;
        color: #fff;
    }
    .text-positive { color: #00DC82 !important; }
    .text-negative { color: #FF3B30 !important; }
    .text-gold { color: #FFD700 !important; }
    .text-blue { color: #00C2FF !important; }

    .details-actions {
        display: flex;
        justify-content: flex-end;
    }
    .action-btn {
        background: rgba(0, 220, 130, 0.1);
        border: 1px solid rgba(0, 220, 130, 0.3);
        color: #00DC82;
        padding: 6px 14px;
        border-radius: 8px;
        font-size: 0.8rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s ease;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
    .action-btn:hover {
        background: #00DC82;
        color: #050505;
        box-shadow: 0 0 15px rgba(0, 220, 130, 0.4);
    }
    .toggle-col {
        width: 30px;
        text-align: center;
    }
    .toggle-icon {
        color: var(--text-secondary);
        transition: transform 0.3s ease;
        font-size: 0.8rem;
    }
    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-5px); }
        to { opacity: 1; transform: translateY(0); }
    }
    </b:skin>
    <script src='https://s3.tradingview.com/tv.js' type='text/javascript'/>
    <script src='https://cdn.jsdelivr.net/npm/chart.js' type='text/javascript'/>
    <style>
    /* Economic Dashboard Premium Styles */
    .economic-dashboard-wrapper {
        animation: fadeIn 0.5s ease-out;
    }
    
    /* Category Specific Accent Colors */
    .cat-growth {
        --cat-color: #00DC82;
        --cat-color-rgb: 0, 220, 130;
    }
    .cat-inflation {
        --cat-color: #FFC007;
        --cat-color-rgb: 255, 192, 7;
    }
    .cat-employment {
        --cat-color: #00C0FF;
        --cat-color-rgb: 0, 192, 255;
    }
    .cat-consumer {
        --cat-color: #B026FF;
        --cat-color-rgb: 176, 38, 255;
    }
    .cat-business {
        --cat-color: #7000FF;
        --cat-color-rgb: 112, 0, 255;
    }
    .cat-monetary {
        --cat-color: #FF3B30;
        --cat-color-rgb: 255, 59, 48;
    }
    .cat-government {
        --cat-color: #3b82f6;
        --cat-color-rgb: 59, 130, 246;
    }
    .cat-external {
        --cat-color: #FF7A00;
        --cat-color-rgb: 255, 122, 0;
    }
    .cat-housing {
        --cat-color: #D2A250;
        --cat-color-rgb: 210, 162, 80;
    }
    .cat-markets {
        --cat-color: #FF007F;
        --cat-color-rgb: 255, 0, 127;
    }
    .cat-reserves {
        --cat-color: #FFD700;
        --cat-color-rgb: 255, 215, 0;
    }

    .economic-summary-row {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
        width: 100%;
        margin-bottom: 25px;
    }
    .economic-summary-card {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
        border: 1px solid var(--glass-border);
        border-radius: 12px;
        padding: 14px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-width: 110px;
        flex: 1;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
        text-align: center;
    }
    .economic-summary-card:hover {
        transform: translateY(-3px);
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.08);
    }
    
    .economic-search-container {
        position: sticky;
        top: 95px;
        z-index: 99;
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 15px 20px;
        margin-bottom: 25px;
        border-radius: 20px;
        border: 1px solid var(--glass-border);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        display: flex;
        flex-direction: column;
        gap: 15px;
        transition: var(--transition);
    }
    .economic-search-wrapper {
        position: relative;
        width: 100%;
    }
    .economic-search-input {
        width: 100%;
        padding: 15px 20px 15px 50px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--glass-border);
        border-radius: 30px;
        color: #fff;
        font-family: var(--font-body);
        font-size: 1rem;
        outline: none;
        transition: var(--transition);
    }
    .economic-search-input:focus {
        border-color: var(--accent-tech);
        box-shadow: 0 0 25px rgba(0, 220, 130, 0.25);
        background: rgba(255, 255, 255, 0.05);
    }
    .economic-search-icon {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-secondary);
        font-size: 1.1rem;
    }
    .economic-filter-pills {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 8px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .economic-filter-pills::-webkit-scrollbar {
        display: none;
    }
    .economic-pill {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid var(--glass-border);
        color: var(--text-secondary);
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 0.85rem;
        cursor: pointer;
        white-space: nowrap;
        transition: var(--transition);
        user-select: none;
    }
    .economic-pill:hover, .economic-pill.active {
        background: var(--accent-gradient);
        color: #050505;
        font-weight: 600;
        border-color: transparent;
    }
    .economic-category-card {
        margin-bottom: 30px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow: hidden;
        border: 1px solid var(--glass-border);
    }
    .economic-category-card.active-category {
        border-color: var(--cat-color) !important;
        box-shadow: 0 0 0 1.5px var(--cat-color), 0 15px 40px rgba(var(--cat-color-rgb), 0.22) !important;
        background: rgba(var(--cat-color-rgb), 0.02) !important;
    }
    .economic-category-card.active-category .economic-category-header {
        background: rgba(var(--cat-color-rgb), 0.05) !important;
        border-bottom: 1px solid rgba(var(--cat-color-rgb), 0.15) !important;
    }
    .economic-category-header {
        padding: 18px 24px;
        background: rgba(255, 255, 255, 0.02);
        border-bottom: 1px solid var(--glass-border);
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        user-select: none;
    }
    .economic-category-title {
        font-family: var(--font-heading);
        font-size: 1.25rem;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .economic-category-title i {
        color: var(--accent-tech);
        font-size: 1.2rem;
        width: 24px;
        text-align: center;
    }
    .economic-category-desc {
        padding: 12px 24px;
        font-size: 0.85rem;
        color: var(--text-secondary);
        background: rgba(255, 255, 255, 0.01);
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        font-style: italic;
    }
    
    /* Premium Bloomberg-style Economic Tables */
    .economic-indicator-table-wrapper {
        padding: 0px;
        background: rgba(5, 5, 5, 0.15);
        overflow-x: auto;
    }
    .economic-table {
        width: 100%;
        border-collapse: collapse;
        text-align: left;
        font-family: var(--font-body);
        font-size: 0.9rem;
    }
    .economic-table th {
        padding: 14px 20px;
        font-family: var(--font-heading);
        font-weight: 600;
        text-transform: uppercase;
        font-size: 0.75rem;
        letter-spacing: 1.5px;
        color: #fff;
        border-bottom: 2px solid var(--cat-color, #00DC82);
        background: rgba(var(--cat-color-rgb, 0, 220, 130), 0.03);
    }
    .economic-table tbody tr {
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        border-left: 4px solid transparent;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
    }
    .economic-table tbody tr:nth-child(even) {
        background: rgba(var(--cat-color-rgb, 0, 220, 130), 0.012);
    }
    .economic-table tbody tr:hover {
        background: rgba(var(--cat-color-rgb, 0, 220, 130), 0.04) !important;
        border-left-color: var(--cat-color, #00DC82);
        box-shadow: inset 4px 0 0 var(--cat-color, #00DC82);
    }
    .economic-table td {
        padding: 16px 20px;
        vertical-align: middle;
        line-height: 1.45;
    }
    .economic-table td.indicator-name-cell {
        font-family: var(--font-heading);
        font-weight: 600;
        color: #fff;
        font-size: 0.95rem;
    }
    .economic-table .indicator-symbol-badge {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        background: rgba(var(--cat-color-rgb, 0, 220, 130), 0.06);
        color: var(--cat-color, #00DC82);
        border: 1px solid rgba(var(--cat-color-rgb, 0, 220, 130), 0.15);
        padding: 2px 8px;
        border-radius: 4px;
        font-size: 0.7rem;
        font-weight: 600;
        margin-top: 5px;
    }
    .economic-table td.indicator-desc-cell {
        color: var(--text-secondary);
        font-size: 0.85rem;
    }
    .economic-table td.indicator-value-cell {
        font-family: var(--font-heading);
        font-weight: 700;
        color: #fff;
        font-size: 0.95rem;
        text-align: right;
    }
    .economic-table td.indicator-prev-cell {
        font-family: var(--font-body);
        color: var(--text-secondary);
        font-size: 0.85rem;
        text-align: right;
    }
    .economic-table td.indicator-change-cell {
        text-align: center;
    }
    .economic-table td.indicator-action-cell {
        text-align: center;
    }
    .economic-table .table-chart-btn {
        background: rgba(var(--cat-color-rgb, 0, 220, 130), 0.06);
        border: 1px solid rgba(var(--cat-color-rgb, 0, 220, 130), 0.2);
        color: var(--cat-color, #00DC82);
        padding: 6px 10px;
        border-radius: 6px;
        font-size: 0.75rem;
        font-weight: 600;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
    }
    .economic-table tbody tr:hover .table-chart-btn {
        background: var(--cat-color, #00DC82);
        color: #050505;
        border-color: transparent;
        box-shadow: 0 0 15px rgba(var(--cat-color-rgb, 0, 220, 130), 0.3);
    }
    .change-badge {
        display: inline-block;
        padding: 4px 10px;
        border-radius: 6px;
        font-family: var(--font-heading);
        font-size: 0.78rem;
        font-weight: 700;
        text-align: center;
        letter-spacing: 0.5px;
        min-width: 65px;
        transition: all 0.3s ease;
    }
    .change-badge.positive {
        background: rgba(0, 220, 130, 0.08);
        color: #00DC82;
        border: 1px solid rgba(0, 220, 130, 0.2);
        box-shadow: 0 0 10px rgba(0, 220, 130, 0.1);
    }
    .change-badge.negative {
        background: rgba(255, 59, 48, 0.08);
        color: #FF3B30;
        border: 1px solid rgba(255, 59, 48, 0.2);
        box-shadow: 0 0 10px rgba(255, 59, 48, 0.1);
    }
    .change-badge.neutral {
        background: rgba(255, 255, 255, 0.05);
        color: var(--text-secondary);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    /* Glowing indicator dots */
    .glowing-dot {
        width: 6px;
        height: 6px;
        background-color: var(--cat-color, #00DC82);
        border-radius: 50%;
        display: inline-block;
        animation: pulse-dot 1.5s infinite alternate;
    }
    @keyframes pulse-dot {
        0% { opacity: 0.3; transform: scale(0.8); }
        100% { opacity: 1; transform: scale(1.2); }
    }
    
    /* Premium Floating Tooltip Styles */
    .macro-tooltip {
        position: fixed;
        z-index: 10000;
        max-width: 340px;
        background: rgba(10, 10, 10, 0.85);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 14px;
        padding: 16px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 220, 130, 0.03);
        color: #ffffff;
        font-family: var(--font-body);
        font-size: 0.82rem;
        pointer-events: none;
        opacity: 0;
        transform: translateY(12px) scale(0.96);
        transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
        box-sizing: border-box;
    }
    .macro-tooltip.active {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    .macro-tooltip-title {
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 1rem;
        margin-bottom: 6px;
        display: flex;
        align-items: center;
        gap: 8px;
        letter-spacing: 0.3px;
    }
    .macro-tooltip-desc {
        color: var(--text-secondary);
        margin-bottom: 12px;
        line-height: 1.45;
    }
    .macro-tooltip-section {
        margin-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 10px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .macro-tooltip-trend {
        display: flex;
        gap: 10px;
        align-items: flex-start;
    }
    .macro-tooltip-trend-icon {
        font-size: 0.95rem;
        line-height: 1;
        margin-top: 1px;
    }
    .macro-tooltip-trend-text {
        line-height: 1.4;
    }
    .macro-tooltip-trend-label {
        font-weight: 600;
    }
    .clock-item {
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 8px;
        padding: 4px 8px;
        user-select: none;
    }
    .clock-item[onclick]:hover {
        background: rgba(255, 255, 255, 0.04);
        transform: translateY(-1px);
    }
    .clock-item[onclick]:active {
        transform: translateY(0);
        background: rgba(255, 255, 255, 0.02);
    }
    .status-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        display: inline-block;
        transition: all 0.3s ease;
    }
    .status-dot.open {
        background-color: #FF3B30 !important;
        box-shadow: 0 0 8px #FF3B30 !important;
        animation: status-blink-red 1s infinite !important;
    }
    .status-dot.closed {
        background-color: rgba(255, 255, 255, 0.35) !important;
    }
    .status-text {
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
    }
    .status-text.open {
        color: #FF3B30 !important;
        animation: status-blink-red 1s infinite !important;
    }
    .status-text.closed {
        color: rgba(255, 255, 255, 0.4) !important;
    }
    @keyframes status-blink-red {
        0%, 49% { opacity: 1; }
        50%, 100% { opacity: 0; }
    }
    .status-perf {
        font-weight: 700;
        font-family: var(--font-heading);
    }
    .status-perf.positive {
        color: #00DC82;
    }
    .status-perf.negative {
        color: #FF3B30;
    }
    .status-perf.neutral {
        color: var(--text-secondary);
    }
    
    /* Table Header Period Dropdown styling */
    .header-period-dropdown {
        position: relative;
        display: inline-block;
        cursor: pointer;
    }
    .header-period-dropdown .dropdown-trigger {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        color: var(--text-secondary);
        transition: var(--transition);
    }
    .header-period-dropdown:hover .dropdown-trigger {
        color: var(--text-primary);
    }
    .header-period-dropdown .dropdown-menu {
        position: absolute;
        top: 100%;
        right: 0;
        background: rgba(10, 10, 10, 0.96);
        border: 1px solid var(--glass-border);
        border-radius: 8px;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        padding: 6px 0;
        min-width: 120px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        list-style: none;
        margin: 0;
        text-align: left;
    }
    .header-period-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(5px);
    }
    .header-period-dropdown .dropdown-menu li {
        padding: 8px 14px;
        font-size: 0.8rem;
        font-weight: 500;
        color: var(--text-secondary);
        cursor: pointer;
        transition: var(--transition);
    }
    .header-period-dropdown .dropdown-menu li:hover {
        background: var(--card-hover);
        color: var(--text-primary);
    }
