/* Statisztikák oldal stílusai */
.statistics-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 1rem;
}

.top-players-card {
    background: var(--secondary-dark);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.top-players-card:hover {
    transform: translateY(-5px);
}

.top-players-card h3 {
    margin-bottom: 2rem;
    color: var(--main-color);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-players-list table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 0.5rem;
}

.top-players-list th,
.top-players-list td {
    padding: 1.2rem;
    text-align: left;
    border: none;
    background: rgba(255, 255, 255, 0.05);
}

.top-players-list th {
    font-weight: 600;
    color: var(--main-color);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    background: transparent;
}

.top-players-list td:first-child,
.top-players-list th:first-child {
    border-radius: 8px 0 0 8px;
}

.top-players-list td:last-child,
.top-players-list th:last-child {
    border-radius: 0 8px 8px 0;
}

.player-mini-avatar {
    width: 35px;
    height: 35px;
    vertical-align: middle;
    margin-right: 1rem;
    border-radius: 8px;
    border: 2px solid var(--main-color);
}

.current-player {
    background: rgba(255, 140, 0, 0.15) !important;
    font-weight: 600;
}

.current-player td {
    color: var(--main-color);
}

.player-rank-card {
    background: var(--secondary-dark);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.player-rank-card:hover {
    transform: translateY(-5px);
}

.player-rank-card h3 {
    margin-bottom: 1.5rem;
    color: var(--main-color);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.player-rank-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
}

.rank-number,
.playtime-number {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--main-color);
}

@media (max-width: 768px) {
    .top-players-list {
        overflow-x: auto;
    }
    
    .top-players-list table {
        min-width: 500px;
    }
}