.pvp-container {
    background: #ffffff !important;
    padding: 25px;
    border-radius: 10px;
    color: #333;
    border: 1px solid #ddd;
}

h3 {
    text-align: center;
    color: #2c3e50;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 25px;
}

.arena-selector {
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.arena-btn {
    background: #455a64;
    color: #fff !important;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}

.arena-btn.active { background: #3498db; }

/* ==================================== */
/* 2. TOP 3 - DESTAQUE E HOVER          */
/* ==================================== */

.pvp-top-rankings {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.pvp-card {
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    width: 30%; 
    min-width: 280px;
    position: relative;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pvp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: #3498db;
}

.pvp-medal-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #3498db;
    color: #fff;
    padding: 3px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    z-index: 10;
}

/* Fundo Dinâmico do Personagem */
.pvp-icon-container {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.12) 0%, rgba(255,255,255,0) 75%);
}

.pvp-icon-container img {
    height: 200px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.15));
    transition: transform 0.3s ease;
}

.pvp-card:hover .pvp-icon-container img {
    transform: scale(1.15);
}

.pvp-char-name { font-size: 20px; color: #2c3e50; font-weight: bold; }
.pvp-char-class { font-size: 11px; color: #3498db; font-weight: bold; text-transform: uppercase; margin-bottom: 10px; }

/* Estatísticas nos Cards */
.pvp-stats-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 10px 0;
}

.pvp-stat-box {
    font-size: 10px;
    color: #888;
    background: #f8f9fa;
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid #eee;
}

.pvp-stat-box strong { color: #333; font-size: 13px; display: block; }

.pvp-ratio-score {
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 10px;
}

.pvp-ratio-score span {
    color: #f39c12;
    font-size: 24px;
    font-weight: bold;
    display: block;
}

/* ==================================== */
/* 3. TABELA - ESTILO AUCTION           */
/* ==================================== */

.section-title {
    margin: 30px 0 15px;
    border-left: 5px solid #34495e;
    padding-left: 12px;
    color: #2c3e50;
    font-size: 16px;
    font-weight: bold;
}

.table-wrapper { border: 1px solid #eee; border-radius: 6px; overflow: hidden; background: #fff; }
.auction-table { width: 100%; border-collapse: collapse; }
.auction-table th { background: #34495e; color: #fff; padding: 12px; font-size: 11px; }
.auction-table tr { transition: background 0.2s ease; }
.auction-table tr:hover td { background-color: #f0f7ff; }
.auction-table td { padding: 12px; border-bottom: 1px solid #eee; font-size: 12px; }

.no-active-auction {
    padding: 20px;
    text-align: center;
    background: #f8f9fa;
    border: 1px dashed #ddd;
    border-radius: 6px;
    color: #666;
    margin-top: 20px;
}