* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: #f5f5f5; padding: 15px; }
.container { max-width: 1200px; margin: 0 auto; }
h1 { color: #1a1a1a; margin-bottom: 10px; font-size: 24px; display: flex; align-items: center; gap: 10px; }
h1 i { color: #2563eb; }
.subtitle { color: #666; margin-bottom: 20px; }

.section { background: white; border-radius: 12px; padding: 20px; margin-bottom: 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.section h2 { font-size: 16px; margin-bottom: 15px; padding-bottom: 10px; border-bottom: 2px solid #eee; display: flex; align-items: center; gap: 8px; }
.section h2 i { font-size: 18px; }

.player-list { display: flex; flex-direction: column; gap: 10px; }
.player-row { display: flex; align-items: center; gap: 10px; padding: 10px; background: #f8f9fa; border-radius: 8px; }
.player-row .rank { font-size: 18px; font-weight: bold; color: #666; width: 35px; }
.player-row .name { flex: 1; font-weight: 600; font-size: 14px; }
.player-row .value { font-size: 16px; font-weight: bold; width: 65px; text-align: right; }
.player-row .detail { color: #666; font-size: 11px; }

.win { color: #16a34a; }
.draw { color: #ca8a04; }
.loss { color: #dc2626; }
.goals { color: #2563eb; }
.annoying { color: #dc2626; }
.cards { color: #7c3aed; }

.back-link { display: inline-flex; align-items: center; gap: 6px; margin-bottom: 15px; color: #2563eb; text-decoration: none; font-size: 14px; }
.nav { display: flex; gap: 10px; margin-bottom: 15px; }
.nav a { color: #2563eb; text-decoration: none; padding: 8px 14px; background: white; border-radius: 8px; font-size: 14px; display: flex; align-items: center; gap: 6px; }

@media (max-width: 600px) {
    .section { padding: 15px; }
    .player-row .detail { display: none; }
    .player-row .name { font-size: 13px; }
}
