/* ===== ADVANCED CHART STYLES ===== */
.chart-container {
    width: 100%;
    height: 500px;
    background: #000;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.chart-overlay-info {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.chart-symbol-name {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
}

.chart-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chart-current-price {
    font-size: 18px;
    font-weight: 700;
}

.chart-change {
    font-size: 14px;
}

.chart-indicator-status {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--border-gold);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    color: var(--gold);
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}
