/* RSU: Map Top 5 Explorer - Layout Completo com Estatísticas */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #ffffff;
    margin: 0;
    padding: 15px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.rsu-top5 {
    max-width: 800px;
    width: 100%;
    background: rgba(45, 45, 45, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-name {
    text-align: center;
    color: #4CAF50;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.map-image {
    display: block;
    margin: 0 auto 20px auto;
    max-width: 200px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border: 3px solid #4CAF50;
    transition: transform 0.3s ease;
}

.map-image:hover {
    transform: scale(1.05);
}

.rankings {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.2);
}

.rankings thead {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rankings th {
    padding: 12px 8px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.rankings th:last-child {
    border-right: none;
}

.player-row {
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.player-row:hover {
    background: rgba(76, 175, 80, 0.1);
    transform: translateX(3px);
}

.player-row:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.player-row td {
    padding: 12px 8px;
    text-align: center;
    font-size: 13px;
    position: relative;
}

.pos {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    font-weight: bold;
    color: white;
    font-size: 14px;
    width: 50px;
    border-radius: 5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.player-row:nth-child(1) .pos {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.player-row:nth-child(2) .pos {
    background: linear-gradient(135deg, #C0C0C0, #808080);
    box-shadow: 0 0 10px rgba(192, 192, 192, 0.3);
}

.player-row:nth-child(3) .pos {
    background: linear-gradient(135deg, #CD7F32, #8B4513);
    box-shadow: 0 0 8px rgba(205, 127, 50, 0.3);
}

.nome {
    text-align: left;
    color: #ffffff;
    font-weight: 500;
    padding-left: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

.xp {
    background: linear-gradient(135deg, #333333, #444444);
    color: #4CAF50;
    font-weight: bold;
    font-size: 14px;
    border-radius: 5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.kills {
    color: #ffffff;
    font-weight: bold;
    background: rgba(76, 175, 80, 0.2);
    border-radius: 5px;
}

.deaths {
    color: #ff6b6b;
    font-weight: bold;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 5px;
}

.kd {
    color: #ffd93d;
    font-weight: bold;
    background: rgba(255, 217, 61, 0.1);
    border-radius: 5px;
    font-size: 12px;
}

.mvp {
    color: #e74c3c;
    font-weight: bold;
    background: rgba(231, 76, 60, 0.2);
    border-radius: 5px;
    font-size: 12px;
}

.rank {
    color: #9b59b6;
    font-weight: bold;
    background: rgba(155, 89, 182, 0.2);
    border-radius: 5px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.no-data {
    text-align: center;
    padding: 30px;
    color: #888888;
    font-size: 16px;
    font-style: italic;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .rsu-top5 {
        padding: 15px;
        margin: 10px;
    }
    
    .map-name {
        font-size: 20px;
    }
    
    .map-image {
        max-width: 150px;
    }
    
    .rankings {
        font-size: 11px;
    }
    
    .player-row td {
        padding: 8px 4px;
        font-size: 11px;
    }
    
    .nome {
        max-width: 120px;
    }
}

@media (max-width: 600px) {
    .rankings th {
        padding: 8px 4px;
        font-size: 11px;
    }
    
    .player-row td {
        padding: 6px 3px;
        font-size: 10px;
    }
    
    .nome {
        max-width: 80px;
    }
    
    .map-image {
        max-width: 120px;
    }
}
