/* =============================================================
   WoW Bolivia — PVP Statistics
   ============================================================= */

/* Header con tabs y selector de realm */
.wb-pvp-header {
    margin-bottom: 0;
}

.wb-pvp-tabs {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: rgba(5, 12, 22, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    padding: 10px 14px;
    flex-wrap: wrap;
}

.wb-pvp-tab {
    background-color: transparent;
    border: 1px solid transparent;
    color: #7a90a0;
    font-family: "Raleway", serif;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wb-pvp-tab:hover {
    background-color: rgba(2, 179, 234, 0.08);
    color: #a0c8e0;
    border-color: #1a4a6a;
}

.wb-pvp-tab.active {
    background-color: #0e2134;
    color: #f4bf2a;
    border-color: #f4bf2a;
}

.wb-pvp-realm-wrap {
    margin-left: auto;
}

/* Panel de contenido */
.wb-pvp-content {
    border-radius: 0 0 8px 8px;
    border-top: 2px solid #1a4a6a;
}

/* Tabla PVP */
.wb-pvp-table {
    width: 100%;
    border-collapse: collapse;
    color: #d8e8f0;
    font-family: "Raleway", serif;
    font-size: 14px;
}

.wb-pvp-table thead tr {
    background-color: #071525;
    border-bottom: 2px solid #1a4a6a;
}

.wb-pvp-table thead th {
    color: #7ecfff;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 14px 16px;
    text-align: left;
}

.wb-pvp-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background-color 0.2s ease;
}

.wb-pvp-table tbody tr:hover {
    background-color: rgba(2, 179, 234, 0.05);
}

.wb-pvp-table tbody td {
    padding: 11px 16px;
    vertical-align: middle;
    color: #c0d4e0;
}

.wb-pvp-table a {
    color: #f4bf2a !important;
    text-decoration: none !important;
    font-weight: 600;
}
.wb-pvp-table a:hover { color: #ffd700 !important; }

/* Badges de ranking */
.wb-rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    background-color: rgba(255,255,255,0.07);
    color: #7a90a0;
    border: 1px solid rgba(255,255,255,0.1);
}

.wb-rank--1 { background-color: rgba(255, 215, 0, 0.15); color: #ffd700; border-color: #ffd700; }
.wb-rank--2 { background-color: rgba(192, 192, 192, 0.15); color: #c0c0c0; border-color: #c0c0c0; }
.wb-rank--3 { background-color: rgba(205, 127, 50, 0.15); color: #cd7f32; border-color: #cd7f32; }

/* Kills destacadas */
.wb-pvp-kills-count {
    color: #ff7070 !important;
    font-weight: 700;
    font-size: 15px;
}

/* Rating */
.wb-pvp-rating {
    color: #7ecfff !important;
    font-weight: 700;
}

/* Iconos de miembros en arena */
.wb-arena-members {
    display: flex;
    gap: 4px;
    align-items: center;
}
.wb-arena-members img {
    width: 22px;
    height: 22px;
    border-radius: 3px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: border-color 0.2s;
}
.wb-arena-members a:hover img { border-color: #f4bf2a; }
