.as-fb9982a6-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.as-fb9982a6-card {
    background-color: #0b1120; /* Deep navy */
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 30px;
    padding: 40px;
    color: #ffffff;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: as-fb9982a6-breathe 6s infinite alternate;
}

@keyframes as-fb9982a6-breathe {
    0% { box-shadow: 0 0 20px rgba(0, 255, 255, 0.05); }
    100% { box-shadow: 0 0 40px rgba(0, 255, 255, 0.15); }
}

.as-fb9982a6-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.as-fb9982a6-label-left, .as-fb9982a6-label-right {
    display: flex;
    align-items: center;
    gap: 8px;
    /* Default fallbacks if typography not set */
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #8899aa;
}

.as-fb9982a6-pulse-small {
    width: 6px;
    height: 6px;
    background-color: #8899aa;
    border-radius: 50%;
}

.as-fb9982a6-status-dot {
    width: 8px;
    height: 8px;
    background-color: #00ffaa; /* Neon green */
    border-radius: 50%;
    box-shadow: 0 0 10px #00ffaa;
    animation: as-fb9982a6-pulse 2s infinite;
}

.as-fb9982a6-wrapper[data-simulation="true"] .as-fb9982a6-status-dot {
    animation: as-fb9982a6-pulse-fast 1s infinite;
}

@keyframes as-fb9982a6-pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes as-fb9982a6-pulse-fast {
    0% { transform: scale(1); opacity: 1; box-shadow: 0 0 10px #00ffaa; }
    50% { transform: scale(1.5); opacity: 0.8; box-shadow: 0 0 20px #00ffaa; }
    100% { transform: scale(1); opacity: 1; box-shadow: 0 0 10px #00ffaa; }
}

.as-fb9982a6-chart-container {
    height: 180px;
    width: 100%;
    margin-bottom: 40px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.as-fb9982a6-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    gap: 4px;
}

.as-fb9982a6-bar {
    flex: 1;
    background-color: #1e293b;
    border-radius: 4px 4px 0 0;
    transition: height 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), background-color 0.3s;
    height: 0%; /* Initial state for load animation */
    min-width: 4px;
    cursor: pointer;
}

.as-fb9982a6-bar:hover {
    background-color: rgba(0, 255, 255, 0.4);
}

.as-fb9982a6-bar.active {
    background-color: #00ffaa;
    box-shadow: 0 0 15px rgba(0, 255, 170, 0.6);
}

.as-fb9982a6-metrics {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    animation: as-fb9982a6-fade-up 1s ease forwards;
}

@keyframes as-fb9982a6-fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.as-fb9982a6-metric {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.as-fb9982a6-metric:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

.as-fb9982a6-metric-title {
    /* Default fallback */
    font-size: 13px;
    color: #8899aa;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.as-fb9982a6-metric-value {
    /* Default fallback */
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    font-variant-numeric: tabular-nums;
}

/* Responsive */
@media (max-width: 767px) {
    .as-fb9982a6-card {
        padding: 25px;
    }
    .as-fb9982a6-chart-container {
        height: 120px;
    }
    .as-fb9982a6-metrics {
        flex-direction: column;
        gap: 15px;
    }
}
