.ranking-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 20px; max-width: 1800px; margin: 0 auto; }
.ranking-card { background: rgba(20, 20, 30, 0.8); border: 1px solid #444; padding: 15px; border-radius: 8px; width: 100%; box-sizing: border-box; display: flex; flex-direction: column; }
.ranking-header { text-align: center; font-family: 'Chapaza'; font-size: 24px; color: #daa10a; margin-bottom: 10px; text-transform: uppercase; text-shadow: 2px 2px 4px #000; border-bottom: 1px solid #444; padding-bottom: 10px; }
.player-row { display: flex; align-items: center; justify-content: space-between; margin: 6px 0; background: rgba(0,0,0,0.3); padding: 5px; border-radius: 4px; }
.player-left { display: flex; align-items: center; gap: 8px; flex: 1; min-width: 0; overflow: visible; }
.player-pic { width: 32px; height: 32px; border-radius: 50%; border: 1px solid #555; }
.hero-pic { width: 40px; border-radius: 4px; box-shadow: 1px 1px 3px #000; }
.player-name { font-family: 'Roboto', sans-serif; font-size: 13px; color: #eee; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; line-height: 1.2; }
.stat-val { font-family: 'Roboto', sans-serif; font-weight: bold; font-size: 14px; color: #daa10a; min-width: 40px; text-align: right; }
.navigation { text-align: center; margin: 20px; }
.btn { background: #daa10a; color: #000; padding: 10px 20px; text-decoration: none; font-weight: bold; font-family: 'Roboto'; border-radius: 4px; border: none; cursor: pointer; margin: 5px; }
.btn:hover { background: #fff; }
.btn.active { background: #fff; color: #000; }
.view-section { display: none; }
.view-section.active { display: block; }
.tabs { text-align: center; margin: 16px 20px 20px; }
.season-title { text-align: center; color: #daa10a; font-family: 'Chapaza'; font-size: 35px; margin: 8px 0 4px; text-transform: uppercase; }
