 .ncw-chart-wrap {
        width: 100%;
        max-width: 1000px;
        margin: auto;
    }

    .ncw-svg {
        width: 100%;
        height: auto;
        display: block;
    }

    /* LINE */
    .ncw-line {
        fill: none;
        stroke: #a3ff00;
        stroke-width: 8;
        stroke-linejoin: round;
        stroke-linecap: round;
        filter: drop-shadow(0 0 5px #a3ff00) 
                drop-shadow(0 0 15px rgba(57,255,20,0.6));
        opacity: 0.9;
    }

    /* ARROW */
    .ncw-arrow {
        fill: #a3ff00;
        filter: drop-shadow(0 0 8px #a3ff00);
    }

    /* CANDLES */
    .ncw-candle {
        opacity: 0;
        animation: ncwFloatIn .6s ease-out forwards;
    }

    @keyframes ncwFloatIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 0.9;
            transform: translateY(0);
        }
    }