.prediction-hero { text-align: center; padding: 60px 20px; background: var(--container-bg); border-radius: 32px; margin-bottom: 40px; box-shadow: var(--card-shadow); }
        .current-week { font-size: 1.2rem; color: var(--primary-color); font-weight: 700; margin-bottom: 10px; }
        .prediction-numbers-display { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin: 30px 0; }
        .prediction-ball { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.5rem; color: white; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
        .ball-gold { background: linear-gradient(135deg, #fbc02d, #f9a825); }
        .ball-blue { background: linear-gradient(135deg, #1e88e5, #1565c0); }
        .ball-red { background: linear-gradient(135deg, #e53935, #c62828); }
        .ball-gray { background: linear-gradient(135deg, #757575, #616161); }
        .ball-green { background: linear-gradient(135deg, #43a047, #2e7d32); }
        
        .analysis-metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 30px; }
        .metric-card { padding: 20px; background: rgba(0,0,0,0.02); border-radius: 20px; text-align: center; }
        .metric-value { display: block; font-size: 1.8rem; font-weight: 800; color: var(--primary-color); margin-top: 5px; }
        .metric-label { font-size: 0.9rem; opacity: 0.7; }