/* ============================================
   RAPPORT PREMIUM NBA - STYLES ADDITIONNELS
   ============================================ */

/* Pronostic Section */
.pronostic-section {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(0,0,0,0.3) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
}

.pronostic-box {
    display: flex;
    justify-content: center;
}

.pronostic-winner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(0,0,0,0.4);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: 2px solid #3b82f6;
}

.pronostic-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.pronostic-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.pronostic-label {
    font-size: 0.75rem;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pronostic-team {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.pronostic-code {
    font-size: 2rem;
    font-weight: 800;
    color: #3b82f6;
}

.pronostic-stats {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.pronostic-prob {
    font-size: 2rem;
    font-weight: 800;
    color: #4ade80;
}

.pronostic-conf {
    font-size: 0.85rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    background: rgba(255,255,255,0.1);
}

.pronostic-conf.excellent { background: rgba(74, 222, 128, 0.2); color: #4ade80; }
.pronostic-conf.very-good { background: rgba(96, 165, 250, 0.2); color: #60a5fa; }
.pronostic-conf.good { background: rgba(251, 191, 36, 0.2); color: #fbbf24; }

/* Stats Détaillées */
.stats-detailed-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-detail-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-detail-box.total {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(0,0,0,0.2) 100%);
    border-color: rgba(59, 130, 246, 0.3);
}

.stat-detail-label {
    font-size: 0.75rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-detail-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.stat-detail-value.positive { color: #4ade80; }
.stat-detail-value.negative { color: #f87171; }

/* Models Breakdown */
.models-breakdown {
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    padding: 1rem;
}

.models-breakdown h4 {
    font-size: 0.85rem;
    color: #3b82f6;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.models-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.model-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: rgba(255,255,255,0.03);
    border-radius: 4px;
}

.model-name {
    font-size: 0.8rem;
    color: #9ca3af;
    font-weight: 600;
}

.model-value {
    font-size: 0.8rem;
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
}

/* Analyse Text */
.analysis-text {
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    padding: 1.5rem;
    line-height: 1.8;
}

.analysis-text p {
    margin-bottom: 1rem;
    color: #e5e7eb;
    font-size: 0.95rem;
}

.analysis-text p:last-child {
    margin-bottom: 0;
}

.analysis-text strong {
    color: #3b82f6;
}

/* Responsive */
@media (max-width: 600px) {
    .pronostic-winner {
        flex-direction: column;
        text-align: center;
    }
    
    .pronostic-stats {
        align-items: center;
    }
    
    .stats-detailed-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-detail-box.total {
        grid-column: span 1;
    }
}
