/* apps/forexperiences/css/trading.css */

.trading-hero {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

/* Gráfica de fondo al 10% de opacidad  */
.trading-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../assets/img/candlestick-pattern.svg');
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

/* Ticker de Precios [cite: 14, 19] */
.price-ticker {
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border);
    padding: 10px 20px;
    display: flex;
    gap: 30px;
    overflow-x: auto;
    /* [cite: 46] */
}

.ticker-item {
    font-family: var(--font-data);
    /* JetBrains Mono  */
    font-size: 14px;
    white-space: nowrap;
}

.price-up {
    color: var(--accent);
}

/* Verde Bullish  */
.price-down {
    color: #EF4444;
}