* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    background: #0F1912;
    color: #EDEFEC;
    min-height: 100vh;
}

.header-pagina {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    background: #1A2B20;
    border-bottom: 1px solid #2A3D30;
}

.marca {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
}

.contenedor-rankings {
    max-width: 600px;
    margin: 24px auto;
    padding: 0 16px;
}

.tabs-rankings {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
    background: #1A2B20;
    border-radius: 12px;
    padding: 4px;
}

.tab-ranking {
    flex: 1;
    padding: 10px 8px;
    background: transparent;
    border: none;
    border-radius: 8px;

    font-family: 'Oswald', Arial, sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: #8A9690;

    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.tab-ranking.activo {
    background: #3FA873;
    color: #0F1912;
}

.lista-ranking {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fila-ranking {
    display: flex;
    align-items: center;
    gap: 12px;

    background: #1A2B20;
    border: 1px solid #2A3D30;
    border-radius: 10px;
    padding: 10px 14px;
}

.fila-ranking.tu-fila {
    border-color: #3FA873;
    background: rgba(63, 168, 115, 0.1);
}

.fila-ranking .posicion-ranking {
    font-family: 'Oswald', Arial, sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #8A9690;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.fila-ranking.posicion-1 .posicion-ranking { color: #FFD700; }
.fila-ranking.posicion-2 .posicion-ranking { color: #C0C0C0; }
.fila-ranking.posicion-3 .posicion-ranking { color: #CD7F32; }

.fila-ranking img.foto-ranking {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.fila-ranking .nombre-ranking {
    flex: 1;
    min-width: 0;
    font-size: 14px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fila-ranking .puntos-ranking {
    font-family: 'Oswald', Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #3FA873;
    flex-shrink: 0;
}

.separador-tuya {
    text-align: center;
    color: #8A9690;
    font-size: 12px;
    margin: 4px 0;
}

.mensaje-vacio {
    text-align: center;
    color: #8A9690;
    font-size: 13px;
    padding: 20px;
}

.selector-equipo-ranking {
    width: 100%;
    padding: 10px 14px;
    margin-bottom: 14px;

    background: #1A2B20;
    border: 1px solid #2A3D30;
    border-radius: 10px;
    color: #EDEFEC;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 14px;
}

.logo-equipo-mini-ranking {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}

.avatar-con-equipo {
    position: relative;
    display: inline-flex;
    flex-shrink: 0;
}

.badge-equipo-avatar {
    position: absolute;
    bottom: -2px;
    right: -2px;

    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: contain;
    background: #0F1912;

    border: 2px solid #1A2B20;
}

.nombre-y-equipo {
    flex: 1;
    min-width: 0;

    display: flex;
    flex-direction: column;
    gap: 1px;
}

.nombre-ranking {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nombre-equipo-ranking {
    font-size: 8px;
    color: #8A9690;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.avatar-con-equipo {
    position: relative;
    display: inline-flex;
    flex-shrink: 0;
}

.foto-ranking {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}