.game-header { background-color: #2c3e50; color: white; padding: 15px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); } .game-header h1 { font-size: 28px; text-align: center; margin-bottom: 15px; } .stats-container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; } .stat-item { padding: 10px; background-color: rgba(255, 255, 255, 0.1); border-radius: 6px; text-align: center; flex-grow: 1; } .stat-item h2 { font-size: 24px; margin-bottom: 5px; } .stat-item h3 { font-size: 16px; margin-bottom: 3px; font-weight: 500; } .prestige-stats { background-color: rgba(218, 165, 32, 0.2); } /* Responsive adjustments */ @media (max-width: 768px) { .stats-container { flex-direction: column; } .stat-item { width: 100%; } .game-header h1 { font-size: 24px; } }