/* Hero Performance Component Styles */
.performance-showcase-hero {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #00FF88;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #00FF88;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.timeframe-badge {
    background: rgba(108, 99, 255, 0.2);
    color: #6C63FF;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.hero-chart-container {
    height: 300px;
    margin: 20px 0;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
}

.performance-comparison-hero {
    display: flex;
    align-items: stretch;
    gap: 16px;
    margin: 20px 0;
}

.comparison-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-height: 120px;
    position: relative;
}

.comparison-item.winner {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(108, 99, 255, 0.1) 100%);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.comparison-item.loser {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-icon {
    font-size: 24px;
}

.comparison-data {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    width: 100%;
}

.comparison-label {
    font-size: 12px;
    color: #B0B7C3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 4px;
}

.comparison-value {
    font-size: 32px;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1;
    margin: 8px 0;
}

.comparison-change {
    font-size: 13px;
    color: #B0B7C3;
    font-weight: 500;
    margin-top: 4px;
}

.vs-divider {
    font-size: 16px;
    font-weight: 800;
    color: #6C63FF;
    background: rgba(108, 99, 255, 0.2);
    padding: 12px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 50px;
    align-self: center;
    border: 1px solid rgba(108, 99, 255, 0.3);
}

.performance-footer {
    text-align: center;
    margin-top: 20px;
}

.outperformance-badge {
    display: inline-block;
    background: linear-gradient(135deg, #6C63FF 0%, #00D4FF 100%);
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.4);
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

/* Mobile Responsiveness */
@media (max-width: 968px) {
    .performance-comparison-hero {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .comparison-item {
        min-height: 100px;
        max-width: 400px;
        width: 100%;
    }
    
    .vs-divider {
        transform: rotate(90deg);
        margin: 8px 0;
    }
    
    .hero-chart-container {
        height: 250px;
    }
}

@media (max-width: 640px) {
    .hero-chart-container {
        height: 200px;
    }
    
    .performance-showcase-hero {
        padding: 16px;
    }
    
    .showcase-header {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-chart-container {
        height: 180px;
    }
    
    .performance-comparison-hero {
        gap: 12px;
    }
    
    .comparison-item {
        padding: 20px 12px;
        min-height: 90px;
    }
    
    .comparison-value {
        font-size: 28px;
    }
    
    .comparison-label {
        font-size: 11px;
    }
    
    .comparison-change {
        font-size: 12px;
    }
    
    .vs-divider {
        min-width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .outperformance-badge {
        padding: 8px 16px;
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .hero-chart-container {
        height: 160px;
    }
    
    .comparison-item {
        padding: 16px 8px;
        min-height: 80px;
    }
    
    .comparison-value {
        font-size: 24px;
    }
    
    .comparison-label {
        font-size: 10px;
    }
    
    .comparison-change {
        font-size: 11px;
    }
    
    .vs-divider {
        min-width: 35px;
        height: 35px;
        font-size: 12px;
    }
}
