/* Start custom CSS for html, class: .elementor-element-de83aa6 *//* Main Container */
.comparison-chart-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

/* Chart Wrapper */
.chart-wrapper {
    position: relative;
    height: 450px;
    background: radial-gradient(circle at center, rgba(79, 70, 229, 0.02) 0%, transparent 70%);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Canvas Styling */
canvas {
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}



/* Insights Section */
.insights-section {
    text-align: center;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
    border: 2px solid rgba(79, 70, 229, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.insights-section h3 {
    color: #1F2937;
    margin-bottom: 20px;
    font-size: 1.5em;
    font-weight: 600;
}

.insights-section p {
    color: #4B5563;
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Text Highlights */
.jungle-highlight {
    color: #10B981;
    font-weight: 700;
}

.helium-highlight {
    color: #F59E0B;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .comparison-chart-container {
        padding: 20px 10px;
    }
    
    .chart-wrapper {
        height: 350px;
        padding: 20px;
    }
    
    .insights-section {
        padding: 20px;
    }
    
    .insights-section h3 {
        font-size: 1.3em;
    }
    
    .insights-section p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .chart-wrapper {
        height: 300px;
        padding: 15px;
    }
}/* End custom CSS */