/* Icon Styles */
.insight-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00F5A0 0%, #00D9F5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: transform 0.3s ease;
}

.insight-icon i {
    font-size: 2rem;
    color: #121225;
}

.price__item:hover .insight-icon {
    transform: scale(1.1);
}

/* Text Styles */
.features__content h3 {
    font-size: 2.5rem !important;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.features__content p {
    font-size: 1.1rem !important;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Comparison Box Styles */
.info__list {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 0 auto;
    max-width: 400px;
}

.info__list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info__list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    transition: transform 0.2s ease;
}

.info__list li:last-child {
    margin-bottom: 0;
    background: linear-gradient(135deg, rgba(0, 245, 160, 0.15) 0%, rgba(0, 217, 245, 0.15) 100%);
    border: 1px solid rgba(0, 245, 160, 0.3);
}

.info__list li:hover {
    transform: translateX(5px);
}

/* Stats Comparison */
.stat-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    width: 100%;
    margin-top: 1rem;
    padding: 0 1rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.2s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item.highlight {
    background: linear-gradient(135deg, rgba(0, 245, 160, 0.15) 0%, rgba(0, 217, 245, 0.15) 100%);
    border: 1px solid rgba(0, 245, 160, 0.3);
}

.stat-item h4 {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.stat-item span {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
}

.stat-item.highlight span {
    color: #00F5A0;
}

/* Progress Bar */
.filter-visualization {
    width: 100%;
    margin-top: 2rem;
    padding: 0 1rem;
}

.progress-stack {
    margin: 2rem 0;
}

.progress {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(90deg, #00F5A0 0%, #00D9F5 100%);
    border-radius: 4px;
    transition: width 1s ease;
}

/* Trade Replay Button */
.trade-controls {
    margin-top: 2rem;
}

.btn-primary {
    background: linear-gradient(135deg, #00F5A0 0%, #00D9F5 100%) !important;
    border: none !important;
    border-radius: 30px !important;
    padding: 1rem 2.5rem !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #121225 !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
}

.btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 20px rgba(0, 245, 160, 0.3) !important;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.features__content {
    animation: fadeIn 0.5s ease-out forwards;
}
